/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

/* Global Link Reset */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    z-index: 9999;
    padding: 16px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text strong {
    font-size: 15px;
    margin-bottom: 2px;
    display: block;
}

.cookie-text p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #fff;
    color: #1a1a1a;
}

.cookie-btn-primary:hover {
    background: #f0f0f0;
}

.cookie-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
}

.cookie-btn-secondary:hover {
    background: #333;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #1a1a1a;
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.btn-full {
    width: 100%;
}

/* Header with Animation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.99);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: height 0.3s ease;
}

.header.scrolled .header-content {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.header.scrolled .logo-icon {
    width: 38px;
    height: 38px;
}

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

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

.logo-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.header.scrolled .logo-title {
    font-size: 15px;
}

.logo-subtitle {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #1a1a1a;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #1a1a1a;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    gap: 4px;
}

.mobile-nav-link {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.mobile-cta {
    margin-top: 8px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 40px 0 140px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-badge svg {
    color: #888;
}

.hero-title {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    letter-spacing: -1px;
}

.hero-title .text-accent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 25%, #e74c3c 50%, #ff6b6b 75%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(231, 76, 60, 0.4), 0 2px 4px rgba(0,0,0,0.3);
    animation: rubyShimmer 3s ease-in-out infinite;
}

@keyframes rubyShimmer {
    0%, 100% {
        filter: brightness(1) saturate(1);
        text-shadow: 0 0 30px rgba(231, 76, 60, 0.4), 0 2px 4px rgba(0,0,0,0.3);
    }
    50% {
        filter: brightness(1.3) saturate(1.2);
        text-shadow: 0 0 40px rgba(255, 107, 107, 0.6), 0 2px 4px rgba(0,0,0,0.3);
    }
}

.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.03);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-gray {
    background: #f8f9fa;
}

.section-dark {
    background: linear-gradient(180deg, #1a1a1a, #252525);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header-light .section-title {
    color: #fff;
}

.section-header-light .section-subtitle {
    color: #888;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #eee;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge-dark {
    background: rgba(255,255,255,0.1);
    color: #ccc;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Services Preview Row */
.services-preview-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.service-preview-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 28px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-width: 140px;
}

.service-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.service-preview-icon {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-preview-card:hover .service-preview-icon {
    background: #1a1a1a;
    color: #fff;
}

.service-preview-card h3 {
    font-size: 14px;
    font-weight: 600;
}

.services-cta {
    text-align: center;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #555;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.about-feature:hover .about-feature-icon {
    background: #1a1a1a;
    color: #fff;
}

.about-feature span {
    font-size: 13px;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px;
    display: block;
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.about-badge-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-badge-label {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

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

.google-badge {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #4285f4;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 14px;
    color: #bbb;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-location {
    font-size: 12px;
    color: #666;
}

/* Google Reviews CTA */
.google-reviews-cta {
    text-align: center;
    margin-top: 32px;
}

.btn-google-reviews {
    background: #fff;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.btn-google-reviews:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-google-reviews svg {
    color: #4285f4;
}

.btn-google-reviews:hover svg {
    color: #4285f4;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-track .testimonial-card {
    min-width: calc(33.333% - 14px);
    margin-right: 20px;
}

@media (max-width: 1024px) {
    .testimonials-track .testimonial-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .testimonials-track .testimonial-card {
        min-width: 100%;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    font-size: 15px;
    color: #666;
    margin-top: 16px;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
}

.contact-item h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #1a1a1a;
}

.contact-map {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background: #eee;
    position: relative;
}

.map-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #fff;
    color: #1a1a1a;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid #1a1a1a;
}

.map-link:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-form-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #fff;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1a1a1a;
}

.form-checkbox label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.form-checkbox a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
}

.form-note {
    font-size: 11px;
    color: #999;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 32px 16px;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.form-success p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.footer-logo-title {
    font-size: 16px;
    font-weight: 700;
}

.footer-logo-subtitle {
    font-size: 10px;
    color: #666;
}

.footer-desc {
    font-size: 13px;
    color: #888;
    max-width: 350px;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-contact a, .footer-contact li {
    font-size: 13px;
    color: #888;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: #666;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #333;
    transform: translateY(-3px);
}

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

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    text-align: center;
}

.page-header .section-badge {
    background: rgba(255,255,255,0.1);
    color: #ccc;
}

.page-header h1 {
    font-size: clamp(30px, 4vw, 42px);
    margin: 12px 0 14px;
    font-weight: 800;
}

.page-header p {
    font-size: 15px;
    color: #aaa;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid (Leistungen page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: transparent;
}

.service-icon {
    width: 46px;
    height: 46px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #1a1a1a;
    color: #fff;
}

.service-title {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}

.service-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-img-container {
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img-container:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 60px 0;
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 12px;
    font-weight: 800;
}

.cta-content p {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

    .about-image {
        order: -1;
    }

    .about-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
    }

    .about-img-wrapper img {
        height: 380px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

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

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

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

    .stat-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
    }

    .services-preview-row {
        gap: 10px;
    }

    .service-preview-card {
        min-width: calc(50% - 10px);
        padding: 16px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .section {
        padding: 60px 0;
    }
    
    .about-img-wrapper img {
        height: 320px;
    }
    
    .about-badge {
        padding: 12px 18px;
        bottom: 16px;
        left: 16px;
    }
    
    .about-badge-value {
        font-size: 28px;
    }
    
    .about-badge-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .service-preview-card {
        min-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }
}
