:root {
    --primary-color: #4a6fa5;
    --primary-light: #6b8cae;
    --accent-color: #ff7e5f;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #fff;
    --border-color: #e0e0e0;
    --holiday-color: #e74c3c;
    --weekend-color: #f39c12;
    --pasaran-color: #2ecc71;
    --today-color: #3498db;
    --longweekend-color: #9b59b6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

.dark-mode {
    --primary-color: #5d8acd;
    --primary-light: #7fa3d1;
    --accent-color: #ff9a7a;
    --text-color: #f0f0f0;
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --border-color: #444;
    --holiday-color: #ff6b6b;
    --weekend-color: #fdcb6e;
    --pasaran-color: #55efc4;
    --today-color: #74b9ff;
    --longweekend-color: #bb86fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
    transition: var(--transition);
}

.container {
    padding: 0 140px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 100px;
    }
    
    .ad-panel {
        width: 100px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .ad-panel {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-content {
    flex: 1;
    min-width: 300px;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.header-subtitle {
    color: var(--primary-light);
    font-size: 1rem;
}

/* Navigation Styles */
.nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Main Menu Styles */
.main-menu {
    position: relative;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.menu-toggle:hover {
    background: var(--primary-light);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    z-index: 100;
    display: none;
    padding: 8px 0;
    border: 1px solid var(--border-color);
    animation: fadeIn 0.2s ease-out;
}

.dropdown-menu.show {
    display: block;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(74, 111, 165, 0.1);
    color: var(--primary-color);
}

.menu-item.active {
    color: var(--primary-color);
    background: rgba(74, 111, 165, 0.1);
}

.menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Calendar Controls */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle button {
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.view-toggle button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.month-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    padding: 8px 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.today-button {
    padding: 8px 12px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.today-button:hover {
    background: #ff6b4a;
    transform: translateY(-2px);
}

/* Search Box */
.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.search-box input, 
.search-box select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
}

.search-box input:focus,
.search-box select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

.search-button {
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-button:hover {
    background: #ff6b4a;
    transform: translateY(-2px);
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.legend-color {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.legend-holiday {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid var(--holiday-color);
}

.legend-weekend {
    background-color: rgba(243, 156, 18, 0.2);
    border: 1px solid var(--weekend-color);
}

.legend-today {
    background-color: var(--today-color);
}

.legend-pasaran {
    color: var(--pasaran-color);
}

.legend-longweekend {
    position: relative;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

.legend-longweekend::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent var(--longweekend-color) transparent transparent;
}

/* Calendar Views */
.calendar-view {
    display: none;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.calendar-view.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Monthly Calendar */
.monthly-calendar .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
}

.monthly-calendar .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border-color);
}

.day-cell {
    min-height: 100px;
    background: var(--card-bg);
    padding: 8px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.day-cell:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.dark-mode .day-cell:hover {
    background: rgba(255, 255, 255, 0.05);
}

.day-cell.empty {
    background: transparent;
    cursor: default;
}

.day-cell.empty:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.day-number {
    font-weight: 600;
    margin-bottom: 5px;
}

.day-cell.today .day-number {
    background: var(--today-color);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.day-cell.weekend {
    color: var(--weekend-color);
}

.day-cell.holiday {
    color: var(--holiday-color);
    font-weight: bold;
}

.day-cell.long-weekend {
    position: relative;
    overflow: hidden;
}

.day-cell.long-weekend::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent var(--longweekend-color) transparent transparent;
}

.event-indicator {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.holiday-indicator {
    color: var(--holiday-color);
    font-weight: 600;
}

.pasaran-indicator {
    color: var(--pasaran-color);
    font-size: 0.8rem;
}

/* Yearly Calendar */
.yearly-calendar .months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.month-card {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.month-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.month-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 0.7rem;
    text-align: center;
    margin-bottom: 5px;
    color: var(--primary-light);
}

.month-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.month-day {
    font-size: 0.8rem;
    text-align: center;
    padding: 3px;
    border-radius: 3px;
    transition: var(--transition);
}

.month-day:hover {
    background: rgba(0, 0, 0, 0.05);
}

.month-day.weekend {
    color: var(--weekend-color);
}

.month-day.holiday {
    color: var(--holiday-color);
    font-weight: bold;
}

.month-day.today {
    background: var(--today-color);
    color: white;
    font-weight: bold;
}

/* Long Weekend Section */
.long-weekend-section {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.long-weekend-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.long-weekend-card {
    background: rgba(155, 89, 182, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
    border-left: 4px solid var(--longweekend-color);
    transition: var(--transition);
}

.long-weekend-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.dark-mode .long-weekend-card {
    background: rgba(155, 89, 182, 0.2);
}

.long-weekend-date {
    font-weight: 600;
    margin-bottom: 5px;
}

.long-weekend-days {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.long-weekend-suggestion {
    font-style: italic;
    color: var(--longweekend-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    animation: slideUp 0.3s ease-out forwards;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-button {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-button.primary {
    background: var(--primary-color);
    color: white;
}

.modal-button.primary:hover {
    background: var(--primary-light);
}

.modal-button.secondary {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.modal-button.secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Loading State */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 1.2rem;
    color: var(--primary-light);
    flex-direction: column;
    gap: 15px;
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    color: var(--holiday-color);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}
#notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Menu Content Styles */
.menu-content {
    display: none;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.menu-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-button {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.back-button:hover {
    background: var(--primary-light);
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-col {
    flex: 1;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-secondary {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background: #ff6b4a;
}

.result-container {
    margin-top: 20px;
    padding: 15px;
    background: rgba(74, 111, 165, 0.1);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}

.result-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.result-item {
    margin-bottom: 8px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.feature-card {
    background: rgba(74, 111, 165, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.feature-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-desc {
    color: var(--text-color);
    font-size: 0.9rem;
}

.donation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.donation-card {
    flex: 1;
    min-width: 250px;
    background: rgba(74, 111, 165, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.donation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.donation-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donation-button {
    display: inline-block;
    padding: 10px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.donation-button:hover {
    background: var(--primary-light);
}

.trakteer-button {
    background: #FF5A5F;
}

.trakteer-button:hover {
    background: #ff3b40;
}

.paypal-button {
    background: #0070BA;
}

.paypal-button:hover {
    background: #005ea6;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .yearly-calendar .months-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .monthly-calendar .days-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .day-cell {
        min-height: 80px;
        padding: 4px;
        font-size: 0.9rem;
    }

    .yearly-calendar .months-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .view-toggle {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nav-buttons {
        flex-wrap: wrap;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .yearly-calendar .months-grid {
        grid-template-columns: 1fr;
    }
    
    .monthly-calendar .weekdays {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .day-cell {
        min-height: 70px;
        font-size: 0.8rem;
    }
    
    .nav-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .month-year {
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .dropdown-menu {
        left: 0;
        right: auto;
        min-width: 100%;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .donation-card {
        min-width: 100%;
    }
}
.watermark-alamanda {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(122, 96, 67, 0.7) !important; /* Warna kayu elegan */
    z-index: 9999;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: multiply;
    background: rgba(255, 248, 240, 0.5);
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid rgba(122, 96, 67, 0.2);
    backdrop-filter: blur(1px);
    transform: rotate(0.5deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.watermark-alamanda:hover {
    color: rgba(122, 96, 67, 0.9) !important;
    background: rgba(255, 248, 240, 0.8);
}

.watermark-batik {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Ctext x='50%25' y='50%25' font-family='Poppins' font-size='20' fill='%237a6043' text-anchor='middle' dominant-baseline='middle' transform='rotate(-15 200 100)'%3E%C2%A9 Kalender Indonesia %E2%80%A2 Budaya Jawa%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* Style untuk section kontak */
.contact-section {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.section-subtitle {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Style untuk metode kontak */
.contact-methods {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.method-card {
    background: rgba(74, 111, 165, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: var(--transition);
    border-left: 3px solid var(--primary-color);
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.method-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 111, 165, 0.1);
    border-radius: 50%;
}

.method-details {
    flex: 1;
}

.method-details h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.method-value {
    margin: 5px 0;
    word-break: break-all;
    font-size: 0.9rem;
}

.method-action {
    display: inline-block;
    padding: 5px 10px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    margin-right: 8px;
    margin-top: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.method-action:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.whatsapp-card {
    border-left-color: #25D366;
}
.whatsapp-card .method-icon {
    color: #25D366;
}

.social-card {
    border-left-color: #9B59B6;
}
.social-card .method-icon {
    color: #9B59B6;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}
.linkedin-card {
    border-left-color: #0077B5;
}
.linkedin-card .method-icon {
    color: #0077B5;
}


/* Blog Specific Styles */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.blog-subtitle {
    color: var(--primary-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-search {
    display: flex;
    max-width: 600px;
    margin: 30px auto;
}

.blog-search input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
}

.blog-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

.blog-search button {
    padding: 0 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.blog-search button:hover {
    background: #ff6b4a;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-tag {
    padding: 6px 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-tag:hover, .category-tag.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.blog-category {
    background: rgba(74, 111, 165, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-title-card {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: #ff6b4a;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.page-link {
    padding: 8px 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.newsletter {
    background: rgba(74, 111, 165, 0.1);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.newsletter-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.newsletter-desc {
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--text-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: inherit;
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #ff6b4a;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    color: var(--primary-light);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Watermark (sama dengan index.html) */
.watermark-alamanda {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(122, 96, 67, 0.7) !important;
    z-index: 9999;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: multiply;
    background: rgba(255, 248, 240, 0.5);
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid rgba(122, 96, 67, 0.2);
    backdrop-filter: blur(1px);
    transform: rotate(0.5deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.watermark-alamanda:hover {
    color: rgba(122, 96, 67, 0.9) !important;
    background: rgba(255, 248, 240, 0.8);
}

.watermark-batik {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Ctext x='50%25' y='50%25' font-family='Poppins' font-size='20' fill='%237a6043' text-anchor='middle' dominant-baseline='middle' transform='rotate(-15 200 100)'%3E%C2%A9 Kalender Indonesia %E2%80%A2 Budaya Jawa%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dropdown-menu {
        left: 0;
        right: auto;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-search, .newsletter-form {
        flex-direction: column;
    }
    
    .blog-search input, 
    .blog-search button,
    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--radius-sm);
    }
    
    .blog-search button,
    .newsletter-form button {
        padding: 12px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Article Styles */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--primary-light);
    font-size: 0.9rem;
}

.article-category {
    background: rgba(74, 111, 165, 0.1);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.article-content {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.article-content h3 {
    color: var(--primary-light);
    margin: 25px 0 12px;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.pasaran-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--pasaran-color);
}

.pasaran-title {
    color: var(--pasaran-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote {
    font-style: italic;
    padding: 20px;
    background: rgba(74, 111, 165, 0.1);
    border-radius: var(--radius-sm);
    margin: 25px 0;
    position: relative;
}

.quote:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    left: 10px;
    top: -10px;
    opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .article-image {
        height: 300px;
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dropdown-menu {
        left: 0;
        right: auto;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .article-image {
        height: 200px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Breadcrumb Styles */
.breadcrumb {
    padding: 0.8rem 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 1rem;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb .active {
    color: #6c757d;
    display: flex;
    align-items: center;
}

.breadcrumb i {
    margin-right: 0.3rem;
    font-size: 0.8em;
}

.breadcrumb li:not(:last-child)::after {
    content: '\f054'; /* Font Awesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin: 0 0.5rem;
    color: #6c757d;
    font-size: 0.7em;
}

/* Step by step styles */
.step-by-step {
    margin: 2rem 0;
    counter-reset: step-counter;
}

.step {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    border-left: 4px solid #007bff;
}

.step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #007bff;
    color: white;
    text-align: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    line-height: 28px;
    font-size: 0.9em;
}

/* Neptu tables */
.neptu-tables {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.neptu-table {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.neptu-table h4 {
    margin-top: 0;
    color: #007bff;
    text-align: center;
}

.neptu-table table {
    width: 100%;
    border-collapse: collapse;
}

.neptu-table th, .neptu-table td {
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.neptu-table th {
    background-color: #f8f9fa;
}

/* Calculation example */
.calculation-example {
    background: #e9f5ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.calculation-example p {
    margin: 0.5rem 0;
}

.calculation-example .total {
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.1em;
    color: #007bff;
}

/* Methods */
.methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #007bff;
}

/* Gaya untuk iklan */
.ad-container {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.ad-banner h4, .ad-unit h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ad-content {
    margin: 0 auto;
    max-width: 100%;
}

.ad-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.ad-sidebar {
    float: right;
    width: 300px;
    margin-left: 30px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .ad-sidebar {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Styles for ad panels */
.ad-panel {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

.ad-panel.left {
    left: 10px;
}

.ad-panel.right {
    right: 10px;
}

.ad-panel h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 12px;
    color: #555;
    text-align: center;
}

.ad-panel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ad-panel img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.ad-label {
    font-size: 10px;
    color: #888;
    text-align: center;
    margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ad-panel {
        width: 120px;
    }
}

@media (max-width: 992px) {
    .ad-panel {
        display: none;
    }
}

.blog-header,
.blog-posts,
.blog-pagination,
.newsletter,
.footer {
    transition: opacity 0.3s ease, height 0.3s ease;
}

.menu-content {
    transition: opacity 0.3s ease;
}