/* ============================================= */
/* HOME-STYLE.CSS - Für Startseite             */
/* VERSION 2.0 - Komplett überarbeitet          */
/* ============================================= */

/* ============================================= */
/* TYPOGRAPHY & SPACING                         */
/* ============================================= */

h1 { 
    font-size: 2.8rem; 
    margin-bottom: 15px;
    line-height: 1.3;
}

h2 { 
    font-size: 2.2rem; 
    margin-bottom: 30px; 
    text-align: center;
    color: var(--text-dark);
}

h3 { 
    font-size: 1.6rem; 
    margin-bottom: 15px;
    color: var(--text-dark);
}

p { 
    margin-bottom: 15px; 
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.mt-4 { 
    margin-top: 40px; 
}

/* ============================================= */
/* SECTION HEADERS                              */
/* ============================================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================= */
/* HERO SECTION - NEU GESTALTET                 */
/* ============================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('../images/hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
}

/* Hero Statistiken */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Titel */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.title-main {
    display: block;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================= */
/* QUICK BOOKING WIDGET                         */
/* ============================================= */

.quick-booking-widget {
    max-width: 650px;
    margin: 50px auto 30px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.quick-booking-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    color: white;
}

.quick-booking-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.quick-booking-form {
    padding: 30px;
}

.quick-input-group {
    position: relative;
    margin-bottom: 18px;
}

.quick-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.2rem;
    z-index: 2;
}

.quick-input-group input {
    width: 100%;
    padding: 18px 18px 18px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

.quick-input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.quick-input-group input::placeholder {
    color: #999;
}

.quick-booking-form .btn {
    margin-top: 15px;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-booking-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.quick-booking-footer {
    background: #f8f9fa;
    padding: 18px 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.trust-badge i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Alternative Buttons */
.hero-buttons-alt {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Scroll Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

/* ============================================= */
/* HOW IT WORKS SECTION                         */
/* ============================================= */

.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.step-icon i {
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.4s;
}

.step-item:hover .step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1) rotate(5deg);
}

.step-item:hover .step-icon i {
    color: white;
    transform: scale(1.1);
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

/* ============================================= */
/* ABOUT SECTION - VERBESSERT                   */
/* ============================================= */

.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-content h2 { 
    text-align: left; 
    margin-bottom: 25px; 
}

.about-content p { 
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.feature-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-item strong {
    font-size: 1.1rem;
    color: #333;
}

.feature-item span {
    font-size: 0.95rem;
    color: #666;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* ============================================= */
/* SERVICES SECTION - VERBESSERT                */
/* ============================================= */

.services-section {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

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

/* Featured Service */
.service-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.service-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 2.8rem;
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.98rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.service-features i {
    color: #4caf50;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.service-link:hover {
    gap: 14px;
    color: #764ba2;
}

/* ============================================= */
/* TESTIMONIALS SECTION                         */
/* ============================================= */

.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-info strong {
    font-size: 1.05rem;
    color: #333;
}

.author-info span {
    font-size: 0.9rem;
    color: #999;
}

/* ============================================= */
/* FAQ SECTION                                  */
/* ============================================= */

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question i {
    font-size: 1.2rem;
    color: #667eea;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    color: #667eea;
}

.faq-item.active {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================= */
/* CONTACT CTA SECTION                          */
/* ============================================= */

.contact-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-cta-section h2 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* ============================================= */
/* ANIMATIONS                                   */
/* ============================================= */

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bounce Animation */
.animate-bounce {
    animation: bounce 2s infinite;
}

/* ============================================= */
/* RESPONSIVE - TABLET (max-width: 900px)      */
/* ============================================= */

@media (max-width: 900px) {
    h1 { 
        font-size: 2.5rem; 
    }
    
    h2 { 
        font-size: 2rem; 
    }
    
    h3 { 
        font-size: 1.4rem; 
    }

    .hero-section {
        min-height: auto;
        padding: 120px 20px 80px;
    }

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

    .title-sub {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .quick-booking-widget {
        margin: 40px 20px 20px;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

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

    .about-content h2 {
        text-align: center;
    }

    .about-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card.featured {
        transform: scale(1);
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

/* ============================================= */
/* RESPONSIVE - MOBILE (max-width: 580px)      */
/* ============================================= */

@media (max-width: 580px) {
    h1 { 
        font-size: 2rem; 
    }
    
    h2 { 
        font-size: 1.8rem; 
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .hero-section {
        padding: 100px 15px 60px;
    }

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

    .title-sub {
        font-size: 1.3rem;
    }

    .hero-tagline { 
        font-size: 1.1rem; 
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .quick-booking-widget {
        margin: 30px 10px 20px;
    }

    .quick-booking-header {
        padding: 20px;
    }

    .quick-booking-header h3 {
        font-size: 1.3rem;
    }

    .quick-booking-form {
        padding: 20px;
    }

    .quick-input-group input {
        padding: 15px 15px 15px 50px;
        font-size: 1rem;
    }

    .quick-booking-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 15px 20px;
    }

    .hero-buttons-alt .btn {
        width: 100%;
        max-width: 300px;
    }

    .how-it-works-section,
    .about-section,
    .services-section,
    .testimonials-section,
    .faq-section {
        padding: 60px 0;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon i {
        font-size: 2rem;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        font-size: 2rem;
    }

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

    .service-card { 
        padding: 30px 25px; 
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card::before {
        font-size: 4rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .contact-cta-section {
        padding: 60px 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
}

/* ============================================= */
/* SEHR KLEINE HANDYS (max-width: 400px)       */
/* ============================================= */

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .quick-booking-widget {
        margin: 20px 5px 15px;
    }

    .service-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
    }
}