:root {
    --primary-color: #2d2d2d;
    --primary-dark: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #c9a962;
    --accent-hover: #dfc078;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #888888;
    --bg-charcoal: #2d2d2d;
    --bg-dark: #1a1a1a;
    --bg-card: #383838;
    --border-light: rgba(255,255,255,0.1);
    --border-accent: rgba(201, 169, 98, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
    background: var(--bg-charcoal);
}

/* Background Overlay */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
}

.home-page .bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.85);
}

.services-page .bg-overlay,
.service-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1920&q=80');
}

.work-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80');
}

.bathroom-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1920&q=80');
}

.decking-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1591825729269-caeb344f6df2?w=1920&q=80');
}

.landscaping-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1920&q=80');
}

.reviews-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1920&q=80');
}

.contact-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920&q=80');
}

.terms-page .bg-overlay,
.privacy-page .bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80');
}

/* Add dark overlay to all background images */
.services-page .bg-overlay::before,
.service-page .bg-overlay::before,
.work-page .bg-overlay::before,
.bathroom-page .bg-overlay::before,
.decking-page .bg-overlay::before,
.landscaping-page .bg-overlay::before,
.reviews-page .bg-overlay::before,
.contact-page .bg-overlay::before,
.terms-page .bg-overlay::before,
.privacy-page .bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.85);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    gap: 2rem;
}

.glass-nav .logo {
    flex-shrink: 0;
}

.glass-nav .nav-links {
    flex: 1;
    justify-content: center;
}

.glass-nav .nav-phone {
    flex-shrink: 0;
}

.glass-nav.scrolled {
    padding: 1rem 5%;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-phone {
    display: none;
    color: #c9a962 !important;
    font-size: 1.25rem;
    transition: var(--transition);
}

.nav-phone:hover {
    color: #dfc078 !important;
    transform: scale(1.1);
}

@media (min-width: 769px) {
    .nav-phone {
        display: block;
    }
    .nav-toggle {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-color), #b8943f);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 700;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    background: rgba(201, 169, 98, 0.1);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 24px;
}

.nav-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: rgba(201, 169, 98, 0.15);
    color: var(--accent-color);
    padding-left: 1.25rem;
}

.dropdown a::after {
    display: none;
}

main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 8%;
    text-align: center;
    position: relative;
}

#toolsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.hero h1 {
    font-size: 3.75rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.location {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 150%;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Sections */
section {
    padding: 5rem 8%;
}

.about-preview {
    padding: 6rem 8%;
    background: var(--bg-dark);
}

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

.about-preview h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-preview p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* Services */
.services-preview,
.gallery-preview,
.reviews-preview,
.cta,
.facebook-section,
.google-reviews-section {
    padding: 6rem 8%;
    background: var(--bg-charcoal);
}

.services-preview h2,
.gallery-preview h2,
.reviews-preview h2,
.facebook-section h2,
.reviews-grid-section {
    padding: 6rem 8%;
    background: var(--bg-charcoal);
}

.reviews-grid-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.reviews-grid .review-card {
    min-width: auto;
}

.owner-response {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(201, 169, 98, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
}

.owner-response strong {
    color: var(--accent-color);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.owner-response p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.review-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.service-card ul li::before {
    content: "• ";
    color: var(--accent-color);
}

.reviews-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #b8943f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card > i {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-color), #b8943f);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--bg-dark);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.view-all-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Gallery */
.gallery-grid,
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-overlay span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Reviews */
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.6s ease;
    gap: 2rem;
    padding: 1rem 0;
}

.review-card {
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.stars {
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-source {
    width: 24px;
    height: 24px;
}

.review-text {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

/* CTA */
.cta {
    text-align: center;
    background: var(--bg-dark);
}

.cta h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Page Hero */
.page-hero {
    padding: 10rem 8% 4rem;
    text-align: center;
    background: var(--bg-dark);
}

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

.page-hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.hero-btn-spacing {
    margin-top: 1.5rem;
}

/* Gallery Categories */
.gallery-category {
    padding: 4rem 8%;
    background: var(--bg-charcoal);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #b8943f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.category-title h2 {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
}

.category-title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.5;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.category-gallery .gallery-item {
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.category-gallery .gallery-item img {
    object-fit: cover;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.category-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Service Category */
.service-category {
    padding: 4rem 5%;
    background: var(--bg-charcoal);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 1rem;
}

.service-gallery-grid .gallery-item {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.service-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.service-gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}

.service-content h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-content h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1rem;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contact */
.contact-section {
    padding: 6rem 5%;
    background: var(--bg-charcoal);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent-color), #b8943f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item > div {
    flex: 1;
}

.contact-item h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-centered {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-centered .contact-info {
    text-align: center;
    padding: 3rem 2rem;
}

.contact-centered .contact-item {
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.social-links-centered {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.glass-input {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.glass-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.glass-input::placeholder {
    color: var(--text-muted);
}

select.glass-input option {
    background: var(--bg-card);
    color: var(--text-light);
}

.map-container {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
}

/* Legal */
.legal-content {
    padding: 4rem 8%;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-charcoal);
}

.legal-content h2 {
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: var(--accent-color);
}

.last-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* Clients Section */
.clients-section {
    padding: 6rem 8%;
    background: var(--bg-charcoal);
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-left {
    position: sticky;
    top: 100px;
}

.clients-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.clients-left h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
}

.clients-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent-color);
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

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

.clients-right {
    position: relative;
}

.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    position: sticky;
    top: calc(100px + var(--stack-index, 0) * 60px);
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .contact-section {
        padding: 4rem 5%;
    }
    
    .contact-centered .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

.local-guide {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.testimonial-author h4 {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.rating-value {
    font-weight: 600;
    color: var(--text-light);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-screenshot {
    width: 100%;
    border-radius: 8px;
    margin: 0.5rem 0;
    border: 1px solid var(--border-light);
}

@media (max-width: 480px) {
    .review-screenshot {
        max-height: 150px;
        object-fit: cover;
    }
}

/* Facebook */
.facebook-videos-section {
    padding: 6rem 8%;
    background: var(--bg-dark);
    text-align: center;
}

.facebook-videos-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.facebook-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.facebook-embed-full {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

/* Footer */
.glass-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 8% 1.5rem;
    margin-top: 0;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    margin-bottom: 0;
    border: 1px solid var(--border-light);
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: inline;
    margin-bottom: 0;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-content p {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .clients-left {
        position: relative;
        top: 0;
    }

    .testimonial-card {
        position: relative;
        top: 0 !important;
    }

    .review-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 1024px) {
    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-radius: 0;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        display: none;
        margin-top: 0;
    }

    .nav-item:hover .dropdown {
        transform: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 0.75rem 2rem;
        background: transparent;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    section,
    .services-preview,
    .gallery-preview,
    .reviews-preview,
    .cta,
    .contact-section,
    .legal-content,
    .clients-section,
    .facebook-videos-section,
    .google-reviews-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .page-hero {
        padding: 8rem 5% 3rem;
    }

    .about-preview h2,
    .services-preview h2,
    .gallery-preview h2,
    .reviews-preview h2,
    .page-hero h1,
    .clients-left h2,
    .facebook-videos-section h2 {
        font-size: 1.75rem;
    }

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

    .review-card {
        min-width: 100%;
    }

    .services-grid,
    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 9rem 5% 3rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-category {
        padding: 3rem 5%;
    }

    .gallery-grid,
    .gallery-masonry,
    .category-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .category-gallery .gallery-item img {
        height: 220px;
    }
    
    .service-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-gallery-grid .gallery-item {
        height: 220px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .clients-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .clients-actions {
        flex-direction: column;
    }

    .clients-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-title h2 {
        text-align: center;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 8rem 5% 3rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-category {
        padding: 3rem 5%;
    }
    
    .category-gallery,
    .service-gallery-grid {
        gap: 1rem;
        padding: 0.25rem;
    }
    
    .category-gallery .gallery-item img,
    .service-gallery-grid .gallery-item img {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay span {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}
