/* Messie Berlin - Sperrmüll & Entsorgung - SEO Optimiertes CSS */

:root {
    --primary-color: #E95D0F;
    --secondary-color: #333333;
    --accent-color: #374151;
    --dark-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-color: #333;
    --white: #ffffff;
    --bsr-orange: #E95D0F;
    --bsr-orange-dark: #C24F0C;
    --bsr-orange-light: #FF7B2E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-top {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.08em;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 6rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-features {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hero-features li::before {
    content: '✓';
    background: var(--secondary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-person {
    position: relative;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(55, 65, 81, 0.3);
}

.btn-primary:hover {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 65, 81, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    margin: 0 0 1rem 0;
    padding: 0 2rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    padding: 0 2rem;
}

.service-card p {
    color: #666;
    margin: 0 0 1.5rem 0;
    padding: 0 2rem;
}

.service-card .btn {
    margin: 0 2rem 2rem 2rem;
    display: inline-block;
    max-width: calc(100% - 4rem);
    box-sizing: border-box;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.info-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.info-list {
    list-style: none;
    margin: 2rem 0;
}

.info-list li {
    padding: 1rem;
    background: var(--white);
    margin-bottom: 0.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-list li::before {
    content: '→';
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
    background: var(--accent-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Content Pages */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.breadcrumb {
    padding: 1rem 0;
    background: var(--light-gray);
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 2rem;
}

.main-content h3 {
    color: var(--dark-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.5rem;
}

.main-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.main-content ul, .main-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.main-content li {
    margin-bottom: 0.5rem;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--primary-color);
}

.contact-box {
    background: var(--accent-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Blog/Guide Cards */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guide-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.guide-image {
    width: 100%;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.guide-content {
    padding: 2rem;
}

.guide-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.guide-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.pricing-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(233, 93, 15, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 0 0 0.5rem 0;
}

.pricing-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-price {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    display: block;
    color: #999;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    margin: 0;
}

/* Callback Widget */
.callback-widget-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(233, 93, 15, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.callback-widget-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 93, 15, 0.5);
}

.callback-widget-trigger svg {
    width: 20px;
    height: 20px;
}

.callback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.callback-modal.active {
    display: flex;
}

.callback-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.callback-modal-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.callback-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.callback-modal-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

.callback-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.callback-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.callback-modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--bsr-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 93, 15, 0.4);
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.callback-success,
.callback-error {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.callback-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.callback-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot fields - versteckt für Bot-Schutz */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tabindex: -1 !important;
}

/* CAPTCHA Styling */
.captcha-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.captcha-group label {
    color: var(--text-color);
}

#captcha-question {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0 0.5rem;
    background: white;
    border-radius: 4px;
    display: inline-block;
    margin: 0 0.3rem;
}

/* Mobile Elements - Hidden by default */
.mobile-menu-toggle,
.mobile-call-button {
    display: none;
}

/* Responsive */
/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .info-content,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-person {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .header-top {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .nav-wrapper {
        position: relative;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
    
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--text-color);
    }
    
    .main-nav a.active {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .main-nav .btn {
        margin-top: 1rem;
        width: 100%;
        color: var(--white) !important;
    }
    
    .main-nav .btn-primary {
        background: var(--accent-color);
        color: var(--white) !important;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Mobile Call Button */
    .mobile-call-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--primary-color);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(233, 93, 15, 0.4);
        z-index: 998;
        transition: all 0.3s ease;
        font-size: 1rem;
    }
    
    .mobile-call-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(233, 93, 15, 0.5);
    }
    
    .mobile-call-button svg {
        width: 20px;
        height: 20px;
    }
    
    /* Hide on desktop */
    @media (min-width: 769px) {
        .mobile-menu-toggle,
        .mobile-call-button {
            display: none;
        }
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    /* Services Grid */
    .services-grid,
    .guide-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
    
    /* CTA Group */
    .cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    /* Content pages */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        gap: 2rem;
    }
    
    .sidebar {
        order: 2;
    }
    
    /* Tables */
    table {
        font-size: 0.9rem;
    }
    
    /* Forms */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .service-card,
    .guide-card {
        padding: 1.5rem;
    }
    
    .service-card .service-icon,
    .service-card h3,
    .service-card p {
        padding-left: 0;
        padding-right: 0;
    }
    
    .service-card .btn {
        margin: 0 0 0 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile-call-button {
        bottom: 15px;
        right: 15px;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes for Inline Styles */
.nav-btn-padding {
    padding: 0.6rem 1.5rem;
}

.team-image-style {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.trust-badge-inline {
    margin-top: 2rem;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-badge-icon {
    font-size: 3rem;
}

.trust-badge-title {
    margin-top: 1rem;
    color: var(--primary-color);
}

.trust-badge-subtitle {
    margin-top: 0.5rem;
    color: #666;
}

.trust-badge-rating {
    margin-top: 1rem;
}

.trust-badge-stars {
    color: #FFB800;
    font-size: 1.5rem;
}

.trust-badge-count {
    color: #666;
}

.section-header-white h2 {
    color: white;
}

.section-header-white p {
    color: white;
    opacity: 0.9;
}

.bg-light-gray {
    background: #f9f9f9;
}

.step-icon-blue {
    color: #0066CC;
}

.step-icon-green {
    color: #00A651;
}

.step-icon-orange {
    color: #FF6B00;
}

.text-center-mt3 {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.text-center-mt2 {
    text-align: center;
    margin-top: 2rem;
}

.pricing-disclaimer {
    color: #666;
    font-size: 0.95rem;
}

.pricing-link {
    color: var(--primary-color);
}

.cta-group-centered {
    justify-content: center;
}

.cta-btn-white {
    background: white;
    color: var(--accent-color);
}

.cta-btn-transparent {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-banner-text {
    margin-top: 2rem;
    opacity: 0.9;
}

.footer-phone {
    margin-top: 1rem;
}

.footer-hours {
    margin-top: 2rem;
}

.section-margin-top {
    margin-top: 3rem;
}

.expertise-card {
    text-align: center;
    padding: 3rem;
}

.expertise-icon {
    font-size: 5rem;
}

.expertise-title {
    margin-top: 1rem;
}

.expertise-text {
    margin-top: 1rem;
}

/* Additional utility classes */
.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-2 {
    margin-top: 2rem;
}

.margin-y-2 {
    margin: 2rem 0;
}

.btn-white-full {
    width: 100%;
    background: white;
}

.sidebar-widget-gray {
    background: #f9f9f9;
}

.sidebar-widget-orange {
    background: var(--accent-color);
    color: white;
}

.advantages-list {
    list-style: none;
    margin-left: 0;
}

.advantages-list li {
    padding: 0.5rem 0;
    border: none;
}

.icon-large {
    font-size: 4rem;
}

.trust-item-dark {
    color: #333;
}

.trust-icon-green {
    color: #00A651;
}

.trust-text-dark {
    color: #333;
    opacity: 1;
}

.info-section-padding {
    padding: 2rem 0;
}

