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

:root {
    /* Primary Colors */
    --primary-black: #1a1a1a;
    --charcoal: #2d2d2d;
    --dark-grey: #404040;
    --medium-grey: #666666;
    --light-grey: #9a9a9a;
    
    /* Accent Colors */
    --accent-gold: #c9a96e;
    --light-accent: #e8dcc0;
    --dark-accent: #a08850;
    --warm-white: #fafafa;
    --cool-grey: #f5f5f5;
    --professional-blue: #2c5aa0;
    --success-green: #4a7c59;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fcfcfc;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-light: #e5e5e5;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Enhanced Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2.5rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* White hamburger bars for footer or dark backgrounds */
.hamburger.white .bar,
.footer .hamburger .bar,
.hamburger.footer-minimized .bar {
        background: var(--white);
    }

/* Enhanced Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(45, 45, 45, 0.85) 50%,
        rgba(64, 64, 64, 0.8) 100%), 
        url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--dark-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Enhanced Services Section */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--cool-grey);
}

.services h2 {
    text-align: center;
    color: var(--primary-black);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 300;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
}



.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

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

/* Enhanced About Section */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-black);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 300;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.feature span {
    font-weight: 600;
    color: var(--primary-black);
}

.about-image {
    flex: 1;
}

.image-placeholder {
    background: var(--white);
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
}

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

/* Enhanced Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    background: var(--cool-grey);
}

.contact h2 {
    text-align: center;
    color: var(--primary-black);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 300;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--primary-black);
    padding: 3rem;
    border-radius: 3px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-link:hover {
    background: var(--dark-accent);
    transform: translateY(-2px);
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    font-weight: 600;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.submit-btn {
    background: var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--dark-accent);
    transform: translateY(-2px);
}

/* Enhanced Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 25px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-social h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.designer-credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.designer-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: var(--white);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--vibrant-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--light-grey);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu .nav-link {
        color: var(--white);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero, .services, .about, .contact {
        background-attachment: scroll;
    }
    
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-actions {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .google-reviews-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .admin-controls {
        flex-direction: column;
    }
}



/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gold) 100%);
}

.reviews h2 {
    text-align: center;
    color: var(--navy-blue);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--gold), var(--forest-green));
    border-radius: 2px;
}

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

.rating-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.average-rating {
    text-align: center;
}

.rating-stars {
    color: var(--gold);
    font-size: 2rem;
    display: block;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--navy-blue);
    display: block;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.add-review-btn, .google-review-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-review-btn {
    background: linear-gradient(45deg, var(--accent-gold), var(--dark-accent));
    color: var(--white);
}

.google-review-btn {
    background: linear-gradient(45deg, var(--professional-blue), var(--success-green));
    color: var(--white);
}

.add-review-btn:hover, .google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--forest-green);
    position: relative;
}

.review-card.negative {
    border-left-color: var(--burgundy);
    display: none; /* Hidden by default */
}

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

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--primary-black);
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

/* Google Reviews */
.google-reviews {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.google-reviews h3 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.google-reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.google-review-card {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-gold);
}

.view-all-reviews {
    display: inline-block;
    background: linear-gradient(45deg, #4285F4, #34A853);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--burgundy);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    background: var(--white);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.star {
    font-size: 2rem;
    color: var(--border-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover, .star.active {
    color: var(--gold);
}

.star-rating:hover .star {
    color: var(--gold);
}

.star-rating .star:hover ~ .star {
    color: var(--border-light);
}

.submit-review-btn {
    background: linear-gradient(45deg, var(--forest-green), #1e7a1e);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-review-btn:hover {
    background: linear-gradient(45deg, #1e7a1e, var(--forest-green));
    transform: translateY(-2px);
}

/* Admin Panel */
.admin-panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    max-width: 90%;
    width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.admin-content h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.admin-controls button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: var(--accent-gold);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-controls button:hover {
    background: var(--dark-accent);
    transform: translateY(-2px);
}

.admin-review-item {
    background: var(--off-white);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--forest-green);
}

.admin-review-item.negative {
    border-left-color: var(--burgundy);
}

.review-actions-admin {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.review-actions-admin button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
}

.approve-btn {
    background: var(--forest-green);
    color: var(--white);
}

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

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

/* Success Message */
.success-message {
    background: linear-gradient(45deg, var(--forest-green), #1e7a1e);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    display: none;
}

/* Admin Access Button */
.admin-access {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--dark-grey);
    color: var(--white);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.admin-access:hover {
    opacity: 1;
    background: var(--charcoal);
}

/* Responsive Design for Reviews */
@media screen and (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-actions {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .google-reviews-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .admin-controls {
        flex-direction: column;
    }
}