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

body,
html {
    font-family: 'Archivo', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

/* Header */
.top-header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
}

.logo span {
    color: #ff2d2d;
}

.nav-menu a {
    margin: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.nav-menu a:hover {
    color: #ff2d2d;
}

.contact-top {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.btn-call-header {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.btn-call-header:hover {
    background-color: #ff2d2d;
    border-color: #ff2d2d;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    backface-visibility: hidden;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


.hero-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-pre-headline {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-main-headline {
    font-size: 56px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-main-headline.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.hero-main-headline span {
    color: #fff;
}

.hero-box p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Hero Ticker Carousel */
.hero-ticker-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    overflow: hidden;
    z-index: 10;
    display: flex;
}

.hero-ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.hero-ticker-track:hover {
    animation-play-state: paused;
}

.hero-ticker-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: max-content;
}

.ticker-item {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0 25px;
    transition: color 0.3s ease;
    cursor: default;
}

.ticker-item:hover {
    color: #ff2d2d;
}

.ticker-sep {
    color: #ff2d2d;
    font-size: 16px;
    user-select: none;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Buttons */
.btn-main {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff2d2d;
    border: 2px solid transparent;
    border-radius: 4px;
    vertical-align: middle;
    text-align: center;
}

.btn-main:hover {
    background-color: #d11a1a;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    background-color: transparent;
    border: 2px solid #111;
    border-radius: 4px;
    vertical-align: middle;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #111;
    color: #fff;
}

.btn-hero-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 4px;
    vertical-align: middle;
    text-align: center;
}

.btn-hero-secondary:hover {
    background-color: #fff;
    color: #111;
}

/* Premium CTA Band */
.cta-section-band {
    background: linear-gradient(135deg, #ff3333 0%, #c41c1c 100%);
    padding: 55px 0;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 -20px 40px rgba(0, 0, 0, 0.08);
}

.cta-section-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-heading-area h2 {
    color: #fff !important;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-heading-area p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-actions-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 950px;
    flex-wrap: wrap;
}

/* Glassmorphism Buttons */
.cta-card-btn {
    flex: 1;
    min-width: 250px;
    max-width: 290px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none !important;
}

.cta-card-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 0 15px rgba(255, 255, 255, 0.08);
}

.cta-card-btn:active {
    transform: translateY(-2px);
}

.cta-btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-card-btn:hover .cta-btn-icon {
    background: #fff;
    color: #c41c1c;
    transform: scale(1.08) rotate(8deg);
}

/* Individual Brand Hover Themes */
.cta-card-btn.btn-whatsapp:hover .cta-btn-icon {
    color: #25d366;
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
}

.cta-btn-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cta-card-btn:hover .cta-btn-label {
    color: #fff;
}

.cta-btn-val {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.2px;
}

@media (max-width: 900px) {
    .cta-heading-area h2 {
        font-size: 25px;
    }
    
    .cta-heading-area p {
        font-size: 14.5px;
    }
    
    .cta-actions-area {
        gap: 15px;
    }
    
    .cta-card-btn {
        min-width: 100%;
        max-width: 100%;
    }
}


/* Sections */
.section-light {
    padding: 100px 0;
    background-color: #fff;
}

.section-dark {
    padding: 100px 0;
    background-color: #f4f6f8;
    /* Very light grey */
}

/* Section Titles exactly like the image */
.section-title-wrapper {
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    color: #ff2d2d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-subtitle::before {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: linear-gradient(to left, #ff2d2d, transparent);
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: linear-gradient(to right, #ff2d2d, transparent);
}

h2 {
    font-size: 36px;
    color: #111;
    text-transform: uppercase;
}

/* Grids */
.services-grid,
.reviews-grid,
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Promotions Card */
.promo-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 45, 45, 0.1);
    border-color: rgba(255, 45, 45, 0.3);
}

.promo-badge {
    position: absolute;
    top: 0;
    left: -15px;
    background-color: #ff2d2d;
    color: #fff;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(255, 45, 45, 0.35);
    z-index: 3;
    transform: rotate(-3deg);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-badge {
    transform: rotate(0deg) scale(1.05);
}

.promo-card h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 20px;
}

.promo-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Instagram Grid */
.insta-item:hover img {
    transform: scale(1.1) !important;
}

.insta-item:hover .insta-overlay {
    opacity: 1 !important;
}

/* Service / Review Card */
.service-block,
.review-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.service-block:hover,
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    border-color: rgba(255, 45, 45, 0.15);
}

.service-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.service-block p,
.review-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.service-block ul {
    list-style: none;
}

.service-block li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-block li::before {
    content: '✓';
    color: #ff2d2d;
    font-weight: bold;
    margin-right: 10px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #ff2d2d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 15px;
}

.review-card strong {
    color: #111;
    display: block;
}

.stars {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

/* Prices */
.price-list {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}

.price-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #ff2d2d;
}

.price-item span {
    font-weight: 600;
    font-size: 16px;
    color: #111;
}

.price-val {
    color: #ff2d2d !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    white-space: nowrap;
    margin-left: 20px;
}

/* FAQ */
.faq-chips-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.faq-chip {
    background-color: #fff;
    border: 1px solid #eaeaea;
    color: #555;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    outline: none;
}

.faq-chip:hover {
    color: #111;
    border-color: #ff2d2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 45, 45, 0.12);
}

.faq-chip.active {
    background-color: #ff2d2d;
    border-color: #ff2d2d;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 45, 45, 0.3);
    transform: none;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.faq-category {
    margin-bottom: 40px;
    text-align: left;
    animation: faqFadeIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.faq-container.filter-popularne .faq-category {
    margin-bottom: 0;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item:hover {
    border-color: rgba(255, 45, 45, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    user-select: none;
    gap: 15px;
}

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

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

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

.faq-answer-content {
    padding: 0 25px 20px 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.hero-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-badge-wrapper {
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 3;
}

.hero-price-badge {
    display: flex;
    align-items: center;
    margin-left: 15px;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-arrow-svg {
    margin-right: 6px;
    margin-top: -8px;
}

.hero-badge-text {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    background: #ff2d2d;
    padding: 4px 12px;
    border-radius: 6px;
    transform: rotate(4deg);
    box-shadow: 0 4px 15px rgba(255, 45, 45, 0.5);
    white-space: nowrap;
}

/* Sections */
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.map-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 4px;
}

/* Premium Footer */
.site-footer {
    background-color: #111;
    color: #ccc;
    padding: 70px 0 35px;
    border-top: 3px solid #ff2d2d;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
    }
}

.footer-grid h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #ff2d2d;
}

.footer-col-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 18px;
}

.footer-link-map {
    color: #ff2d2d !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-link-map:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 50%;
    color: #aaa;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none !important;
}

.footer-social-link:hover {
    background-color: #ff2d2d;
    border-color: #ff2d2d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 45, 45, 0.35);
}

.footer-contact-list,
.footer-hours-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact-item,
.footer-hours-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14.5px;
    line-height: 1.6;
    list-style: none !important;
    list-style-type: none !important;
}

.footer-hours-item {
    justify-content: space-between;
    border-bottom: 1px dashed #222;
    padding-bottom: 8px;
}

.footer-hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-contact-item svg {
    color: #ff2d2d;
    flex-shrink: 0;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover svg {
    transform: scale(1.15);
}

.footer-contact-item a {
    color: #ccc;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ff2d2d;
}

.footer-hours-day {
    font-weight: 700;
    color: #fff;
}

.footer-hours-time {
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid #1e1e1e;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13.5px;
    font-weight: 500;
    margin: 0;
}

/* About Collage Section */
.about-collage {
    position: relative;
    padding: 20px 20px 20px 0;
    margin-top: 20px;
}

.about-img-main {
    width: 82%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.about-img-secondary {
    width: 48%;
    position: absolute;
    bottom: -10px;
    right: -10px;
    border: 6px solid #fff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-img-secondary:hover {
    transform: translateY(-5px) scale(1.05);
}

.about-badge {
    position: absolute;
    top: 0;
    left: -15px;
    background: #ff2d2d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(255, 45, 45, 0.35);
    z-index: 3;
    transform: rotate(-3deg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-badge:hover {
    background: #d32f2f;
    transform: rotate(-3deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 45, 45, 0.5);
}

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

    .hero-main-headline {
        font-size: 40px;
    }

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

@media (max-width: 768px) {
    .hero-badge-wrapper {
        left: 50%;
        top: 100%;
        height: auto;
        transform: translateX(-50%);
        margin-top: 15px;
    }

    .hero-price-badge {
        margin-left: 0;
        flex-direction: column-reverse;
        align-items: center;
    }

    .hero-arrow-svg {
        transform: rotate(100deg) scaleX(-1);
        margin: -5px 0 0 0;
    }
}

@media (max-width: 480px) {
    .hero-main-headline {
        font-size: 32px;
    }

    .hero-pre-headline {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .hero-box p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.service-block-hero {
    grid-column: span 4;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.service-block-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #ff2d2d;
}

.service-block-hero:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.service-block-hero h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 18px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-block-hero p {
    color: #666;
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 25px;
}

.service-hero-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-hero-checklist li {
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.service-hero-checklist li::before {
    content: '✓';
    color: #ff2d2d;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.service-image-block {
    grid-column: span 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.service-image-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-image-block:hover img {
    transform: scale(1.06);
}

.service-card-modern {
    grid-column: span 3;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative; /* Added relative positioning for badges */
}

.service-card-modern:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 45, 45, 0.3);
}

.service-card-modern .icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 45, 45, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ff2d2d;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-modern:hover .icon-wrapper {
    background-color: #ff2d2d;
    color: #fff;
    transform: scale(1.05);
}

.service-card-modern h3 {
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
}

.service-card-modern p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Card badge for free services */
.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff2d2d;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 45, 45, 0.25);
    z-index: 2;
    transform: rotate(3deg);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-modern:hover .service-card-badge {
    transform: rotate(0deg) scale(1.05);
    background-color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Service card highlight note at the bottom */
.service-highlight-note {
    margin-top: auto; /* Pushes the note to the very bottom of the card */
    padding-top: 15px;
    border-top: 1px dashed #eee;
    font-size: 13.5px;
    color: #555;
    line-height: 1.55;
}

.service-highlight-note strong {
    color: #ff2d2d;
}

.service-highlight-note span {
    margin-right: 4px;
    font-size: 14px;
}

/* Responsive Styles for Modern Services Grid */
@media (max-width: 1024px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-block-hero {
        grid-column: span 2;
    }
    
    .service-image-block {
        grid-column: span 2;
        height: 320px;
    }

    .service-card-modern {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-block-hero {
        grid-column: span 1;
        padding: 30px 24px;
    }
    
    .service-hero-checklist {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-image-block {
        grid-column: span 1;
        height: 250px;
    }

    .service-card-modern {
        grid-column: span 1;
    }
}