/* style.css - Prtll Services Style Sheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --gold-primary: #b1946c;
    --gold-light: #d4c3ab;
    --gold-dark: #8c714c;
    --charcoal-dark: #2c2e31;
    --charcoal-medium: #3c3f44;
    --charcoal-light: #4c4f55;
    
    --bg-light: #fbfaf8;
    --bg-white: #ffffff;
    --bg-dark: #121315;
    --bg-dark-card: #1c1e21;
    
    --text-dark: #212529;
    --text-muted-dark: #5c636a;
    --text-light: #f8f9fa;
    --text-muted-light: #adb5bd;
    
    --border-light: rgba(177, 148, 108, 0.15);
    --border-medium: rgba(177, 148, 108, 0.3);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal-dark);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6 {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold-primary);
}

.section-header p {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
}
.section-dark .section-header p {
    color: var(--text-muted-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 148, 108, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--charcoal-dark);
    color: var(--bg-white);
}

.btn-dark:hover {
    background-color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--charcoal-medium);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    padding: 8rem 0;
    background: linear-gradient(rgba(251, 250, 248, 0.25), rgba(251, 250, 248, 0.25)),
                url('assets/hero_bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--charcoal-dark);
    background: linear-gradient(135deg, var(--charcoal-dark) 60%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(177, 148, 108, 0.15) 0%, rgba(251, 250, 248, 0) 70%);
    z-index: 1;
}

.hero-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
    transform: rotate(1deg);
    transition: var(--transition-smooth);
}

.hero-card:hover {
    transform: rotate(0) translateY(-5px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(177, 148, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.hero-card-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(177, 148, 108, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--gold-primary);
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.service-card p {
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--gold-dark);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    margin-top: 2rem;
}

.process-step {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(177, 148, 108, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process-step p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-light);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '“';
    font-size: 4rem;
    color: rgba(177, 148, 108, 0.1);
    position: absolute;
    top: -2rem;
    left: -0.5rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--charcoal-dark);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--charcoal-dark);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--charcoal-dark);
    user-select: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(177, 148, 108, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Credit Damage Grid */
.damage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.damage-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.damage-card:hover {
    border-color: #d9383a;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.damage-card h3 {
    font-size: 1.2rem;
    color: var(--charcoal-dark);
    margin-bottom: 0.75rem;
}

.damage-points {
    font-size: 2.25rem;
    font-weight: 800;
    color: #d9383a;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.damage-card p {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
}

/* Forms (Contact/Booking) */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--charcoal-medium);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(177, 148, 108, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(177, 148, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--text-muted-dark);
}

.map-placeholder {
    height: 250px;
    background-color: #e5e3df;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 1px solid var(--border-light);
    margin-top: 1rem;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(44, 46, 49, 0.9), rgba(44, 46, 49, 0.9)),
                url('assets/logo.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted-light);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-muted-light);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    flex-grow: 1;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background-color: var(--gold-primary);
    color: var(--bg-white);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background-color: var(--gold-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* Notifications */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Admin Dashboard CSS */
.admin-body {
    background-color: #f1f3f5;
}

.admin-header {
    background-color: var(--charcoal-dark);
    color: var(--text-light);
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header h1 {
    font-size: 1.3rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-header h1 span {
    font-weight: 400;
    font-size: 0.9rem;
    background-color: var(--gold-primary);
    color: var(--bg-white);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.admin-layout {
    display: flex;
    min-height: calc(100vh - 70px);
}

.admin-sidebar {
    width: 250px;
    background-color: var(--charcoal-dark);
    color: var(--text-muted-light);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar-nav {
    list-style: none;
}

.admin-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #a0a5b0;
    border-left: 3px solid transparent;
}

.admin-sidebar-nav li a:hover, .admin-sidebar-nav li a.active {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gold-primary);
}

.admin-main {
    flex-grow: 1;
    padding: 3rem;
    overflow-y: auto;
}

.admin-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.metric-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted-dark);
    margin-bottom: 0.5rem;
}

.metric-info p {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    font-family: var(--font-heading);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.metric-blue {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.metric-gold {
    background-color: rgba(177, 148, 108, 0.1);
    color: var(--gold-primary);
}

.metric-green {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.admin-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.admin-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: 1rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

table.admin-table th, table.admin-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f3f5;
}

table.admin-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--charcoal-medium);
    background-color: #f8f9fa;
}

table.admin-table tr:hover td {
    background-color: #fbfbfb;
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.badge-pending { background-color: #ffeeba; color: #856404; }
.badge-approved { background-color: #c3e6cb; color: #155724; }
.badge-cancelled { background-color: #f5c6cb; color: #721c24; }
.badge-completed { background-color: #bee5eb; color: #0c5460; }
.badge-unread { background-color: #f5c6cb; color: #721c24; }
.badge-read { background-color: #e2e3e5; color: #383d41; }
.badge-replied { background-color: #c3e6cb; color: #155724; }

/* Login Page specific styling */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--bg-dark) 100%);
    padding: 2rem;
}

.login-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    text-align: center;
}

.login-card img {
    height: 70px;
    margin-bottom: 1.5rem;
}

.login-card h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

/* Actions cell buttons */
.btn-action {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-right: 0.25rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-action-approve { background-color: #28a745; color: white; }
.btn-action-approve:hover { background-color: #218838; }
.btn-action-cancel { background-color: #dc3545; color: white; }
.btn-action-cancel:hover { background-color: #c82333; }
.btn-action-complete { background-color: #17a2b8; color: white; }
.btn-action-complete:hover { background-color: #138496; }
.btn-action-delete { background-color: #6c757d; color: white; }
.btn-action-delete:hover { background-color: #5a6268; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .damage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2.75rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .admin-layout {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        padding: 1rem 0;
    }
    .admin-sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .admin-sidebar-nav li a {
        padding: 0.5rem 1rem;
    }
    .admin-metrics {
        grid-template-columns: 1fr;
    }
    .damage-grid {
        grid-template-columns: 1fr;
    }
}
