.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.phone-icon::before {
    content: "📞";
    font-style: normal;
    font-size: 18px;
    margin-right: 3px;
}

.main-container-header-area {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main-content-output h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.3;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
}

.main-content-output h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 20px 0;
}

.main-content-output img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.main-content-output p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin: 10px 0;
    /*color: #666;*/
}

.main-content-output ul {
    list-style: disc;
    padding-left: 20px;
}

.main-content-output ol {
    list-style: decimal;
    padding-left: 20px;
}

.main-content-output li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.header-text-title-tel-text {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
}

.header-text-tel-number {
    font-weight: 700;
}

/*advertising*/
.advertising-section-main {
    padding: 10px 0;
}

.advertising-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/*main*/
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-title > .city {
    color: #f56c42;
    font-weight: 800;
}
.hero-subtext > .phone-link {
    color: #f56c42;
    font-weight: 800;
}

.main-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.main-btn {
    background: #f56c42;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 108, 66, 0.4);
    min-width: 280px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.main-btn-container {
    margin: 1rem 0;
}

.main-btn:hover {
    background: #e55a35;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 108, 66, 0.5);
    color: white;
}

.main-btn-text-icon {
    opacity: 0.8;
    margin-right: 10px;
}

.rating-text-star-container {
    margin-top: 20px;
}

.main-container-header-area-wrapper {
    padding: 80px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rating-text {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-description-tel {
    font-size: 20px;
    font-weight: 700;
    color: #F97316;
    text-decoration: none;
    margin-left: 10px;
}

.stars {
    font-size: 24px;
    color: #f59e0b;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.emergency-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.emergency-badge i {
    font-size: 0.7rem;
    opacity: 0.8;
}

.arrow-right {
    display: flex;
    align-items: center;
    margin-left: 10px;
    animation: moveRightLeft 1.5s ease-in-out infinite;
}

@keyframes moveRightLeft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

.arrow-right svg {
    width: 24px;
    height: 24px;
    color: #05AF61;
} 

.mobile-advertising {
    display: none;
}

.mobile-advertising.active {
    bottom: 0;
}

.mobile-advertising-footer {
    width: 100%;
}

.mobile-advertising-footer a {
    width: 100%;
    justify-content: center;
    font-size: 15px;
}

.mobile-advertising-footer-text {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: .5rem 0;
}

/* Services Section */
.services-section-wrapper {
    padding: 80px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.6;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    width: 100%;
    transition: all 0.3s ease;
    color: #1f2937;
    padding: 0;
    margin-bottom: 1rem;
}

.service-question {
    padding: 1rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-question:hover {
    background-color: rgba(245, 108, 66, 0.05);
}

.service-question-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.service-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.main-btn-text-icon svg {
    width: 1rem !important;
    height: 1rem !important;
    vertical-align: middle;
    margin-right: 4px;
}

.service-question h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    margin: 0;
    color: inherit;
    flex: 1;
}

.service-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
    user-select: none;
    font-family: Arial, sans-serif;
}

.service-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.service-item.active .service-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.service-answer p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    color: inherit;
}

/* FAQ Section */
.faq-section-wrapper {
    padding-top: clamp(3rem, 8vw, 80px);
    padding-bottom: clamp(3rem, 8vw, 80px);
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.6;
    text-align: center;
    line-height: 1.6;
    margin: 0 auto;
    margin-bottom: 3rem;
    max-width: 600px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

div.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    width: 100%;
    transition: all 0.3s ease;
    color: #1f2937;
    padding: 0;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1rem !important;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
    background-color: rgba(245, 108, 66, 0.05);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: clamp(1rem, 2vw, 1.1rem) !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: inherit !important;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
    user-select: none;
    font-family: Arial, sans-serif;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    color: inherit !important;
}

/*logo*/
.main-company-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.main-company-logo-container img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.main-image-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-section-content-wrapper {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 8rem;
}

.company-logo {
    width: 50px;
    aspect-ratio: auto 182 / 65;
}

/*testimonials*/
.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header h2 {
    font-size: 32px;
    font-weight: 600;
}

.testimonial-blocks {
    position: relative;
    padding: 20px 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    /*color: #666;*/
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-image-container-testimonial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}

.author-name {
    font-weight: 600;
    color: #333;
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #333 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper {
    width: 600px;
    height: 300px;
}

.swiper-slide {
    cursor: grab;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #333 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
} 

/*new main*/
.new-main-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 25px;
}

.new-main-description {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 18px;
    line-height: 1.6;
    color: #1F2937;
}

.new-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #f56c42;
    color: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(245, 108, 66, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.new-main-btn:hover {
    background: #e55a35;
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(245, 108, 66, 0.5);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.new-main-section-container {
   padding: 90px 0;
}

.take-action-section {
    padding: 60px 0;
    text-align: center;
}

.new-main-advertising-title {
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-align: center;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.new-main-advertising-title:hover {
   opacity: 0.8;
}
/*responsive*/
@media (max-width: 768px) {
    .header-section-wrapper {
        padding: 3px 0;
    }

    .header-image-main-img {
        width: 100px;
    }

    .advertising-title {
        font-size: 13px;
    }

    .main-company-logo-container {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        padding: 0 30px;
    }

    .main-container-header-area-wrapper {
        padding: 40px 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .new-main-btn {
        font-size: 20px;
    }

    .new-main-advertising-title {
        font-size: 20px;
    }

    .new-main-title {
        font-size: 32px;
    }

    .testimonial-header h2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: left;
    }

    .main-title {
        font-size: 32px;
    }

    .main-btn {
        font-size: 20px;
    }

    .main-description {
        font-size: 16px;
    }

    .main-description-tel {
        white-space: nowrap;
    }

    .header-text {
        gap: 0;
    }

    .header-text-title-tel {
        font-size: 15px;
        line-height: 1.1;
    }

    .header-text-tel-number {
        font-size: 15px;
        line-height: 1.1;
    }

    .header-content {
        padding: 10px 0;
    }

    .company-logo {
        width: 50px;
    }

    body {
        overflow-x: hidden;
    }

    .mobile-advertising {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        transition: bottom 0.4s ease-out;
        z-index: 1000;
        padding: 12px 20px;
    }

    .mobile-advertising-btn {
        border: 2px solid white;
        border-radius: 8px;
        margin: 0;
    }

    .mobile-advertising-footer {
        margin: 0;
    }

    .mobile-advertising-btn-icon::before {
        content: "📞";
        font-style: normal;
        font-size: 18px;
        margin-right: 5px;
    }

}

@media (max-width: 480px) {
    .header-text-tel-number {
        font-size: 14px;
    }

    .available-pill {
        margin-right: 10px;
    }

    .header-section {
        padding: 0 1.3rem;
    }

    .header-image-main-img {
        width: 80px;
    }

    .swiper {
        width: 300px;
    }

    .cc-carousel-wrapper {
        padding: 0 !important;
    }

    .main-container-header-area {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-container-header-area-wrapper {
        text-align: center;
    }

    .main-btn-container {
        justify-content: center;
    }

    .main-btn {
        padding: 18px 32px;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
        min-height: 56px;
        border-radius: 12px;
    }
}

@media (max-width: 376px) {
    .header-text-tel-number {
        font-size: 12px !important;
    }
}

@media (max-width: 320px) {

    .header-text-tel-link {
        font-size: 12px !important;
    }

    .header-image-main-img {
        width: 50px !important;
    }

    .swiper {
        width: 200px;
    }

    .header-text-tel-number {
        font-size: 13px;
    }

    .header-section {
        padding: 0;
    }

    .header-text-title-tel {
        font-size: 13px;
        line-height: 1;
    }
}

/* Services CTA Block */
.services-cta-block {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.services-cta-card {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
}

@media (max-width: 768px) {
    .services-cta-card {
        padding: 1.2rem;
    }

    a.services-cta-button {
        font-size: 14px;
    }
}

.services-cta-title {
    font-size: clamp(.8rem, 2.5vw, 1rem);
    font-weight: 600;
    color: #374151;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.services-cta-subtitle {
    font-weight: 400;
    color: #6b7280;
}

.services-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f56c42;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 108, 66, 0.3);
    white-space: nowrap;
}

.services-cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 108, 66, 0.4);
    color: white;
}

.services-cta-button svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #ffffff;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.reviews-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #6b7280;
    margin: 0;
}

.reviews-cards {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.review-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 3px solid #3b82f6;
    position: relative;
    flex: 1;
    max-width: 350px;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.review-customer {
    margin-bottom: 0;
}

.review-customer strong {
    color: #1f2937;
    font-size: 0.95rem;
}

.review-location {
    color: #6b7280;
    font-size: 0.9rem;
}

.review-verified {
    color: #059669;
    font-size: 0.9rem;
}

.reviews-stats {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-left: 3px solid #3b82f6;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .reviews-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
        max-width: 100%;
    }
}
