/* Global Styles */
:root {
    --primary: #8DC63F;
    --secondary: #58595B;
    --accent: #ED1C24;
    --light: #f8f9fa;
    --dark: #1A1A1A;
    --success: #8DC63F;
    --info: #58595B;
    --bg-dark: #1A1A1A;
    --bg-darker: #111111;
    --bg-light: #2A2A2A;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    background-color: var(--bg-darker) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-dark {
    background-color: var(--bg-darker);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand span {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--text-light);
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

/* Hero Section Global Styles */
.hero-section {
    margin-top: 0;
    padding-top: 0;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        padding: 0.5rem 1.5rem;
    }
}

/* Quick Links */
.quick-links {
    background: var(--bg-darker);
    padding: 40px 0;
}

.quick-link-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 10px;
    background: var(--bg-light);
    color: #fff;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.2);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* News Section */
.news-card {
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.news-img {
    height: 200px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(141, 198, 63, 0.1), transparent);
    pointer-events: none;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    color: var(--primary); 
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author h5 {
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
}

/* Community Events */
.event-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Footer */
footer {
    background: var(--bg-darker);
    color: white;
    padding: 60px 0 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 8px 20px;
    transition: all 0.3s;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

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

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
    }

    .quick-link-card {
        margin-bottom: 20px;
    }

    .navbar-logo {
        height: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Form Styles */
.form-control {
    background-color: var(--bg-light);
    color: var(--text-light);
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    padding: 8px 12px;
}

.form-control:focus {
    background-color: var(--bg-light);
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(141, 198, 63, 0.25);
}

/* Card Styles */
.card {
    background-color: var(--bg-light);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-title {
    color: var(--primary);
}

.card-text {
    color: var(--text-light);
}

/* Alert Styles */
.alert {
    background-color: var(--bg-light);
    border-color: var(--text-muted);
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-success {
    color: var(--success);
}

.alert-danger {
    color: var(--accent);
}

/* Badge Styles */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.badge.bg-success {
    background-color: var(--success) !important;
}

.badge.bg-warning {
    background-color: var(--accent) !important;
}

.badge.bg-danger {
    background-color: var(--accent) !important;
}

/* About Section */
#about img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.about-feature {
    transition: transform 0.3s;
    color: var(--primary);
}

.about-feature:hover {
    transform: translateX(10px);
    color: var(--success);
}

.about-feature i {
    color: var(--primary);
    margin-right: 10px;
}

.about-feature span {
    color: var(--text-light);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(141, 198, 63, 0.05), transparent);
    pointer-events: none;
}

.services-section h2 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card {
    height: 100%;
    background: var(--bg-darker);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--card-index) * 0.2s);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(141, 198, 63, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(141, 198, 63, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-card .card-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: var(--text-light);
}

.service-card .card-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.service-card:hover .card-text {
    color: var(--text-light);
}

.service-price {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-price {
    transform: scale(1.05);
}

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

.service-features li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-features li {
    color: var(--text-light);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li i {
    transform: scale(1.2);
}

.service-cta {
    margin-top: auto;
    transition: transform 0.3s ease;
}

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

.service-cta .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--bg-darker);
    border: none;
    transition: all 0.3s ease;
}

.service-cta .btn:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }

    .service-image, 
    .service-image-placeholder {
        height: 200px;
    }

    .service-card .card-body {
        padding: 1.5rem;
    }
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }

    .hero-section {
        min-height: 400px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .quick-link-card {
        margin-bottom: 20px;
    }

    .service-img {
        height: 150px;
    }

    .gallery-img {
        height: 200px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #about .row {
        flex-direction: column-reverse;
    }

    #about img {
        margin-bottom: 2rem;
        max-height: 300px;
    }

    .testimonial-card {
        margin: 10px 0;
    }
}

/* Admin Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item {
    padding: 8px 20px;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
}

/* Text Colors */
.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-danger {
    color: var(--accent) !important;
}

/* Quick Links */
.quick-link-card h4 {
    color: var(--primary);
    margin: 15px 0;
}

.quick-link-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.section-title h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-item {
    height: 100%;
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-item h5 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-item .btn {
    width: 100%;
    max-width: 250px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.review-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-rating {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    color: var(--primary);
    font-weight: 600;
}

/* Tables */
.table {
    color: var(--text-light);
}

.table th {
    color: var(--primary);
}

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

/* Global Text Colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
}

/* Navigation Text */
.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--primary);
}

/* Hero Section */
.hero-content h1 {
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.service-card h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
}

/* About Section */
.about-content h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-info h3 {
    color: var(--primary);
}

.contact-info p,
.contact-info a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form label {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--bg-darker);
}

.footer h4 {
    color: var(--primary);
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    font-weight: 600;
}

.btn-primary {
    color: var(--bg-darker) !important;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    color: var(--bg-darker);
    background-color: var(--primary);
}

/* Form Controls */
.form-control {
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    background: var(--bg-light);
    border-color: var(--primary);
    color: rgba(255, 255, 255, 0.9);
}

/* Modal */
.modal-content {
    background: var(--bg-darker);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--primary);
}

/* Alert Messages */
.alert {
    color: var(--bg-darker);
    font-weight: 500;
}

/* Card Overlays */
.card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.card-img-overlay h5 {
    color: var(--primary);
}

.card-img-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

/* Icon Colors */
i.fas, i.far, i.fab, i.fa {
    color: var(--primary);
}

/* Social Icons */
.social-icons i {
    color: var(--primary);
    transition: color 0.3s;
}

.social-icons i:hover {
    color: var(--success);
}

/* Service Icons */
.service-features i,
.contact-info i,
.booking-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* What Our Customers Say Section */
.customers-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.customers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(141, 198, 63, 0.1), transparent);
    pointer-events: none;
}

.customers-section h2,
.testimonial-section h2 {
    color: var(--primary);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.customers-section p,
.testimonial-section p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Navigation Icons */
.nav-link i {
    color: var(--primary);
    margin-right: 8px;
}

/* Button Icons */
.btn i {
    color: inherit;
    margin-right: 5px;
}

/* Alert Icons */
.alert i {
    color: inherit;
    margin-right: 8px;
}

/* Card Icons */
.card-header i,
.card-body i {
    color: var(--primary);
    margin-right: 8px;
}

/* Quick Links Icons */
.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.quick-link-card:hover i {
    transform: scale(1.1);
}

/* Footer Icons */
footer i {
    color: var(--primary);
    margin-right: 8px;
    transition: color 0.3s;
}

footer i:hover {
    color: var(--success);
}

/* WhatsApp Icon */
.whatsapp-icon {
    color: var(--primary);
    font-size: 2rem;
    transition: transform 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Facebook Icon */
.facebook-icon {
    color: var(--primary);
    font-size: 2rem;
    transition: transform 0.3s;
}

.facebook-icon:hover {
    transform: scale(1.1);
}

/* Location Icon */
.location-icon {
    color: var(--primary);
    font-size: 2rem;
    transition: transform 0.3s;
}

.location-icon:hover {
    transform: scale(1.1);
}

/* Social Media Section */
.social-section {
    padding: 40px 0;
    text-align: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 10px;
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.3);
}

.social-link i {
    margin-right: 10px;
    font-size: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: var(--bg-darker);
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.gallery-nav button {
    background: rgba(141, 198, 63, 0.2);
    border: none;
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-nav button:hover {
    background: var(--primary);
    color: var(--secondary);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: var(--primary);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.review-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-rating {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    color: var(--primary);
    font-weight: 600;
}

/* Tables */
.table {
    color: var(--text-light);
}

.table th {
    color: var(--primary);
}

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

/* Footer */
.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand span {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 60px;
    }
    
    .footer-brand span {
        font-size: 1.5rem;
    }
} 