/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header-phone:hover {
    background: rgba(231, 76, 60, 0.05);
    border-color: rgba(231, 76, 60, 0.1);
    transform: translateY(-1px);
}

.phone-icon {
    color: #e74c3c;
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    line-height: 1;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-top: 2px;
}

/* Header Mobile */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-phone {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .phone-info {
        display: none;
    }
    
    .phone-icon {
        width: 24px;
        height: 24px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #fafbfc 0%, #e8eef5 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Badges */
.image-badges {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.google-badge {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    min-width: 240px;
    font-family: "Google Sans", Arial, sans-serif;
    position: relative;
}

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

.google-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.google-icon {
    flex-shrink: 0;
}

.rating-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #3c4043;
}

.stars {
    display: flex;
    gap: 1px;
    margin-left: 4px;
}

.star {
    color: #fbbc05;
    font-size: 16px;
    line-height: 1;
}

.review-text {
    font-size: 0.9rem;
    color: #5f6368;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Verified Badge */
.verified-icon {
    color: #4285f4;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: white;
    flex-shrink: 0;
    background: #e74c3c;
    border-radius: 50%;
    padding: 4px;
    width: 22px;
    height: 22px;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
}

.benefit-item span {
    font-weight: 500;
    color: #2c3e50;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    justify-content: flex-start;
}

.btn-call {
    background: #27ae60;
    color: white;
}

.btn-call:hover {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.25);
}

.btn-message {
    background: #3498db;
    color: white;
    border: 2px solid transparent;
}

.btn-message:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.25);
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-action {
    font-weight: 600;
    font-size: 1rem;
}

.phone-number {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 1px;
    letter-spacing: 0.5px;
}

/* Desktop Contact Section */
.desktop-contact-section {
    margin-top: 40px;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    max-width: 500px;
}

.contact-form-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

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

.hero-contact-form input,
.hero-contact-form textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.hero-contact-form input:focus,
.hero-contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.call-button-container {
    margin-top: 20px;
    text-align: center;
}

.btn-hero-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
    font-size: 1rem;
    width: 100%;
    max-width: 500px;
    min-height: 70px;
}

.btn-hero-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.call-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-action {
    font-weight: 700;
    font-size: 1.3rem;
}

.call-number {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-top: 3px;
    font-weight: 600;
}

.mobile-only {
    display: none;
}

/* Mobile Conversion Button */
.mobile-conversion-button {
    display: none;
    text-align: center;
    margin: 32px 0 24px 0;
}

.btn-conversion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 2px solid transparent;
}

.btn-conversion:hover,
.btn-conversion:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #229954, #1e8449);
}

.conversion-icon {
    animation: pulse 2s infinite;
}

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

.conversion-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: #ffffff;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    text-align: left;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e74c3c;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Services CTA Buttons */
.services-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-services-desktop {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.btn-services-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.services-icon {
    flex-shrink: 0;
}

.services-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-action {
    font-size: 1.1rem;
    font-weight: 700;
}

.services-number {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 2px;
    font-weight: 500;
}

.btn-services-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-services-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.services-icon-mobile {
    flex-shrink: 0;
}

/* Services Mobile */
@media (max-width: 768px) {
    .services {
        padding: 60px 15px;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .services-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .service-item {
        padding: 16px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .services-image {
        order: -1;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .services-image img {
        border-radius: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Services CTA Mobile Responsive */
    .btn-services-desktop {
        display: none;
    }
    
    .btn-services-mobile {
        display: flex;
    }
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: #f8f9fa;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.process-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.process-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Process CTA Buttons */
.process-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-process-desktop {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.btn-process-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.process-icon {
    flex-shrink: 0;
}

.process-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-action {
    font-size: 1.1rem;
    font-weight: 700;
}

.process-number {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 2px;
    font-weight: 500;
}

.btn-process-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-process-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.process-icon-mobile {
    flex-shrink: 0;
}

/* Process Mobile */
@media (max-width: 768px) {
    .process {
        padding: 60px 15px;
    }
    
    .process-text h2 {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 24px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    /* Process CTA Mobile Responsive */
    .btn-process-desktop {
        display: none;
    }
    
    .btn-process-mobile {
        display: flex;
    }
}

/* Aufsperrdienst Section */
.aufsperrdienst {
    padding: 80px 20px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

.aufsperrdienst-content {
    max-width: 1200px;
    margin: 0 auto;
}

.aufsperrdienst-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.aufsperrdienst-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.aufsperrdienst-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

.aufsperrdienst-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aufsperrdienst-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.aufsperrdienst-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: #fafbfc;
    padding: 30px 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e74c3c;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Aufsperrdienst CTA Buttons */
.aufsperrdienst-cta {
    text-align: center;
}

.btn-aufsperrdienst-desktop {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.btn-aufsperrdienst-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.aufsperrdienst-icon {
    flex-shrink: 0;
}

.aufsperrdienst-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aufsperrdienst-action {
    font-size: 1.1rem;
    font-weight: 700;
}

.aufsperrdienst-number {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 2px;
    font-weight: 500;
}

.btn-aufsperrdienst-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-aufsperrdienst-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.aufsperrdienst-icon-mobile {
    flex-shrink: 0;
}

/* Aufsperrdienst Mobile */
@media (max-width: 768px) {
    .aufsperrdienst {
        padding: 60px 15px;
    }
    
    .aufsperrdienst-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .aufsperrdienst-text h2 {
        font-size: 2rem;
    }
    
    .aufsperrdienst-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .aufsperrdienst-image {
        order: -1;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .aufsperrdienst-image img {
        border-radius: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        max-width: none;
    }
    
    .aufsperrdienst-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 24px 20px;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 15px;
        width: 50px;
        height: 50px;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    /* Aufsperrdienst CTA Mobile Responsive */
    .btn-aufsperrdienst-desktop {
        display: none;
    }
    
    .btn-aufsperrdienst-mobile {
        display: flex;
    }
}

/* Tresoröffnung Section */
.tresoroeffnung {
    padding: 80px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.tresoroeffnung-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tresoroeffnung-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.tresoroeffnung-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

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

.tresor-service-item {
    background: white;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.tresor-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.tresor-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.tresor-service-item:hover .tresor-service-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.tresor-service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.tresor-service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Tresoröffnung CTA Buttons */
.tresoroeffnung-cta {
    text-align: center;
}

.btn-tresor-desktop {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.btn-tresor-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.tresor-icon {
    flex-shrink: 0;
}

.tresor-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tresor-action {
    font-size: 1.1rem;
    font-weight: 700;
}

.tresor-number {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 2px;
    font-weight: 500;
}

.btn-tresor-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-tresor-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.tresor-icon-mobile {
    flex-shrink: 0;
}

/* Tresoröffnung Mobile */
@media (max-width: 768px) {
    .tresoroeffnung {
        padding: 60px 15px;
    }
    
    .tresoroeffnung-text h2 {
        font-size: 2rem;
    }
    
    .tresoroeffnung-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .tresoroeffnung-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tresor-service-item {
        padding: 24px 20px;
    }
    
    .tresor-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .tresor-service-content h3 {
        font-size: 1.2rem;
    }
    
    .tresor-service-content p {
        font-size: 0.9rem;
    }
    
    /* Tresoröffnung CTA Mobile Responsive */
    .btn-tresor-desktop {
        display: none;
    }
    
    .btn-tresor-mobile {
        display: flex;
    }
}

/* Schlosswechsel Section */
.schlosswechsel {
    padding: 80px 20px;
    background: #ffffff;
}

.schlosswechsel-content {
    max-width: 1200px;
    margin: 0 auto;
}

.schlosswechsel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.schlosswechsel-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.schlosswechsel-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    text-align: left;
}

.schlosswechsel-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.schloss-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.schloss-benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f39c12;
}

.schloss-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.schloss-benefit-item:hover .schloss-benefit-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.schloss-benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.schloss-benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.schlosswechsel-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.schlosswechsel-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Schlosswechsel CTA Buttons */
.schlosswechsel-cta {
    text-align: center;
}

.btn-schloss-desktop {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.btn-schloss-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.schloss-icon {
    flex-shrink: 0;
}

.schloss-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.schloss-action {
    font-size: 1.1rem;
    font-weight: 700;
}

.schloss-number {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 2px;
    font-weight: 500;
}

.btn-schloss-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-schloss-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.schloss-icon-mobile {
    flex-shrink: 0;
}

/* Schlosswechsel Mobile */
@media (max-width: 768px) {
    .schlosswechsel {
        padding: 60px 15px;
    }
    
    .schlosswechsel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .schlosswechsel-text h2 {
        font-size: 2rem;
    }
    
    .schlosswechsel-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .schlosswechsel-benefits {
        gap: 20px;
    }
    
    .schloss-benefit-item {
        padding: 16px;
        text-align: left;
    }
    
    .schloss-benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .schloss-benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .schloss-benefit-content p {
        font-size: 0.9rem;
    }
    
    .schlosswechsel-image {
        order: -1;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .schlosswechsel-image img {
        border-radius: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        max-width: none;
    }
    
    /* Schlosswechsel CTA Mobile Responsive */
    .btn-schloss-desktop {
        display: none;
    }
    
    .btn-schloss-mobile {
        display: flex;
    }
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #e74c3c;
    color: white;
    justify-content: center;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* Sticky Mobile Buttons */
.mobile-sticky-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.mobile-buttons-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    flex: 1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 58px;
    border-radius: 14px;
}

.btn-mobile .btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-call-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-call-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-call-number {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-mobile.btn-call {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.35);
}

.btn-mobile:active {
    transform: scale(0.98);
}

.btn-mobile.btn-call:active {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 50px;
        margin: 0;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 0 15px 20px 15px;
        min-height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-image {
        order: 1;
        margin: 0 -15px;
        width: calc(100% + 30px);
        position: relative;
    }

    .hero-text {
        order: 2;
    }

    .hero-image > img {
        display: block;
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center center;
        border-radius: 0;
    }

    .hero-image .image-badges {
        position: absolute;
        bottom: 10px;
        right: 10px;
        left: auto;
        transform: none;
    }

    .hero-image .google-badge {
        position: relative;
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    /* Hide desktop contact section on mobile */
    .desktop-contact-section {
        display: none;
    }
    
    /* Hide old mobile buttons */
    .mobile-only {
        display: none;
    }
    
    /* Show mobile sticky buttons */
    .mobile-sticky-buttons {
        display: block;
    }
    
    /* Show mobile conversion button */
    .mobile-conversion-button {
        display: block;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.reviews-container {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 0;
    transition: transform 0.8s ease-in-out;
    width: calc(350px * 6); /* 6 cards total */
}

.review-card {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f2f6;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.review-rating .stars {
    color: #f39c12;
    font-size: 1.2rem;
    font-weight: bold;
}

.rating-text {
    background: #f39c12;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: #e8f4fd;
    font-family: serif;
    line-height: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-date {
    color: #95a5a6;
    font-size: 0.85rem;
}

/* Reviews display controls */
.reviews-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    overflow: hidden;
}

.review-card {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Reviews navigation dots */
.reviews-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #f39c12;
    transform: scale(1.2);
}

.review-dot:hover {
    background: #f39c12;
    transform: scale(1.1);
}

/* Mobile touch support */
.reviews-container {
    touch-action: pan-x;
    user-select: none;
}

.reviews-track {
    cursor: grab;
}

.reviews-track:active {
    cursor: grabbing;
}

/* Reviews mobile responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 15px;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .reviews-container {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .review-card {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        padding: 20px;
    }
    
    .reviews-track {
        gap: 0;
        width: calc(320px * 6);
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 50px 10px;
    }
    
    .reviews-container {
        max-width: 280px;
    }
    
    .review-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 18px;
    }
    
    .reviews-track {
        width: calc(280px * 6);
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 2px solid #f1f2f6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e8f4fd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: #e8f4fd;
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    flex-grow: 1;
    margin-right: 15px;
}

.faq-icon {
    color: #3498db;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #34495e;
    font-size: 1rem;
}

/* FAQ mobile responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 15px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-title {
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 50px 10px;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-title {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 18px 15px;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e8f4fd 100%);
}

.contact-form-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-info-text p {
    margin: 0;
    color: #7f8c8d;
    font-size: 1rem;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f2f6;
}

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

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #fff3c4;
    border-color: #f39c12;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #f39c12;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #f39c12;
    border-color: #f39c12;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-text {
    font-weight: 600;
    color: #e67e22;
    font-size: 1rem;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #2980b9, #1abc9c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.submit-icon {
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover .submit-icon {
    transform: translateX(3px);
}

/* Contact form mobile responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 15px;
    }
    
    .contact-form-header h2 {
        font-size: 2rem;
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 50px 10px;
    }
    
    .contact-form-container {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .btn-contact-submit {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    margin-top: 0;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    line-height: 1.6;
    color: #bdc3c7;
    margin: 0;
    font-size: 1rem;
}

.footer-services h4,
.footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.footer-services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 1rem;
}

.footer-contact-item svg {
    color: #3498db;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3498db;
}

.footer-badge {
    text-align: right;
}

.badge-text {
    color: #bdc3c7;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.badge-stars {
    color: #f39c12;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Footer mobile responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px 0;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-badge {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px 0;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-logo {
        gap: 10px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}