/* ============================================
   ADMIN CABINET CSS - Bakery Inspired Theme
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Background Colors */
    --bg-cream: #FFF7ED;
    --bg-white: #FFFFFF;
    --bg-soft-pink: #FDF2F8;
    --bg-soft-mint: #F0FDFA;
    --bg-soft-yellow: #FEF3C7;

    /* Accent Colors */
    --primary-pink: #F472B6;
    --primary-pink-hover: #EC4899;
    --chocolate: #7C2D12;
    --chocolate-light: #92400E;
    --mint: #5EEAD4;
    --mint-hover: #2DD4BF;

    /* Text Colors */
    --text-heading: #7C2D12;
    --text-body: #5C4A3D;
    --text-muted: #9CA3AF;
    --text-light: #D1D5DB;

    /* Border Colors */
    --border-soft: #FED7AA;
    --border-medium: #FDBA74;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(124, 45, 18, 0.08);
    --shadow-medium: 0 8px 30px rgba(124, 45, 18, 0.12);
    --shadow-hover: 0 12px 40px rgba(244, 114, 182, 0.15);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-body);
    font-family: 'Inter', 'Nunito', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

body.menu-open {
    overflow: hidden;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    box-shadow: var(--shadow-soft);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ===== LOGO ===== */
.logo {
    flex-shrink: 0;
}

.logo a {
    font-family: 'Playfair Display', 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 101;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all var(--transition-normal);
}

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

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

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

/* ===== NAVIGATION ===== */
#nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

#nav-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

#nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

#nav-menu a.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-hover));
    color: white;
    padding: 10px 20px;
}

#nav-menu a.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-pink-hover), #DB2777);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4);
}

#nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

#nav-menu a:focus-visible {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* ===== MAIN CONTENT ===== */
main.article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 200px);
}

main.article a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: all var(--transition-fast);
}

main.article a:hover {
    color: var(--primary-pink-hover);
    text-decoration: underline;
}

main.article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

main.article ul,
main.article ol {
    padding-left: 25px;
    margin-bottom: 1.5rem;
}

main.article li {
    margin-bottom: 0.5rem;
    color: var(--text-body);
}

main.article ul li::marker {
    color: var(--primary-pink);
}

main.article ol li::marker {
    color: var(--chocolate);
    font-weight: 600;
}

main.article blockquote {
    border-left: 4px solid var(--primary-pink);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--bg-soft-pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--chocolate);
}

main.article code {
    background: var(--bg-soft-yellow);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--chocolate);
}

main.article pre {
    background: var(--chocolate);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 20px 0;
}

main.article pre code {
    background: transparent;
    padding: 0;
    color: white;
}

main.article table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    background: transparent;
    margin: 20px 0;
}

main.article table thead tr {
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    color: white;
}

main.article table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

main.article table td {
    background: var(--bg-white);
    padding: 14px 16px;
    border: none;
    color: var(--text-body);
}

main.article table tbody tr:hover {
    background: var(--bg-soft-pink);
}

main.article table tbody tr td:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

main.article table tbody tr td:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

main.article form {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
    margin: 20px 0;
}

main.article form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-heading);
}

main.article form input[type="text"],
main.article form input[type="number"],
main.article form input[type="email"],
main.article form input[type="password"],
main.article form input[type="date"],
main.article form select,
main.article form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--bg-cream);
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

main.article form input:focus,
main.article form select:focus,
main.article form textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
    background: var(--bg-white);
}

main.article hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
    margin: 30px 0;
}

main.article .card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
    margin: 20px 0;
    transition: all var(--transition-normal);
}

main.article .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

main.article .card h3 {
    margin-top: 0;
    color: var(--chocolate);
}

main.article .btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 0.95rem;
    text-align: center;
    vertical-align: middle;
    font-family: inherit;
}

main.article .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

main.article .btn:active {
    transform: translateY(0);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    color: white;
    padding: 25px 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 -4px 20px rgba(124, 45, 18, 0.1);
}

footer p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant', serif;
    color: var(--text-heading);
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    color: var(--text-body);
    margin-bottom: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-pink), #F9A8D4);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

/* ===== FILTER SECTION ===== */
.filter-section {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
}

.filter-section label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.filter-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.filter-section input[type="date"] {
    padding: 10px 14px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-family: inherit;
    color: var(--text-body);
    background: var(--bg-cream);
    transition: all var(--transition-fast);
}

.filter-section input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
}

/* ===== PERIOD SELECTOR ===== */
.period-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
    border-left: 5px solid var(--primary-pink);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card h4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--chocolate);
    font-family: 'Playfair Display', serif;
}

/* ===== CHART CONTAINERS ===== */
#regChartContainer,
#incomeChartContainer {
    height: 280px;
    position: relative;
    width: 100%;
}

#regChartContainer canvas,
#incomeChartContainer canvas {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
}

/* ===== BUTTONS ===== */
.admin-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    vertical-align: middle;
    font-family: inherit;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.admin-btn:active {
    transform: translateY(0);
}

/* Base Button Class */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    vertical-align: middle;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn:active {
    transform: translateY(0);
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Primary Button (Pink) */
.btn-active,
.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-hover));
    color: white;
}

.btn-active:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-pink-hover), #DB2777);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

/* Secondary Button (Light/Cream) */
.btn-light {
    background: var(--bg-cream);
    color: var(--chocolate);
    border: 2px solid var(--border-soft);
}

.btn-light:hover {
    background: var(--bg-soft-pink);
    border-color: var(--primary-pink);
    color: var(--chocolate);
}

/* Success Button (Mint) */
.btn-success {
    background: linear-gradient(135deg, var(--mint), var(--mint-hover));
    color: var(--chocolate);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--mint-hover), #14B8A6);
    box-shadow: 0 6px 20px rgba(94, 234, 212, 0.4);
}

/* Info Button */
.btn-info {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Warning Button */
.btn-warning {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    color: var(--chocolate);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Activate Button */
.btn-activate {
    background: linear-gradient(135deg, var(--mint), var(--mint-hover));
    color: var(--chocolate);
}

.btn-activate:hover {
    background: linear-gradient(135deg, var(--mint-hover), #14B8A6);
    box-shadow: 0 6px 20px rgba(94, 234, 212, 0.4);
}

/* Deactivate Button */
.btn-deactivate {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    color: var(--chocolate);
}

.btn-deactivate:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Info Button */
.btn-info {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Edit Button */
.btn-edit {
    background: linear-gradient(135deg, #A78BFA, #8B5CF6);
    color: white;
}

.btn-edit:hover {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Delete Button */
.btn-delete-full {
    background: linear-gradient(135deg, #F87171, #EF4444);
    color: white;
}

.btn-delete-full:hover {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Delete Button (Small) */
.btn-delete {
    background: linear-gradient(135deg, #F87171, #EF4444);
    color: white;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* ===== FORMS AND INPUTS ===== */
form {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-heading);
}

form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--bg-cream);
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
    background: var(--bg-white);
}

form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-pink);
}

form small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== TABLES ===== */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    background: transparent;
}

table thead tr {
    background: transparent;
}

table th {
    padding: 12px 16px;
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table td {
    background: var(--bg-white);
    padding: 16px;
    border: none;
    color: var(--text-body);
    vertical-align: middle;
}

table tbody tr {
    transition: all var(--transition-fast);
}

table tbody tr:hover {
    background: var(--bg-soft-pink);
}

table tbody tr td:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

table tbody tr td:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===== COLLAPSIBLE TABLES ===== */
.collapsible-table-header {
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.collapsible-table-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.collapsible-table-header::after {
    content: '▼';
    margin-left: auto;
    transition: transform var(--transition-normal);
}

.collapsible-table-header.collapsed::after {
    transform: rotate(-90deg);
}

.collapsible-table-content {
    background: var(--bg-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -5px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.collapsible-table-content.collapsed {
    display: none;
}

.collapsible-table-content table {
    margin: 0;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pagination .button,
.pagination a.button {
    display: inline-block;
    padding: 10px 16px;
    background: var(--bg-white);
    color: var(--chocolate);
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.pagination .button:hover,
.pagination a.button:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.pagination .button[style*="background-color: #8B72A4"] {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.pagination .ellipsis {
    padding: 10px 16px;
    color: var(--text-muted);
}

/* ===== EDITOR AND TOOLBAR ===== */
.editor {
    min-height: 140px;
    border: 2px solid var(--border-soft);
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    font-family: inherit;
    line-height: 1.6;
    transition: all var(--transition-fast);
}

.editor:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
}

.toolbar {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    padding: 12px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
    border: 2px solid var(--border-soft);
}

.toolbar .btn {
    padding: 8px 12px;
    background: var(--bg-white);
    border: 2px solid var(--border-soft);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    color: var(--text-body);
}

.toolbar .btn:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
    transform: translateY(-1px);
}

/* ===== ALERT BOXES ===== */
.alert-box {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-soft);
}

.alert-box.warning {
    background: var(--bg-soft-yellow);
    border-left: 4px solid #F59E0B;
    color: var(--chocolate);
}

.alert-box.success {
    background: var(--bg-soft-mint);
    border-left: 4px solid var(--mint);
    color: var(--chocolate);
}

.alert-box.info {
    background: var(--bg-soft-pink);
    border-left: 4px solid var(--primary-pink);
    color: var(--chocolate);
}

/* ===== HORIZONTAL RULE ===== */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
    margin: 40px 0;
}

/* ===== VIEW COMMENT BUTTON ===== */
.view-comment-btn {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--mint);
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.view-comment-btn:hover {
    background: var(--bg-soft-mint);
    transform: scale(1.1);
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== FLASH MESSAGES ===== */
.flash-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-message {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-medium);
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

.flash-message.success {
    background: var(--bg-soft-mint);
    color: var(--chocolate);
    border-left: 4px solid var(--mint);
}

.flash-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

.flash-message.warning {
    background: var(--bg-soft-yellow);
    color: var(--chocolate);
    border-left: 4px solid #F59E0B;
}

.flash-message.info {
    background: var(--bg-soft-pink);
    color: var(--chocolate);
    border-left: 4px solid var(--primary-pink);
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2em;
    padding: 0;
    margin-left: auto;
    transition: transform var(--transition-fast);
}

.flash-close:hover {
    transform: scale(1.2);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    /* Header */
    header {
        padding: 12px 25px;
    }

    .logo a {
        font-size: 1.3rem;
    }

    #nav-menu {
        gap: 6px;
    }

    #nav-menu a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    /* Main Content */
    main.article {
        padding: 25px 18px;
    }

    /* Main Article Cards */
    main.article .card {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    /* Header */
    header {
        padding: 12px 20px;
    }

    .logo a {
        font-size: 1.2rem;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: flex;
    }

    /* Navigation */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--chocolate), var(--chocolate-light));
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        gap: 5px;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    #nav-menu.active {
        right: 0;
    }

    #nav-menu a {
        width: 100%;
        padding: 14px 18px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    /* Main Content */
    main.article {
        padding: 20px 15px;
    }

    /* Hero Section */
    .hero {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Period Selector */
    .period-selector {
        flex-direction: column;
    }

    .period-selector .admin-btn {
        width: 100%;
    }

    /* Filter Section */
    .filter-section {
        padding: 15px;
    }

    .filter-section form {
        flex-direction: column;
    }

    .filter-section form > div {
        width: 100%;
    }

    /* Forms */
    form {
        padding: 20px;
    }

    form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Main Article Forms */
    main.article form {
        padding: 20px;
    }

    main.article form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Tables */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    table thead {
        display: none;
    }

    table tbody tr {
        display: block;
        margin-bottom: 15px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-soft);
    }

    table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-soft);
        white-space: normal;
    }

    table tbody td:last-child {
        border-bottom: none;
    }

    table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        margin-right: 15px;
    }

    /* Main Article Tables */
    main.article table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    main.article table thead {
        display: none;
    }

    main.article table tbody tr {
        display: block;
        margin-bottom: 15px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-soft);
    }

    main.article table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-soft);
        white-space: normal;
    }

    main.article table tbody td:last-child {
        border-bottom: none;
    }

    main.article table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        margin-right: 15px;
    }

    /* Collapsible Tables */
    .collapsible-table-content {
        overflow-x: auto;
    }

    /* Pagination */
    .pagination {
        flex-wrap: wrap;
    }

    .pagination .button,
    .pagination a.button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Toolbar */
    .toolbar {
        gap: 4px;
        padding: 8px;
    }

    .toolbar .btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    /* Flash Messages */
    .flash-container {
        left: 10px;
        right: 10px;
        top: 70px;
    }

    .flash-message {
        min-width: auto;
    }

    /* Back to Top Button */
    .back-to-top-btn,
    #backToTopBtn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        left: 15px;
    }

    /* Footer */
    footer {
        padding: 20px 15px;
        margin-top: 30px;
    }

    footer p {
        font-size: 0.85rem;
    }

    /* Main Article Cards */
    main.article .card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Header */
    header {
        padding: 10px 15px;
    }

    .logo a {
        font-size: 1rem;
    }

    /* Navigation */
    #nav-menu {
        width: 100%;
        right: -100%;
    }

    /* Main Content */
    main.article {
        padding: 15px 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card .value {
        font-size: 1.5rem;
    }

    .admin-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Back to Top Button */
    .back-to-top-btn,
    #backToTopBtn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 10px;
        left: 10px;
    }

    /* Footer */
    footer {
        padding: 15px 10px;
    }

    footer p {
        font-size: 0.8rem;
    }

    /* Main Article Cards */
    main.article .card {
        padding: 15px;
    }
}

/* ===== LARGE SCREENS ===== */
@media (min-width: 1400px) {
    header {
        padding: 18px 50px;
    }

    .logo a {
        font-size: 1.7rem;
    }

    #nav-menu {
        gap: 12px;
    }

    #nav-menu a {
        padding: 12px 22px;
        font-size: 1rem;
    }

    main.article {
        padding: 40px 30px;
    }

    footer {
        padding: 30px 20px;
    }

    /* Main Article Cards */
    main.article .card {
        padding: 30px;
    }
}

/* ===== ADMIN SPECIFIC STYLES ===== */

/* Alert box for unread messages */
.alert-unread-messages {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-unread-messages strong {
    color: #856404;
}

.alert-unread-messages a {
    margin-left: auto;
    text-decoration: none;
    color: var(--primary-color);
}

/* Filter section styles */
.filter-section-alt {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-section-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-section label {
    font-size: 12px;
    color: #666;
}

/* Period selector styles */
.period-selector-flex {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Stat card variations */
.stat-card-green {
    border-left-color: #28a745 !important;
}

.stat-card-purple {
    border-left-color: #6f42c1 !important;
}

/* Chart containers */
.chart-container {
    flex: 1;
    min-width: 300px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.chart-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: #666;
}

/* Form styles */
.form-light-bg {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-grid-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

.form-control-group {
    margin-bottom: 15px;
}

.form-control-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.form-control-group-label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.form-control-small {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 200px;
}

.form-control-medium {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form-control-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-control-textarea-hidden {
    display: none;
}

/* Promo code section */
.promo-code-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.promo-code-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 15px;
    align-items: flex-end;
}

/* Table styles */
.table-center-text {
    text-align: center;
}

.table-red-text {
    color: red;
}

.table-green-text {
    color: green;
}

.table-bold-text {
    font-weight: bold;
}

.table-small-text {
    font-size: 0.9em;
}

/* Editor styles */
.editor-border-light {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    background: white;
}

.toolbar-light {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 4px;
    flex-wrap: wrap;
}

.toolbar-separator {
    width: 8px;
}

/* Client management table */
.client-actions-flex {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.client-action-button {
    padding: 5px 10px;
    font-size: 12px;
}

.client-status-red {
    color: red;
}

.client-status-blue {
    color: blue;
}

.client-admin-gray {
    color: gray;
    font-size: 12px;
}

/* Contact messages table */
.contact-message-row {
    background-color: var(--contact-message-bg, white);
}

.contact-message-unread {
    --contact-message-bg: #fff3cd;
}

.contact-message-truncated {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-message-read-green {
    color: green;
    text-align: center;
}

.contact-message-unread-red {
    color: red;
    text-align: center;
}

.contact-message-actions {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 8px;
}

.modal-content-no-position {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
}

.modal-close-static {
    color: #aaa;
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-padding {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 3px;
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 60px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

.modal-button-full {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

/* Operations table container */
.operations-container {
    margin-bottom: 20px;
}

.operations-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Pagination adjustments */
.pagination-top-margin {
    margin-top: 15px;
}

.pagination-current {
    background-color: #8B72A4;
    cursor: default;
}

.pagination-ellipsis {
    padding: 10px;
}

/* Footer text */
.footer-center {
    text-align: center;
}

/* Back to top button */
.back-to-top-btn,
#backToTopBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-hover));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    transition: all var(--transition-normal);
    font-family: inherit;
}

.back-to-top-btn:hover,
#backToTopBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.back-to-top-btn:active,
#backToTopBtn:active {
    transform: translateY(0) scale(0.98);
}

.back-to-top-btn.visible,
#backToTopBtn.visible {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HR styles */
.hr-margin {
    margin: 15px 0;
}

/* Text colors */
.text-gray {
    color: #999;
}

.text-green {
    color: green;
}

.text-red {
    color: red;
}

.text-gray-light {
    color: #666;
}

.text-gray-italic {
    color: #666;
    font-style: italic;
}

.text-green-bold {
    color: green;
    font-weight: bold;
}

.text-red-bold {
    color: red;
    font-weight: bold;
}

.text-purple {
    text-decoration: none;
    color: #8B72A4;
}

/* Font sizes */
.font-small {
    font-size: 0.9em;
}

.font-smaller {
    font-size: 0.9em;
}

/* Flex layouts */
.flex-gap-5 {
    display: flex;
    gap: 5px;
}

.flex-column-gap-5 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Margin and padding */
.margin-top-20 {
    margin-top: 20px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

/* Overflow styles */
.overflow-x-auto {
    overflow-x: auto;
}

/* Form inline */
.form-inline {
    display: inline;
}

/* Network graph container */
.network-graph-container {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
}

/* Chart container flex layout */
.chart-container-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
    width: 100%;
}

/* Chart height */
.chart-height {
    height: 280px;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* ===== CHECKBOX LABEL ===== */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-body);
}

/* ===== EDITOR SIZES ===== */
.editor-small {
    min-height: 100px;
}

.editor-medium {
    min-height: 200px;
}

/* ===== MAX WIDTH UTILITIES ===== */
.max-width-250 {
    max-width: 250px;
    word-wrap: break-word;
}

/* ===== MARGIN UTILITIES ===== */
.margin-20-0 {
    margin: 20px 0;
}

/* ===== TEXT UTILITIES ===== */
.text-large {
    font-size: 1.2em;
}

.text-muted {
    color: var(--text-muted);
}

/* ===== MODAL ACTIONS ===== */
.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* ===== VIEW CONTACT BUTTON ===== */
.view-contact {
    background: var(--bg-cream);
    color: var(--chocolate);
    border: 2px solid var(--border-soft);
}

.view-contact:hover {
    background: var(--bg-soft-pink);
    border-color: var(--primary-pink);
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero,
    .filter-section,
    .period-selector,
    .toolbar,
    .pagination,
    .flash-container,
    button,
    form {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    table td {
        border: 1px solid #ddd;
    }
}

/* ============================================
   SERVICES CARDS - 3D EFFECTS
   ============================================ */

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    perspective: 1000px;
}

/* ===== SERVICE CARD - 3D EFFECT ===== */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow:
        0 4px 6px rgba(124, 45, 18, 0.05),
        0 10px 20px rgba(124, 45, 18, 0.08),
        0 0 0 1px rgba(254, 215, 170, 0.3);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

/* 3D Card Hover Effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(244, 114, 182, 0.05) 0%,
        rgba(94, 234, 212, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow:
        0 20px 40px rgba(124, 45, 18, 0.15),
        0 10px 20px rgba(244, 114, 182, 0.1),
        0 0 0 2px rgba(244, 114, 182, 0.3);
}

/* Card Shine Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Card Content */
.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin: 0 0 15px 0;
    color: var(--chocolate);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-soft);
}

.service-card > div {
    color: var(--text-body);
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card > div p {
    margin: 0 0 10px 0;
}

.service-card > div p:last-child {
    margin-bottom: 0;
}

.service-card a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: inline-block;
    margin-bottom: 15px;
}

.service-card a:hover {
    color: var(--primary-pink-hover);
    text-decoration: underline;
    transform: translateX(3px);
}

/* ===== PRICE TAG ===== */
.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--chocolate);
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, var(--bg-soft-pink), var(--bg-soft-mint));
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover .price-tag::before {
    left: 100%;
}

.service-card:hover .price-tag {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.2);
}

/* ===== PAY BUTTON ===== */
.pay-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-hover));
    border: none;
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pay-btn:hover::before {
    width: 300px;
    height: 300px;
}

.pay-btn:hover {
    background: linear-gradient(135deg, var(--primary-pink-hover), #DB2777);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(244, 114, 182, 0.4),
        0 4px 10px rgba(244, 114, 182, 0.2);
}

.pay-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .price-tag {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card h3 {
        font-size: 1.3rem;
    }

    .price-tag {
        font-size: 1.3rem;
        padding: 12px;
    }

    .pay-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
