/* Modern E-commerce Color Palette - Inspired by Hexashop */
:root {
    --primary-color: #2B2D42;
    --primary-light: #3D405B;
    --primary-dark: #1A1C2E;
    --accent-color: #EF233C;
    --accent-hover: #D90429;
    --secondary-color: #8D99AE;
    --background-light: #EDF2F4;
    --background-white: #FFFFFF;
    --text-dark: #2B2D42;
    --text-medium: #4A5568;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

.content {
    background-color: #000000;
    min-height: calc(100vh - 4em);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-danger {
    background-color: var(--accent-color);
    color: white;
}

.btn-danger:hover {
    background-color: var(--accent-hover);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.product-card {
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--background-light);
    transition: var(--transition);
}

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

.product-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--background-light) 0%, #D1D5DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.product-image-placeholder-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--background-light) 0%, #D1D5DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 1.2rem;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.product-category {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.product-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    background-color: var(--background-light);
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.category-card {
    background: var(--background-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #5C4A37 0%, #4A3A2A 50%, #3D2F20 100%);
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        ),
        linear-gradient(135deg, #5C4A37 0%, #4A3A2A 50%, #3D2F20 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 0.5em 0;
    margin-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 3.5em;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Toggle */
.navbar-toggler {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
    border: none;
    background: transparent;
    padding: 0;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.brand-link {
    text-decoration: none;
    color: #FFFFFF;
    transition: var(--transition);
}

.brand-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links {
    display: flex !important;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    width: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 4px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link-contact {
    background-color: #3D2F20 !important;
    font-weight: 600;
}

.nav-link-contact:hover {
    background-color: #4A3A2A !important;
}

.nav-link-button {
    background: none;
    border: none;
    color: #FFFFFF;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* Ensure nav-links are visible on desktop */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        flex-direction: row !important;
    }
    
    .nav-link {
        display: inline-block !important;
        padding: 0.5rem 1rem !important;
        width: auto !important;
        border: none !important;
        color: #FFFFFF !important;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #FFFFFF !important;
    }
    
    .nav-link-contact {
        background-color: #3D2F20 !important;
    }
    
    .nav-link-button {
        display: inline-block !important;
        width: auto !important;
        text-align: center !important;
        padding: 0.25rem 0 !important;
        border: none !important;
    }
}

/* Product Detail Page */
.product-detail-page {
    padding: 3rem 0;
    background: var(--background-white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.product-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    background: var(--background-light);
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-thumbnail:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-category-badge, .product-status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    background-color: var(--background-light);
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.product-description h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-availability {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 4px;
}

.product-actions {
    margin-top: 2rem;
}

.product-sold-notice,
.product-display-notice {
    padding: 1rem;
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    color: var(--text-medium);
    font-weight: 500;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--background-white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Admin Pages */
.admin-page {
    padding: 2rem 0;
    background: var(--background-light);
    min-height: calc(100vh - 200px);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

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

.stat-card h3 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.admin-table {
    width: 100%;
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.admin-table thead {
    background-color: var(--primary-color);
    color: white;
}

.admin-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.admin-table td {
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-medium);
}

.admin-table tbody tr:hover {
    background-color: var(--background-light);
}

.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input, .filter-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--background-white);
}

.search-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.1);
    }

.search-input {
    flex: 1;
    min-width: 250px;
}

.filter-select {
    min-width: 180px;
}

/* Login Page */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
    background: var(--background-light);
}

.login-container {
    background: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    max-width: 450px;
    width: 100%;
    border-top: 4px solid var(--accent-color);
}

.login-container h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-form {
    margin-top: 2rem;
}

.login-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-page {
    padding: 3rem 0;
    background: var(--background-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section, .contact-info-section {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
    border-color: #10B981;
}

.alert-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border-color: #EF4444;
}

/* Utility Classes */
.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
}

.featured-section, .categories-section {
    padding: 4rem 0;
    background: var(--background-white);
}

.filter-section {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    background: var(--background-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.1);
}

/* Page Layout */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
}

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Navigation */
    .navbar {
        height: auto;
        min-height: 4em;
        position: relative;
    }
    
    .navbar-toggler {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003 !important;
        background: transparent !important;
        border: none !important;
        padding: 5px !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .navbar-brand {
        z-index: 1001;
        position: relative;
        padding-right: 60px;
        flex: 1;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .nav-links {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(135deg, #5C4A37 0%, #4A3A2A 50%, #3D2F20 100%) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease !important;
        box-shadow: none !important;
        border-top: 2px solid rgba(0, 0, 0, 0.3) !important;
        padding: 0 !important;
    }
    
    .nav-links.active {
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: #FFFFFF;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
    }
    
    .nav-link-contact {
        background-color: #3D2F20 !important;
    }
    
    .nav-link-button {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        color: #FFFFFF;
    }
    
    .nav-link-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .admin-filters {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* About Page Styles - Matching mobile design */
/* Hero Banner Section */
.hero-banner-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B7355 0%, #6B5D4F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-style: italic;
}

.hero-banner-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-hero-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-hero-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background-color: #8B7355;
    color: white;
}

.btn-hero-secondary:hover {
    background-color: #7A6345;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    background-color: #F5F5DC;
    padding: 4rem 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #8B7355;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    overflow: hidden;
}

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

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    display: block;
}

.btn-service-green {
    background-color: #8B7355;
    color: white;
}

.btn-service-green:hover {
    background-color: #7A6345;
}

.btn-service-brown {
    background-color: #8B7355;
    color: white;
}

.btn-service-brown:hover {
    background-color: #7A6345;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #F5F5DC;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B7355;
}

/* Work Gallery Section */
.work-gallery-section {
    background: #3a2e1f;
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Wood Texture Background for Gallery */
.work-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Wood grain lines - vertical */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.15) 1px,
            rgba(0, 0, 0, 0.15) 2px,
            transparent 2px,
            transparent 3px,
            rgba(0, 0, 0, 0.08) 3px,
            rgba(0, 0, 0, 0.08) 4px
        ),
        /* Wood grain lines - horizontal variations */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(139, 69, 19, 0.2) 8px,
            rgba(139, 69, 19, 0.2) 9px,
            transparent 9px,
            transparent 15px,
            rgba(101, 67, 33, 0.15) 15px,
            rgba(101, 67, 33, 0.15) 16px,
            transparent 16px,
            transparent 22px,
            rgba(160, 82, 45, 0.1) 22px,
            rgba(160, 82, 45, 0.1) 23px
        ),
        /* Diagonal grain pattern */
        repeating-linear-gradient(
            2deg,
            transparent,
            transparent 20px,
            rgba(80, 50, 25, 0.12) 20px,
            rgba(80, 50, 25, 0.12) 21px
        ),
        /* Base wood color variations */
        linear-gradient(
            90deg,
            #4a3a2a 0%,
            #3a2e1f 8%,
            #4a3a2a 15%,
            #2d2419 25%,
            #3a2e1f 35%,
            #4a3a2a 45%,
            #2d2419 55%,
            #3a2e1f 65%,
            #4a3a2a 75%,
            #2d2419 85%,
            #3a2e1f 92%,
            #4a3a2a 100%
        );
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    opacity: 0.85;
    z-index: 0;
}

/* Deep Stain Overlay for Gallery */
.work-gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at 30% 50%,
            rgba(25, 15, 8, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(30, 18, 10, 0.3) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(35, 22, 12, 0.75) 0%,
            rgba(28, 17, 9, 0.85) 25%,
            rgba(25, 15, 8, 0.8) 50%,
            rgba(28, 17, 9, 0.85) 75%,
            rgba(35, 22, 12, 0.75) 100%
        );
    z-index: 1;
}

.work-gallery-section .container {
    position: relative;
    z-index: 2;
}

.section-heading-light {
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-gallery {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gallery:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background: #3a2e1f;
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Wood Texture Background */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Wood grain lines - vertical */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.15) 1px,
            rgba(0, 0, 0, 0.15) 2px,
            transparent 2px,
            transparent 3px,
            rgba(0, 0, 0, 0.08) 3px,
            rgba(0, 0, 0, 0.08) 4px
        ),
        /* Wood grain lines - horizontal variations */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(139, 69, 19, 0.2) 8px,
            rgba(139, 69, 19, 0.2) 9px,
            transparent 9px,
            transparent 15px,
            rgba(101, 67, 33, 0.15) 15px,
            rgba(101, 67, 33, 0.15) 16px,
            transparent 16px,
            transparent 22px,
            rgba(160, 82, 45, 0.1) 22px,
            rgba(160, 82, 45, 0.1) 23px
        ),
        /* Diagonal grain pattern */
        repeating-linear-gradient(
            2deg,
            transparent,
            transparent 20px,
            rgba(80, 50, 25, 0.12) 20px,
            rgba(80, 50, 25, 0.12) 21px
        ),
        /* Base wood color variations */
        linear-gradient(
            90deg,
            #4a3a2a 0%,
            #3a2e1f 8%,
            #4a3a2a 15%,
            #2d2419 25%,
            #3a2e1f 35%,
            #4a3a2a 45%,
            #2d2419 55%,
            #3a2e1f 65%,
            #4a3a2a 75%,
            #2d2419 85%,
            #3a2e1f 92%,
            #4a3a2a 100%
        );
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    opacity: 0.85;
    z-index: 0;
}

/* Deep Stain Overlay */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at 30% 50%,
            rgba(25, 15, 8, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(30, 18, 10, 0.3) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(35, 22, 12, 0.75) 0%,
            rgba(28, 17, 9, 0.85) 25%,
            rgba(25, 15, 8, 0.8) 50%,
            rgba(28, 17, 9, 0.85) 75%,
            rgba(35, 22, 12, 0.75) 100%
        );
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-cta:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner-title {
        font-size: 2rem;
    }
    
    .hero-banner-tagline {
        font-size: 1rem;
    }
    
    .hero-banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.about-page {
    background-color: #000;
    color: white;
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin: 3rem 0 4rem;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.about-title::before,
.about-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    max-width: 200px;
}

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

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.about-section-full {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper.about-image-secondary {
    max-width: 35rem;
    max-height: 12rem;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 2px solid #f8c8d0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    max-height: 30rem;
}

.about-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-secondary .about-image-placeholder {
    aspect-ratio: 4 / 3;
}

.about-image-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.about-section-heading {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.craft-category {
    margin-bottom: 2rem;
}

.craft-category:last-child {
    margin-bottom: 0;
}

.craft-category h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.75rem;
}

.craft-category p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.craft-category-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    flex: 1;
}

.craft-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.craft-category-img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-image-secondary .craft-category-image-wrapper .about-image-placeholder {
    width: 100%;
    height: 100%;
    flex: 1;
    margin: 0;
    aspect-ratio: auto;
}

.about-contact {
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: none;
    margin-top: 3rem;
    background: #3a2e1f;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Wood Texture Background for About Contact */
.about-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Wood grain lines - vertical */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.15) 1px,
            rgba(0, 0, 0, 0.15) 2px,
            transparent 2px,
            transparent 3px,
            rgba(0, 0, 0, 0.08) 3px,
            rgba(0, 0, 0, 0.08) 4px
        ),
        /* Wood grain lines - horizontal variations */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(139, 69, 19, 0.2) 8px,
            rgba(139, 69, 19, 0.2) 9px,
            transparent 9px,
            transparent 15px,
            rgba(101, 67, 33, 0.15) 15px,
            rgba(101, 67, 33, 0.15) 16px,
            transparent 16px,
            transparent 22px,
            rgba(160, 82, 45, 0.1) 22px,
            rgba(160, 82, 45, 0.1) 23px
        ),
        /* Diagonal grain pattern */
        repeating-linear-gradient(
            2deg,
            transparent,
            transparent 20px,
            rgba(80, 50, 25, 0.12) 20px,
            rgba(80, 50, 25, 0.12) 21px
        ),
        /* Base wood color variations */
        linear-gradient(
            90deg,
            #4a3a2a 0%,
            #3a2e1f 8%,
            #4a3a2a 15%,
            #2d2419 25%,
            #3a2e1f 35%,
            #4a3a2a 45%,
            #2d2419 55%,
            #3a2e1f 65%,
            #4a3a2a 75%,
            #2d2419 85%,
            #3a2e1f 92%,
            #4a3a2a 100%
        );
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    opacity: 0.85;
    z-index: 0;
}

/* Deep Stain Overlay for About Contact */
.about-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at 30% 50%,
            rgba(25, 15, 8, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(30, 18, 10, 0.3) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(35, 22, 12, 0.75) 0%,
            rgba(28, 17, 9, 0.85) 25%,
            rgba(25, 15, 8, 0.8) 50%,
            rgba(28, 17, 9, 0.85) 75%,
            rgba(35, 22, 12, 0.75) 100%
        );
    z-index: 1;
}

.about-contact p,
.about-contact a {
    position: relative;
    z-index: 2;
}

.about-contact p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-contact p strong {
    color: white;
}

.about-contact a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.about-contact a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        margin: 2rem 0 3rem;
        gap: 1rem;
    }
    
    .about-title::before,
    .about-title::after {
        max-width: 100px;
    }
    
    .about-hero,
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .about-image-placeholder {
        aspect-ratio: 4 / 3;
    }
    
    .about-text-block {
        margin-top: 23em;
    }
    
    .about-section-heading {
        font-size: 0.9rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .craft-category-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .craft-category-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .craft-category-image img {
        aspect-ratio: 4 / 3;
    }
}

/* Services Page Styles */
.services-page {
    background-color: #000;
    color: white;
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

.services-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.services-page-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.service-detail-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-detail-section-alt {
    background-color: rgba(139, 115, 85, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    font-size: 2.5rem;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content-reverse {
    direction: rtl;
}

.service-detail-content-reverse > * {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.service-detail-text {
    color: rgba(255, 255, 255, 0.95);
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-list li strong {
    color: white;
}

.service-detail-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-service-detail {
    display: inline-block;
    padding: 12px 28px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-service-detail:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-service-detail-secondary {
    background-color: #8B7355;
}

.btn-service-detail-secondary:hover {
    background-color: #6B5D4F;
}

.services-why-choose {
    background-color: rgba(139, 115, 85, 0.15);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.services-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-benefit {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.service-benefit:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.service-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-benefit h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.service-benefit p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    background: #3a2e1f;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Wood Texture Background for Services CTA */
.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Wood grain lines - vertical */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.15) 1px,
            rgba(0, 0, 0, 0.15) 2px,
            transparent 2px,
            transparent 3px,
            rgba(0, 0, 0, 0.08) 3px,
            rgba(0, 0, 0, 0.08) 4px
        ),
        /* Wood grain lines - horizontal variations */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(139, 69, 19, 0.2) 8px,
            rgba(139, 69, 19, 0.2) 9px,
            transparent 9px,
            transparent 15px,
            rgba(101, 67, 33, 0.15) 15px,
            rgba(101, 67, 33, 0.15) 16px,
            transparent 16px,
            transparent 22px,
            rgba(160, 82, 45, 0.1) 22px,
            rgba(160, 82, 45, 0.1) 23px
        ),
        /* Diagonal grain pattern */
        repeating-linear-gradient(
            2deg,
            transparent,
            transparent 20px,
            rgba(80, 50, 25, 0.12) 20px,
            rgba(80, 50, 25, 0.12) 21px
        ),
        /* Base wood color variations */
        linear-gradient(
            90deg,
            #4a3a2a 0%,
            #3a2e1f 8%,
            #4a3a2a 15%,
            #2d2419 25%,
            #3a2e1f 35%,
            #4a3a2a 45%,
            #2d2419 55%,
            #3a2e1f 65%,
            #4a3a2a 75%,
            #2d2419 85%,
            #3a2e1f 92%,
            #4a3a2a 100%
        );
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    opacity: 0.85;
    z-index: 0;
    border-radius: 8px;
}

/* Deep Stain Overlay for Services CTA */
.services-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at 30% 50%,
            rgba(25, 15, 8, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(30, 18, 10, 0.3) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(35, 22, 12, 0.75) 0%,
            rgba(28, 17, 9, 0.85) 25%,
            rgba(25, 15, 8, 0.8) 50%,
            rgba(28, 17, 9, 0.85) 75%,
            rgba(35, 22, 12, 0.75) 100%
        );
    z-index: 1;
    border-radius: 8px;
}

.services-cta h2,
.services-cta p,
.services-cta-buttons {
    position: relative;
    z-index: 2;
}

.services-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.btn-cta-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-page-title {
        font-size: 2rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-content-reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        height: 250px;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .services-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-cta {
        flex-direction: column;
    }
    
    .btn-service-detail {
        width: 100%;
        text-align: center;
    }
    
    .services-cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta,
    .btn-cta-secondary {
        width: 100%;
    }
}
