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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #007AFF;
    --accent-silver: #C0C0C0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(45, 45, 45, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(45, 45, 45, 0.85);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo-img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 1);
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all .35s cubic-bezier(.22,1,.36,1);
    transform-origin: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 850px;
    height: 850px;
    max-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    background-image: url('curved-glass-gigapixel-standard v2-4x.jpg');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    z-index: -2;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.65) 0%, transparent 70%),
        linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    transition: background 0.3s ease-out;
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    max-width: 600px;
    margin-left: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: left;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
    line-height: 1.6;
    text-align: left;
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    margin-right: 0;
}

.hero-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 1.15rem;
    width: 100%;
    text-align: center;
    min-width: 180px;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 4.5rem 0;
    opacity: 1;
    transform: none;
    transition: none;
}

.section.visible {
    opacity: 1;
    transform: none;
}

/* Hero section is always visible */
#hero {
    opacity: 1 !important;
    transform: none !important;
}

/* Services section - background always visible, content fades in */
#services {
    opacity: 1 !important;
    background-color: var(--bg-light);
}

#services .section-header,
#services .services-menu {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#services.visible .section-header,
#services.visible .services-menu {
    opacity: 1;
    transform: translateY(0);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 1.5rem auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 1rem;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
    margin-top: -60px;
    padding-top: 60px;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    background-color: var(--secondary-color);
    margin-top: -60px;
    padding-top: 60px;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}


.google-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: 'Image Placeholder';
    color: var(--text-light);
    font-size: 1rem;
    position: absolute;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: left;
}

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

.contact-map-small {
    margin-top: 2rem;
}

.contact-map-small .google-map {
    height: 250px;
}

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

.services-category {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.services-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-light);
    margin-top: -60px;
    padding-top: 60px;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

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

.review-card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    align-self: center;
}

.review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.15rem;
}

.review-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.review-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}


.review-stars {
    color: #FFB800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.review-content {
    position: relative;
}

.review-card:has(.review-text:not(:has(+ .review-fade))) .review-fade,
.review-card:has(.review-text:not(:has(+ .review-fade))) .review-click-hint {
    display: none;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    max-height: 6.8em; /* ~4 lines */
    overflow: hidden;
}

.review-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color));
    pointer-events: none;
}

.review-click-hint {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
    opacity: 0.8;
}

.review-text-full {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.review-images {
    margin: 1.5rem 0;
}

.review-images-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.review-images-side-by-side {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.review-images-side-by-side img {
    width: 48%;
    max-width: 48%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 0;
    object-fit: cover;
}

.review-modal-body .review-images {
    margin-top: 1.5rem;
}

.review-modal-body .review-images img {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
    display: block;
}

.review-modal-body .review-images {
    margin-top: 1.5rem;
}

.review-modal-body .review-images img {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
    display: block;
}

.review-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.review-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
}

.review-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Review Modal */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    margin: 0;
}

.review-modal.active {
    display: flex;
}

.review-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 10000;
}

.review-modal-content {
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalFadeIn 0.3s ease-out;
    margin: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
    line-height: 1;
}

.review-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.review-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.review-modal-body {
    padding: 2rem;
}

.review-modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.review-modal-footer .review-link {
    font-size: 0.9rem;
    padding: 0.5rem 1.4rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50px;
    display: inline-block;
    margin-top: 0;
}

@media (max-width: 768px) {
    .review-modal-footer .review-link {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        border-radius: 40px;
    }
}

.review-modal-footer .review-link:hover {
    background-color: #0056b3;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
    margin-top: -60px;
    padding-top: 60px;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: left;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 280px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.6;
    font-style: italic;
}

.hours-day {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    min-width: 100px;
}

.hours-time {
    font-size: 1rem;
    color: var(--text-light);
}

.hours-row.closed .hours-time {
    color: var(--text-light);
}

.contact-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    min-width: 200px;
}

.contact-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo p {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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


/* Responsive Design */
@media (max-width: 968px) {
    .nav-logo span {
        display: inline;
    }
    
    /* improved mobile nav - dropdown panel */
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 1rem;

        width: 220px;
        height: auto;

        display: flex;
        flex-direction: column;
        gap: 0.8rem;

        padding: 1.2rem;

        background: rgba(45,45,45,0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);

        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;

        transition: all .25s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    /* nicer hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title,
    .hero-tagline {
        text-align: center;
    }

    .hero-action {
        align-items: center;
    }
    
    .btn-primary {
        width: auto;
        min-width: 200px;
    }
    
    .hero-link {
        text-align: center;
    }

    .services,
    .about,
    .gallery,
    .contact {
        margin-top: -40px;
        padding-top: 50px;
        padding-bottom: 5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .contact-action {
        align-items: center;
        width: 100%;
    }
    
    .contact-disclaimer {
        text-align: center;
    }

    .services-menu {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-modal-content {
        max-width: 95%;
        max-height: 95vh;
        padding: 0;
    }
    
    .review-modal-header,
    .review-modal-body,
    .review-modal-footer {
        padding: 1.5rem;
    }
    
    .review-modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .contact-action {
        width: 100%;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 568px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0.75rem 1.25rem 0.75rem 0.9rem;
    }
    
    .nav-logo-img {
        height: 18px;
    }
    
    .nav-logo {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 520px;
        height: 520px;
        max-height: 520px;
        padding-top: 55px;
        margin-top: 0;
    }

    .hero-container {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .services,
    .about,
    .gallery,
    .contact {
        margin-top: -30px;
        padding-top: 40px;
        padding-bottom: 4.5rem;
    }

    .services-menu {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-modal-content {
        max-width: 95%;
        max-height: 95vh;
        padding: 0;
    }
    
    .review-modal-header,
    .review-modal-body,
    .review-modal-footer {
        padding: 1.5rem;
    }
    
    .review-modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* footer links horizontal on mobile */
    .footer-links ul {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* ================= MOBILE IMPROVEMENTS ================= */

@media (max-width: 768px) {

    /* Smaller overall typography */
    body {
        font-size: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* -------- REVIEWS: carousel with peek -------- */

    .reviews-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.9rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1.5rem 1.5rem;
        margin: 0 -1.5rem;
        scroll-padding-left: 1.5rem;
        cursor: grab;
    }

    .reviews-grid:active {
        cursor: grabbing;
    }

    .review-card {
        min-width: 78%;
        max-width: 78%;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 1.4rem 1.3rem 1.5rem;
        border-radius: 16px;
        background: var(--secondary-color);
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .review-name {
        font-size: 0.95rem;
    }

    .review-text {
        font-size: 0.88rem;
        line-height: 1.55;
        max-height: 7em;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
    }
    
    .review-header {
        gap: 0.75rem;
        margin-bottom: 0.9rem;
    }

    /* Dim the peeking cards on the edges */
    .reviews-grid::after {
        content: '';
        min-width: 0.1rem;
        flex-shrink: 0;
    }

    /* -------- SERVICES: single column on mobile -------- */

    .services-menu {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .services-category {
        padding: 1.4rem;
    }

    .services-category-title {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .services-list li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* -------- ABOUT TEXT -------- */

    .about-text h3 {
        white-space: nowrap;
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        text-align: center;
    }

    .about-text {
        background-color: var(--secondary-color);
        border-radius: 12px;
        padding: 1.6rem 1.8rem;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* -------- CONTACT -------- */

    .contact-item p {
        font-size: 0.95rem;
    }

    .hours-day,
    .hours-time {
        font-size: 0.9rem;
    }

    /* -------- CONTACT: Address & Phone side by side, Hours below -------- */
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "address phone"
            "hours  hours";
        gap: 1.8rem 2rem;
        align-items: start;
        max-width: 360px;
        margin: 0 auto;
    }

    .contact-item:nth-child(1) { grid-area: address; }
    .contact-item:nth-child(2) { 
        grid-area: phone; 
        text-align: right;
    }
    .contact-item:nth-child(3) { grid-area: hours; }

    .contact-item {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p,
    .contact-item a {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-item:nth-child(3) {
        text-align: left;
        background-color: var(--secondary-color);
        border-radius: 12px;
        padding: 1.4rem 1.6rem;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-item:nth-child(3) h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .hours-list {
        margin: 0;
        max-width: 100%;
    }

    .hours-day {
        text-align: left;
    }

    /* hide map in About on mobile */
    .about-image {
        display: none;
    }

    /* keep About text full width */
    .about-content {
        grid-template-columns: 1fr;
    }

    /* keep hero title on one line and scale */
    .hero-title {
        white-space: nowrap;
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    /* slightly smaller hero call button */
    .hero .btn-primary {
        padding: 0.85rem 1.9rem;
        font-size: 1rem;
        min-width: 170px;
    }

    /* slightly smaller contact call button */
    .contact-action .btn-primary {
        padding: 0.9rem 2.1rem;
        font-size: 0.98rem;
        min-width: 180px;
    }

}

/* Floating call button */

.floating-call {
    position: fixed;
    bottom: 22px;
    right: 22px;

    width: 56px;
    height: 56px;

    background: #007AFF;
    color: white;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    z-index: 999;
    transition: all .25s ease;
    box-shadow: 0 4px 18px rgba(0, 122, 255, 0.45), 0 2px 8px rgba(0,0,0,0.2);
}

/* SVG phone icon inside the button */
.floating-call::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: white;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.47 11.47 0 003.58.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.47 11.47 0 00.57 3.58 1 1 0 01-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.47 11.47 0 003.58.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.47 11.47 0 00.57 3.58 1 1 0 01-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.floating-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(0, 122, 255, 0.55), 0 4px 12px rgba(0,0,0,0.25);
}

@media (max-width: 360px) {
    .contact-info {
        grid-template-columns: 1fr;
        grid-template-areas:
            "address"
            "phone"
            "hours";
    }
}

@media (min-width: 900px) {
    .floating-call {
        display: none;
    }
}

@media (min-width:900px){
    .floating-call{
        display:none;
    }
}

/* Mobile-specific review modal & hero tweaks + hide scrollbar for swipe reviews */
@media (max-width: 768px) {
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    /* Parallax effect for hero background mobile */
    /* -------- HERO: pure CSS parallax on mobile -------- */
    .hero {
        overflow: hidden;
    }
    
    .hero-background {
        top: 0;
        height: 100%;
        background-attachment: scroll;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        transition: none;
        animation: none;
    }
    
    .hero-vignette {
        background:
            radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.85) 0%, transparent 75%),
            linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
    }

    .review-modal {
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .review-modal-content {
        display: flex;
        flex-direction: column;
        width: 92%;
        max-width: 92%;
        height: auto;
        max-height: 65vh;
        border-radius: 16px;
        overflow: hidden;
        margin: auto;
        position: relative;
        top: -5vh;
    }

    .review-modal-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 72vh;
        max-height: 72vh;
        border-radius: 16px;
        overflow: hidden;
        margin: 0;
    }

    .review-modal-header {
        flex-shrink: 0;
        padding: 1.2rem 1.5rem 1rem;
        border-bottom: 1px solid var(--border-color);
        background: var(--secondary-color);
    }

    .review-modal-body {
        flex: 1 1 auto;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        padding: 1.2rem 1.5rem;
        min-height: 0;
    }

    .review-modal-footer {
        flex-shrink: 0;
        padding: 1rem 1.5rem 1.5rem;
        border-top: 1px solid var(--border-color);
        background: var(--secondary-color);
    }
}


