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

:root {
    --charcoal: #1a1a2e;
    --charcoal-dark: #0f0f1e;
    --beige: #D4AF8C;
    --beige-light: #E8D5C4;
    --beige-dark: #B8956A;
    --beige-gold: #C9A882;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
}

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(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ensure touch targets are adequate for mobile */
@media (max-width: 768px) {
    .btn, .btn-nav, .btn-hero, .contact-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

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

/* Navigation */
.navbar {
    background: #0f0f1e;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
}

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

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
}

.btn-nav {
    background: var(--charcoal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
    display: inline-block;
}

.btn-nav:hover {
    background: var(--charcoal-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('jani-king-cleaning-dumbells-at-the-gym.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) saturate(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
}

.hero-left {
    color: var(--white);
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 2rem;
    text-align: center;
}

.hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin: 0 auto 1.5rem;
    max-width: 600px;
    opacity: 0.95;
    line-height: 1.7;
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

.hero-subtitle-small {
    font-size: 0.95rem;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    opacity: 0.85;
    line-height: 1.6;
    color: var(--white);
    font-weight: 400;
    font-style: italic;
    text-align: center;
}

.btn-hero {
    background: var(--charcoal);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.hero-right {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    z-index: 3;
}

.bee-graphic {
    position: absolute;
    top: 20%;
    right: 25%;
    z-index: 3;
}

.bee-svg {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 140, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.testimonial-box {
    background: #1a1a2e;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    max-width: 320px;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.stars {
    font-size: 1.5rem;
    color: var(--beige-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    filter: brightness(1.2);
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--beige-gold);
    font-weight: 500;
}

.btn-primary {
    background: var(--beige);
    color: var(--charcoal);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--beige-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--black);
}

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

/* Client Logos Section */
.clients-section {
    padding: 60px 0;
    background: var(--charcoal);
    color: var(--white);
}

/* Before/After Section */
.before-after-section {
    padding: 80px 0;
    background: var(--charcoal);
    color: var(--white);
}

.before-after-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.before-after-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    opacity: 0.95;
}

.before-after-gallery-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.before-after-item-row {
    flex: 1 1 280px;
    min-width: 280px;
    max-width: 400px;
}

.before-after-image-wrapper {
    width: 100%;
    border: 3px solid var(--white);
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.before-after-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Prevent image overflow on mobile */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
}

.before-after-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    width: 100%;
    position: relative;
}

.before-after-split.vertical {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.before-half {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('jani-king-cleaning-dumbells-at-the-gym.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) contrast(0.7) grayscale(0.3);
    overflow: hidden;
}

.before-half::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.after-half {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('jani-king-cleaning-dumbells-at-the-gym.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(1.3) contrast(1.2) saturate(1.1);
    overflow: hidden;
}

.after-half::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212,175,140,0.05) 0%, rgba(255,255,255,0.1) 100%);
}

.before-label,
.after-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.after-label {
    background: var(--beige);
    color: var(--charcoal);
}

.clients-title {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    opacity: 0.9;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.client-logo:hover {
    opacity: 1;
}

.logo-subtext {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.8;
    white-space: normal;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--beige-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--beige);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Before/After Gallery */
.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

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

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 250px;
}

.before-image,
.after-image {
    position: relative;
    background: var(--gray-light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.before-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.after-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212,175,140,0.2) 0%, rgba(212,175,140,0.05) 100%);
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.after-image .label {
    background: var(--beige);
    color: var(--black);
}

.about-conclusion {
    text-align: center;
    margin-top: 4rem;
}

.about-conclusion .section-title {
    margin-bottom: 1.5rem;
}

.about-conclusion .about-text {
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--beige);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a1a2e;
    text-align: center;
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-method {
    padding: 2rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-link {
    color: var(--beige);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--beige-light);
}

.contact-phone {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--beige);
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--beige);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--beige);
}

.footer-copyright {
    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;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        position: relative;
        right: auto;
        top: auto;
        align-items: center;
        justify-content: center;
        margin-top: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .navbar {
        background: #0f0f1e;
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
    }

    body {
        padding-top: 70px;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .logo-icon {
        height: 40px;
        width: auto;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle span {
        background: var(--white);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--charcoal);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        transition: left 0.3s;
        gap: 1rem;
        align-items: flex-start;
    }

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

    .btn-nav {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 70vh;
        padding: 20px 0 40px;
        margin-top: 0;
    }

    .hero-container {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .hero-content {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .hero-left {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero-subtitle-small {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .btn-hero {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .before-after-section {
        padding: 60px 0;
    }

    .before-after-headline {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .before-after-text {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    .before-after-gallery-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .before-after-item-row {
        max-width: 100%;
        min-width: 100%;
        flex: 1 1 100%;
    }

    .before-after-image-wrapper {
        border-width: 2px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-method h3 {
        font-size: 1.1rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    body {
        padding-top: 65px;
    }

    .logo-icon {
        height: 35px;
        width: auto;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.55rem;
    }

    .hero {
        min-height: 60vh;
        padding: 70px 0 50px;
    }

    .hero-container {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle-small {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .before-after-section {
        padding: 50px 0;
    }

    .before-after-headline {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .before-after-text {
        font-size: 0.9rem;
        padding: 0 12px;
        margin-bottom: 2rem;
    }

    .before-after-gallery-row {
        padding: 0 12px;
        gap: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .section-title {
        font-size: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
        padding: 0 12px;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .contact-method h3 {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }

    .footer {
        padding: 35px 0 15px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85rem;
    }
}
