/* assets/css/style.css */
/* Premium Design System for Gallery Art */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #07090e;
    --bg-dark-accent: #0f131a;
    --bg-card: rgba(15, 20, 30, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(37, 99, 235, 0.15);
    
    --bg-header: rgba(7, 9, 14, 0.75);
    --bg-header-scrolled: rgba(7, 9, 14, 0.95);
    --bg-footer: #040609;
    --bg-mobile-nav: #07090e;
    
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-gradient: linear-gradient(135deg, #1d4ed8, #2563eb);
    --royal-blue-glow: 0 0 25px rgba(37, 99, 235, 0.35);
    
    --accent: #60a5fa;
    --accent-light: #93c5fd;
    
    --text-white: #f8fafc;
    --text-silver: #e2e8f0;
    --text-muted: #94a3b8;
    
    --hero-overlay: rgba(7, 9, 14, 0.85);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
}

/* Light Theme Variable Overrides */
:root.light-theme {
    --bg-dark: #f8fafc;
    --bg-dark-accent: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(37, 99, 235, 0.1);
    
    --bg-header: rgba(248, 250, 252, 0.75);
    --bg-header-scrolled: rgba(248, 250, 252, 0.95);
    --bg-footer: #f1f5f9;
    --bg-mobile-nav: #f8fafc;
    
    --accent: #1d4ed8;
    --accent-light: #2563eb;
    
    --text-white: #0f172a;
    --text-silver: #334155;
    --text-muted: #64748b;
    
    --hero-overlay: rgba(248, 250, 252, 0.85);
}

/* Light Theme Component Adjustments */
:root.light-theme .form-control {
    background: var(--bg-dark-accent);
    color: var(--text-white);
    border-color: var(--border-color);
}

:root.light-theme .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

:root.light-theme .btn-secondary {
    border-color: rgba(15, 23, 42, 0.18);
    color: #0f172a;
}

:root.light-theme .btn-secondary:hover {
    background: rgba(15, 23, 42, 0.03);
    border-color: #0f172a;
}

:root.light-theme .hero-grid-bg {
    background-image: linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
}

:root.light-theme .dropdown-menu {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

:root.light-theme .admin-sidebar-link:hover, 
:root.light-theme .admin-sidebar-link.active {
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
}

:root.light-theme .social-btn {
    background: rgba(0, 0, 0, 0.02);
    color: #334155;
}

:root.light-theme .social-btn:hover {
    background: var(--primary);
    color: white;
}

:root.light-theme .filter-btn {
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-silver);
}

:root.light-theme .filter-btn:hover, :root.light-theme .filter-btn.active {
    background: var(--primary-gradient);
    color: white;
}



/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-silver);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Grid & Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 10;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(7, 9, 14, 0.5), 0 0 20px rgba(37, 99, 235, 0.1);
}

/* Buttons and CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--royal-blue-glow);
    transform: scale(1.03);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    transform: scale(1.03);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up {
    animation: slideUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Navigation Menu */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-scrolled {
    height: 70px;
    background: var(--bg-header-scrolled);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-white);
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-silver);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Services Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-dark-accent);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dropdown-item a:hover {
    color: var(--text-white);
    background: rgba(37, 99, 235, 0.1);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-white);
    margin: 6px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-tagline {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-white) 40%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Services Page & Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* Portfolio Filters & Grid */
.portfolio-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-card {
    overflow: hidden;
    position: relative;
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background-color: var(--bg-dark-accent);
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0) 40%, rgba(7, 9, 14, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-category-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.portfolio-overlay-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Service Page Specific Layout */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-preview-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
}

.service-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-features-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-features-list li i {
    color: var(--accent);
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: var(--text-white);
    padding: 0.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.pricing-package-name {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-silver);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--primary);
}

/* Reviews Panel */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.review-card {
    padding: 2.5rem;
}

.review-stars {
    color: #eab308;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-silver);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--primary);
}

/* Add Review Form Box */
.add-review-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.add-review-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: var(--bg-dark-accent);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

select.form-control option {
    background: var(--bg-dark-accent);
    color: var(--text-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

.star-rating-selector {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.star-rating-selector i {
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-rating-selector i.active, .star-rating-selector i:hover {
    color: #eab308;
}

/* Contact Details Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-list {
    margin: 3rem 0;
    list-style: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-silver);
    font-size: 1.1rem;
}

.social-btn:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Section */
.footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Admin Dashboard CSS Styles */
.admin-login-container {
    max-width: 450px;
    margin: 8rem auto;
    padding: 3rem;
}

.admin-dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    margin-top: 2rem;
    min-height: 700px;
}

.admin-sidebar {
    border-right: 1px solid var(--border-color);
    padding-right: 1.5rem;
}

.admin-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-sidebar-link {
    display: block;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-sidebar-link:hover, .admin-sidebar-link.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--text-white);
}

.admin-panel-card {
    padding: 2.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    color: var(--text-white);
    font-weight: 600;
}

.admin-table td {
    color: var(--text-silver);
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.admin-action-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    border: none;
    margin-right: 0.5rem;
}

.admin-btn-delete {
    background: #ef4444;
    color: white;
}

.admin-btn-delete:hover {
    background: #dc2626;
}

.admin-btn-edit {
    background: var(--primary);
    color: white;
}

.admin-btn-edit:hover {
    background: var(--primary-hover);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-dark-accent);
    border-left: 4px solid var(--primary);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left-color: #22c55e;
}

.toast-error {
    border-left-color: #ef4444;
}

/* Service Detail Showcase Table */
.pricing-showcase-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

/* Responsive Styles for Tablet & Mobile */
@media (max-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .service-details-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Responsive Navigation */
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-mobile-nav);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1001;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background: transparent;
    }
    
    .dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        padding: 0 2rem;
        gap: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .admin-dashboard-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    .admin-sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .admin-sidebar-link {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }
    .container {
        padding: 0 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .admin-panel-card {
        padding: 1.5rem;
    }
}
