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

:root {
    --primary: #0077b6;
    --primary-dark: #005f94;
    --secondary: #00b4d8;
    --accent: #90e0ef;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --gradient: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    --radius: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #005f94;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge:hover {
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
    transform: translateY(-2px);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    color: var(--dark);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.5);
}

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

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

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-top: 30px;
}

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

/* Stats Section */
.stats {
    background: var(--dark);
    padding: 80px 20px;
    color: var(--white);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 119, 182, 0.3) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 180, 216, 0.3);
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

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

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0a2540, #185a9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 182, 0.2);
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}
    line-height: 1.6;
}

.services-preview .container {
    text-align: center;
}

/* Reviews */
.reviews {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a2540 0%, #185a9d 50%, #43c6ac 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.reviews h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.reviews-embed {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.reviews-note {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

/* Areas */
.areas {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    color: var(--dark);
    position: relative;
}

.areas h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.areas-grid span {
    background: var(--white);
    padding: 18px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.areas-grid span:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.2);
}

/* Partners */
.partners {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.partners h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.partners-grid img {
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) opacity(0.7);
}

.partners-grid img:hover {
    opacity: 1;
    transform: scale(1.15) rotate(2deg);
    filter: brightness(0) opacity(1) drop-shadow(0 5px 15px rgba(0, 180, 216, 0.4));
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a2540, #1a1a2e);
    color: var(--white);
    padding: 80px 20px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #0077b6);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 12px;
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

.social-links a.social-facebook { background: #1877F2; border-color: #1877F2; }
.social-links a.social-facebook:hover { background: #155db5; box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4); }

.social-links a.social-nextdoor { background: #03B600; border-color: #03B600; }
.social-links a.social-nextdoor:hover { background: #029900; box-shadow: 0 8px 20px rgba(3, 182, 0, 0.4); }

.social-links a.social-google { background: #4285F4; border-color: #4285F4; }
.social-links a.social-google:hover { background: #3367d6; box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0a2540 0%, #185a9d 50%, #43c6ac 100%);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
    animation: fadeInUp 0.6s ease-out;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Services Page */
.services-main {
    padding: 80px 20px;
}

.service-category {
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out backwards;
}

.service-category:nth-child(1) { animation-delay: 0.1s; }
.service-category:nth-child(2) { animation-delay: 0.2s; }
.service-category:nth-child(3) { animation-delay: 0.3s; }
.service-category:nth-child(4) { animation-delay: 0.4s; }
.service-category:nth-child(5) { animation-delay: 0.5s; }
.service-category:nth-child(6) { animation-delay: 0.6s; }

.service-header {
    margin-bottom: 30px;
}

.service-header h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-header .service-desc {
    color: var(--gray);
    font-size: 16px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary);
}

.service-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-item p {
    color: var(--gray);
    font-size: 14px;
}

.cta-section {
    background: linear-gradient(135deg, #0a2540, #185a9d);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 193, 7, 0.2) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

/* Photos Page */
.photos-main {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
}

.gallery-section {
    margin-bottom: 80px;
}

.gallery-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: var(--white);
    font-weight: 500;
}

/* Before/After */
.before-after {
    padding: 100px 20px;
    background: linear-gradient(180deg, #e9ecef, #f8f9fa);
}

.before-after h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

/* Before/After Slider */
.ba-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.ba-pair img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
}

.ba-before { position: relative; }
.ba-after { position: relative; }

/* Before/After Slider */
.ba-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ba-item {
    margin-bottom: 40px;
}

.ba-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    cursor: ew-resize;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
}

.ba-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
    z-index: 1;
}

.ba-after {
    z-index: 0;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--white);
}

.ba-handle span {
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
}

.ba-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--dark);
    color: var(--white);
    border-radius: 0 0 12px 12px;
    margin-top: -12px;
    position: relative;
    z-index: 5;
}

.ba-labels span {
    font-weight: 600;
    font-size: 14px;
}

.ba-pair {
    position: relative;
}

/* Contact Page */
.contact-main {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-section h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
}

.info-content h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray);
}

.hours-grid {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.hours-grid div {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: var(--light);
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .cta-button {
        display: none;
    }

    .hero {
        padding: 80px 15px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .services-preview {
        padding: 60px 15px;
    }

    .services-preview h2 {
        font-size: 28px;
    }

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

    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .reviews {
        padding: 60px 15px;
    }

    .reviews h2 {
        font-size: 28px;
    }

    .reviews-embed {
        padding: 30px 20px;
    }

    .reviews-note {
        font-size: 20px;
    }

    .areas {
        padding: 60px 15px;
    }

    .areas h2 {
        font-size: 28px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .areas-grid span {
        padding: 12px 10px;
        font-size: 13px;
    }

    .partners {
        padding: 60px 15px;
    }

    .partners-grid {
        flex-direction: column;
        gap: 20px;
    }

    .footer {
        padding: 50px 15px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 18px;
    }

    .page-hero {
        padding: 60px 15px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .services-main {
        padding: 40px 15px;
    }

    .service-header h2 {
        font-size: 24px;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 20px;
    }

    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .photos-main {
        padding: 40px 15px;
    }

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

    .gallery-item img {
        height: 200px;
    }

    .before-after {
        padding: 40px 15px;
    }

    .before-after h2 {
        font-size: 28px;
    }

    .ba-slider {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ba-container {
        height: 250px;
    }

    .contact-main {
        padding: 40px 15px;
    }

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

    .contact-form-section h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-info-section h3 {
        font-size: 20px;
    }
}

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

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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