:root {
    --bg-dark: #0d131a; /* Deep charcoal blue */
    --accent-teal: #2dd4bf;
    --accent-teal-light: #99f6e4;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 19, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--accent-teal);
    text-decoration: none;
}

.nav-links {
    display: flex; list-style: none; gap: 32px; align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--accent-teal-light); }

.nav-cta {
    background: var(--accent-teal);
    color: var(--bg-dark) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 20px; position: relative; z-index: 1001;
}

.hamburger span {
    display: block; width: 100%; height: 2px; background: var(--text-primary);
    position: absolute; left: 0; transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 992px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: rgba(13, 19, 26, 0.98);
        flex-direction: column; justify-content: center;
        transition: 0.5s;
        backdrop-filter: blur(20px);
    }
    .nav-links.open { right: 0; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: linear-gradient(rgba(13, 19, 26, 0.7), rgba(13, 19, 26, 0.7)), url('https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1rem;
    color: var(--accent-teal-light);
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--accent-teal);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--accent-teal-light);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
}

/* Glass Cards */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-teal);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
}

.about .glass-card {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
    border-left: 1px solid var(--glass-border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--accent-teal);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
    .about-stats { border-left: none; border-top: 1px solid var(--glass-border); flex-direction: row; justify-content: space-around; padding-top: 2rem; }
}

/* Grid & Services */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.price-tag {
    display: inline-block;
    background-color: var(--accent-teal);
    color: var(--bg-dark);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-teal-light);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.5s;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-teal);
}

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

.review-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.review-card .stars {
    font-size: 1.3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.review-card .reviewer {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact & Location */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
}

.map-container {
    padding: 0.5rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-primary);
}

.hours-table tr.closed td {
    color: var(--accent-teal);
}

.phone-link {
    color: var(--accent-teal);
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 350px;
}

.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links h4, .footer-social h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-teal);
    color: var(--bg-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: 0.3s;
}

.back-to-top:hover {
    background: var(--accent-teal);
    color: var(--bg-dark);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.animate-up:nth-child(2) { animation-delay: 0.2s; }
.animate-up:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1; transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
}
