 :root {
    --theme-bg: #0c0d0d;
    --theme-bg-soft: #111111;
    --theme-surface: #171717;
    --theme-surface-alt: #1b1b1b;
    --theme-surface-elevated: #2d2d2d;
    --theme-text: #faf7f6;
    --theme-text-muted: rgba(250, 247, 246, 0.78);
    --theme-text-soft: #e0e0e0;
    --theme-border: rgba(255, 255, 255, 0.08);
    --theme-accent: #f5ba03;
    --theme-accent-soft: #ffdd70;
    --theme-accent-deep: #d4a003;
    --theme-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
 }

.accessible-page-header {
    margin-top: 120px;
    padding: 48px 0 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 186, 3, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(12, 13, 13, 0.96) 100%);
    border-bottom: 1px solid rgba(245, 186, 3, 0.12);
}

.accessible-page-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 186, 3, 0.12);
    border: 1px solid rgba(245, 186, 3, 0.18);
    color: var(--theme-accent-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.accessible-page-header h1 {
    margin: 0 0 16px;
    color: var(--theme-text);
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.accessible-page-header p {
    max-width: 760px;
    margin: 0;
    color: var(--theme-text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.accessible-page {
    margin-top: 0;
    margin-bottom: 96px;
    padding-top: 34px;
}

.accessible-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--theme-text);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accessible-page .row {
    margin-bottom: 30px;
}

.blog-page-header {
    margin-top: 120px;
    padding: 48px 0 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 186, 3, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(12, 13, 13, 0.96) 100%);
    border-bottom: 1px solid rgba(245, 186, 3, 0.12);
}

.blog-page-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 186, 3, 0.12);
    border: 1px solid rgba(245, 186, 3, 0.18);
    color: var(--theme-accent-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-page-header h1 {
    margin: 0 0 16px;
    color: var(--theme-text);
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.blog-page-header p {
    max-width: 760px;
    margin: 0;
    color: var(--theme-text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.accessible-page-cta {
    margin-top: 40px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(245, 186, 3, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(245, 186, 3, 0.18);
    box-shadow: var(--theme-shadow);
    text-align: center;
}

.accessible-page-cta h3 {
    margin: 0 0 12px;
    color: var(--theme-text);
    font-size: 1.8rem;
    font-weight: 700;
}

.accessible-page-cta p {
    max-width: 680px;
    margin: 0 auto 24px;
    color: var(--theme-text-muted);
    line-height: 1.7;
}

.seo-cta-slider {
    position: relative;
    overflow: hidden;
}

.cta-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.cta-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: none;
    justify-content: center;
    align-items: center;
    color: var(--theme-text);
    text-align: center;
    padding: 3rem 1rem;
    transition: opacity 0.6s ease;
}

.cta-slide.active {
    display: flex;
}

.cta-prev,
.cta-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 13, 13, 0.5);
    color: var(--theme-text);
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-prev {
    left: 10px;
}

.cta-next {
    right: 10px;
}

.cta-prev:hover,
.cta-next:hover {
    background: rgba(12, 13, 13, 0.82);
    color: var(--theme-accent);
}

.error-container {
    text-align: center;
    padding: 50px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-container h1 {
    font-size: 6em;
    color: var(--theme-accent);
    margin-bottom: 10px;
}

.error-container h2 {
    font-size: 2em;
    color: var(--theme-text);
    margin-bottom: 20px;
}

.error-container p {
    font-size: 1.2em;
    color: var(--theme-text-muted);
    margin-bottom: 30px;
}

.error-container a {
    display: inline-block;
    background-color: var(--theme-accent);
    color: var(--theme-bg-soft);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.error-container a:hover {
    background-color: var(--theme-accent-soft);
}

.about-hero {
    color: var(--theme-text);
    padding: 150px 0 90px;
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(245, 186, 3, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(12, 13, 13, 0.98) 0%, rgba(23, 23, 23, 0.94) 52%, rgba(12, 13, 13, 0.98) 100%);
}

.about-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 32px;
    align-items: center;
}

.about-hero-copy {
    max-width: 760px;
}

.about-hero-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 186, 3, 0.12);
    border: 1px solid rgba(245, 186, 3, 0.18);
    color: var(--theme-accent-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.about-hero p {
    font-size: 1.12rem;
    max-width: 720px;
    margin: 0 0 2rem;
    color: var(--theme-text-muted);
    line-height: 1.7;
}

.about-hero-actions {
    justify-content: flex-start;
}

.about-hero-panel {
    display: flex;
    justify-content: flex-end;
}

.about-hero-panel-inner {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(245, 186, 3, 0.08) 100%);
    border: 1px solid rgba(245, 186, 3, 0.16);
    box-shadow: var(--theme-shadow);
}

.about-hero-panel-inner h2 {
    margin: 0 0 18px;
    color: var(--theme-text);
    font-size: 1.45rem;
    font-weight: 700;
}

.about-hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-hero-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--theme-text-muted);
    line-height: 1.65;
}

.about-hero-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--theme-accent);
    box-shadow: 0 0 0 6px rgba(245, 186, 3, 0.12);
}

.about-trust-strip {
    padding: 22px 0 0;
    background: transparent;
}

.about-trust-strip .container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-trust-item {
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(245, 186, 3, 0.12);
    box-shadow: var(--theme-shadow);
}

.about-trust-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-text);
    font-size: 1.1rem;
}

.about-trust-item span {
    color: var(--theme-text-muted);
    line-height: 1.6;
}

.about-us,
.why-choose-us {
    padding: 80px 0;
}

.about-us {
    background: var(--theme-surface);
}

.why-choose-us {
    background: var(--theme-surface-alt);
}

.about-us h2,
.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-text);
    margin-bottom: 30px;
    text-align: center;
}

.about-us p,
.why-choose-us p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(250, 247, 246, 0.88);
}

.why-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-features li {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 14px;
    border-left: 5px solid var(--theme-accent);
    border: 1px solid rgba(245, 186, 3, 0.14);
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.why-features li strong {
    color: var(--theme-accent);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.about-content-section {
    display: none;
}

.about-video-section {
    padding: 24px 0 90px;
    background: var(--theme-surface);
}

.about-video-intro {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-video-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--theme-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-video-intro h2 {
    margin: 0 0 14px;
    color: var(--theme-text);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-video-intro p {
    margin: 0;
    color: var(--theme-text-muted);
    line-height: 1.7;
}

.about-video-frame {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(245, 186, 3, 0.22);
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    box-shadow: var(--theme-shadow);
    aspect-ratio: 16 / 9;
}

.about-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.home-video-section {
    padding: 40px 0 90px;
    background: var(--theme-surface-alt);
}

.home-video-intro {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-video-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--theme-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-video-intro h2 {
    margin: 0 0 14px;
    color: var(--theme-text);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.home-video-intro p {
    margin: 0;
    color: var(--theme-text-muted);
    line-height: 1.7;
}

.home-video-frame {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(245, 186, 3, 0.22);
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    box-shadow: var(--theme-shadow);
    aspect-ratio: 16 / 9;
}

.home-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.about-page-cta {
    padding: 0 0 90px;
    background: var(--theme-surface-alt);
}

.feedback-page {
    background: linear-gradient(135deg, var(--theme-bg) 0%, rgba(12, 13, 13, 0.66) 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    padding: 20px 0;
    color: #f4efe8;
}

.feedback-page .main-container {
    max-width: 800px;
    background: linear-gradient(180deg, var(--theme-surface) 0%, #101010 100%);
    border-radius: 20px;
    box-shadow: var(--theme-shadow);
    margin: 0 auto;
    padding: 15px;
    border: 1px solid rgba(245, 186, 3, 0.14);
}

.feedback-page .logo-section {
    text-align: center;
    margin-bottom: 30px;
    background: var(--theme-bg);
    border-radius: 14px;
}

.feedback-page .logo-section img {
    height: 125px;
    width: auto;
    border-radius: 10px;
}

.feedback-page .header-text {
    text-align: center;
    margin-bottom: 40px;
}

.feedback-page .header-text h1,
.feedback-page .header-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-text);
    margin-bottom: 15px;
}

.feedback-page .header-text p {
    font-size: 1.1rem;
    color: var(--theme-text-muted);
    line-height: 1.6;
}

.feedback-page .google-review-section {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feedback-page .google-review-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 20px;
}

.feedback-page .google-review-link {
    display: inline-flex;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    text-decoration: none;
    border: 2px solid var(--theme-accent);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(245, 186, 3, 0.12);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-accent);
    margin-bottom: 20px;
}

.feedback-page .google-review-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 186, 3, 0.2);
    background: var(--theme-accent);
    color: var(--theme-bg-soft);
}

.feedback-page .google-review-link i {
    font-size: 2rem;
    margin-right: 15px;
}

.feedback-page .share-options {
    margin-top: 25px;
}

.feedback-page .copy-btn {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.feedback-page .copy-btn:hover {
    background: #218838;
}

.feedback-page .qr-section {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 2px dashed rgba(245, 186, 3, 0.35);
}

.feedback-page .qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(250, 247, 246, 0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-page .qr-code:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feedback-page .testimonial-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.feedback-page .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 20px;
    text-align: center;
}

.feedback-page .star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.feedback-page .star {
    font-size: 2.5rem;
    color: #dcdcdc;
    transition: color 0.2s ease-in-out;
    cursor: pointer;
}

.feedback-page .star.selected,
.feedback-page .star:hover {
    color: #ffc107;
}

.feedback-page .form-control {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    color: var(--theme-text);
}

.feedback-page .form-control:focus {
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 0.2rem rgba(245, 186, 3, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--theme-text);
}

.feedback-page .btn-primary {
    background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-soft));
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--theme-bg-soft);
}

.feedback-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 186, 3, 0.3);
    color: var(--theme-bg-soft);
}

.feedback-page .btn-primary:disabled {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .about-us h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .about-us,
    .why-choose-us {
        padding: 60px 0;
    }

    .why-features li {
        padding: 15px;
    }

    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .about-content-section h2 {
        font-size: 2rem;
    }

    .feedback-page {
        padding: 10px;
    }

    .feedback-page .main-container {
        margin: 10px auto;
        padding: 20px 15px;
        border-radius: 16px;
    }

    .feedback-page .header-text h1,
    .feedback-page .header-text h2 {
        font-size: 1.8rem;
    }

    .feedback-page .header-text p {
        font-size: 1rem;
    }

    .feedback-page .google-review-section {
        padding: 20px 15px;
    }

    .feedback-page .google-review-link {
        padding: 15px 20px;
        font-size: 1rem;
        flex-wrap: wrap;
        text-align: center;
    }

    .feedback-page .google-review-link i {
        margin-bottom: 10px;
        font-size: 1.8rem;
    }

    .feedback-page .share-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .feedback-page .qr-code {
        width: 160px;
        height: 160px;
    }

    .feedback-page .section-title {
        font-size: 1.25rem;
    }

    .feedback-page .form-control {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .feedback-page .btn-primary {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
    }

    .feedback-page .star-rating {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .feedback-page .star {
        font-size: 2rem;
    }

    .feedback-page .btn-sm {
        font-size: 1rem;
        padding: 12px 16px;
        margin-bottom: 15px;
    }

    .feedback-page .qr-section {
        padding: 20px;
    }

    .feedback-page .qr-code {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 10px;
    }

    .feedback-page .testimonial-section {
        padding-top: 30px;
    }

    .feedback-page .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .about-us h2,
    .why-choose-us h2 {
        font-size: 1.8rem;
    }

    .why-features li strong {
        font-size: 1.1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}

/* All sides */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* Margin Left */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

/* Margin Right */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

/* Horizontal Margin (left and right) */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }

/* Vertical Margin (top and bottom) */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}
.logo,a,a:focus,a:hover {
    color: var(--theme-accent)
}

.cs-section_title,.hero,.hero-content, {
    position: relative
}

.hero::after,.hero::before{
    position: absolute;
    left: 0
}

.contact-info,.cs-section_heading,.hero,.pricing .container {
    text-align: center
}

.hero,.service-card {
    overflow: hidden
}

.hero h1,.hero p,.portfolio-item:hover figcaption {
    text-transform: uppercase;
    opacity: 0
}

.cs-list,.nav-menu,.pricing-list,.why-features {
    list-style: none
}

html {
    scroll-behavior: smooth
}

.logo-img {
    display: block;
    object-fit: contain;
    width: 100px;
    height: 42px
}

.form-group,.mb-4 {
    margin-bottom: 1.5rem
}




a {
    text-decoration: none;
    transition: color .2s , text-decoration .2s
}

a:focus,a:hover {
    text-decoration: none
}

.logo {
    text-decoration: none
}

.header {
    backdrop-filter: blur(8px);
    transition: .3s
}

.contact-form {
    backdrop-filter: blur(10px)
}

.header.scrolled {
    background: rgba(0,0,0,.98);
    box-shadow: 0 2px 20px rgba(0,0,0,.6)
}

.nav-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.8rem;
    font-weight: 700
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center; /* Added to center items horizontally */
}

.nav-menu a::after {
    content: '';
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--theme-accent);
    transition: width .3s
}

.nav-menu a:hover::after {
    width: 100%
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 24px
}

.portfolio-item {
    width: 100%;
    padding-bottom: 75%;
    background-repeat: no-repeat
}

.portfolio-item h3 {
    margin: 0 0 8px;
    font-size: 1.25rem
}

.portfolio-item p {
    margin: 0;
    font-size: 1rem
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg,#000 0,var(--theme-bg-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-text-soft)
}

.hero::before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/hero_web.webp);
    background-size: cover;
    background-position: center;
    z-index: 1
}

@media (max-width: 768px) {
    .hero::before {
        background: url(../images/hero_mobile.webp);
        background-size: cover;
        background-position: center;
    }
}

.hero::after {
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 1
}

@keyframes float {
    0%,100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-20px) rotate(180deg)
    }
}

.hero-content {
    z-index: 2;
    padding: 0 1rem;
    max-width: 800px
}

.hero h1 {
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: 1s .5s forwards fadeInUp;
    font-weight: 200
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: 1s .7s forwards fadeInUp
}

.cta-button {
    opacity: 0;
    animation: 1s .9s forwards fadeInUp
}

.pricing,.why-choose-us {
    padding: 4rem 0;
    background-color: #111;
    color: #faf7f6
}

.pricing .container {
    max-width: 1080px;
    margin: 0 auto
}

.pricing h2,.why-choose-us h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff
}

.pricing p,.why-choose-us p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 2rem
}

.pricing-list {
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 1.5rem
}

.pricing-list li {
    background: #1a1a1a;
    border-radius: .5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.4)
}

.pricing-list h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem
}

.cs-section_title {
    font-weight: 700;
    display: inline-block
}

.cs-section_title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#00796b,#4caf50);
    border-radius: 2px
}

.cs-list {
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,77,64,.1)
}

.contact-info p,.nav-menu li {
    margin: 0
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem
    }

    .cs-section_title {
        font-size: 2.25rem
    }

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.about-us .container,.why-choose-us .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.why-features {
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    text-align: left
}

.why-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #cfcfcf
}

.why-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: .2rem;
    color: #f5ba03;
    font-size: 1.25rem;
    line-height: 1
}

.why-features li strong {
    display: block;
    margin-bottom: .5rem;
    color: #fff
}

.about-us {
    padding: 4rem 0;
    background-color: #ffffff
}

.about-us h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111
}

.about-us p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333
}

.section-title,.services h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    text-align: center
}

.services {
    padding: 5rem 0;
    background: linear-gradient(135deg,#1a1a1a 0%,#2d2d2d 100%);
}

.services h2 {
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff
}

.section-title {
    margin-bottom: 3rem;
    color: #e0e0e0;
    position: relative
}

.contact-info h3::after,.section-title::after,.service-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 60px;
    height: 2px;
    background: #f5ba03;
    border-radius: 1px
}

.portfolio-grid,.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}

.service-card {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.7);
    transition: .3s;
    position: relative
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(129,212,250,.1),transparent);
    transition: left .5s
}

.portfolio-item,.slider-section-process .mySwiper,.submit-btn,.testimonial-slider {
    position: relative;
    overflow: hidden
}

.cta2 .cta-button,.seo-cta .cta-button {
    text-decoration: none;
    transition: background .3s , transform .3s
}

.service-card:hover::before {
    left: 100%
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.9)
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,rgba(245,186,3,.63),#f5ba03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e0e0e0
}

.service-card p {
    color: #cfcfcf;
    line-height: 1.6
}



.faq .container,.portfolio .container,.seo-cta .container,.slider-section-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.portfolio h2,.slider-section-process h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0
}

.slider-section-process .mySwiper .swiper-wrapper {
    overflow: visible;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem
}

.slider-section-process .mySwiper .swiper-slide {
    /* Swiper will handle slide width based on slidesPerView */
}

.slider-section-process .mySwiper .swiper-slide:not(:last-child) {
    /* Swiper will handle space between slides */
}

.slide-card {
    background: linear-gradient(135deg,#1a1a1a 0%,#2d2d2d 100%);
    border-radius: 10px;
    padding: 20px;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    box-sizing: border-box;
    position: relative; /* Needed for absolute positioning of the circle */
    min-height: 300px; /* Increase card height */
    margin-top: 50px; /* Add margin-top to create space for the circle */
}

.slide-icon {
    flex-shrink: 0
}

.slide-text h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: rgba(245,186,3,.75);
    line-height: 1.2
}

.slide-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: #cfcfcf
}

.step-number-circle {
    position: absolute;
    top: 0px; /* Position at the top edge of the card */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #4CAF50; /* Green color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10; /* Ensure it's above other elements */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slider-section-process .swiper-pagination-bullet {
    background: #f5ba03;
    opacity: .7
}

.slider-section-process .swiper-pagination-bullet-active {
    opacity: 1
}

.seo-cta {
    background: linear-gradient(135deg,#000 0,#111 100%)
}

.cta-content,.seo-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.seo-cta .cta-button {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem
}

.seo-cta .cta-button:focus,.seo-cta .cta-button:hover {
    transform: translateY(-2px)
}

.faq,.portfolio {
    padding: 4rem 1rem;
    background-color: #111
}

.portfolio-item {
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.7);
    transition: transform .3s , box-shadow .3s
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0,0,0,.8)
}

.portfolio-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.5);
    color: #e0e0e0;
    padding: 1rem;
    text-align: left;
    transition: opacity .3s
}

.portfolio-item figcaption h3 {
    font-size: 1.25rem;
    margin: 0 0 .25rem;
    color: rgba(245,186,3,.61)
}

.portfolio-item figcaption p {
    font-size: 1rem;
    margin: 0;
    color: #cfcfcf
}

.cs-section_heading {
    margin-bottom: 2rem
}

.cs-section_title {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: .5rem
}

.cs-section_subtitle {
    font-weight: 400;
    opacity: 1;
    font-size: 1.25rem;
    color: #cfcfcf
}

.cs-accordian {
    background: #2a2a2a;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.4)
}

.cs-accordian_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background-color: #1f1f1f;
    color: #f0f0f0;
    transition: background .3s;
    min-height: 60px
}

.cs-accordian_head:hover {
    background-color: #333
}

.cs-accordian_toggle {
    flex-shrink: 0;
    margin-left: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cs-accordian_toggle svg {
    transform: rotate(-90deg);
    transition: transform .3s;
    width: 16px;
    height: 16px;
    fill: #f0f0f0
}

.cs-accordian_title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    padding-right: 1rem
}

.cs-accordian_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s;
    background-color: #2a2a2a
}

.cs-accordian_body_in {
    padding: 0 1.5rem 1rem;
    visibility: hidden;
    color: #e0e0e0;
    line-height: 1.6
}

.cs-accordian.active .cs-accordian_body {
    max-height: 800px
}

.cs-accordian.active .cs-accordian_body_in {
    visibility: visible
}

.cs-accordian.active .cs-accordian_toggle svg {
    transform: rotate(0)
}

.star {
    margin-right: .25rem;
    color: #ddd;
    font-size: 1.5rem
}

.testimonials {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top center, rgba(245, 186, 3, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(12, 13, 13, 0.98) 0%, rgba(24, 24, 24, 0.96) 52%, rgba(12, 13, 13, 0.99) 100%);
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,186,3,0.16) 0%, rgba(245,186,3,0) 70%);
    filter: blur(10px);
    pointer-events: none;
}

.testimonials .section-header {
    margin-bottom: 1.5rem;
}

.testimonials .section-eyebrow {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245,186,3,0.12);
    border: 1px solid rgba(245,186,3,0.2);
    color: var(--theme-accent-soft);
}

.reviews-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 18px;
    max-width: 980px;
    margin: 0 auto 42px;
}

.reviews-highlight-card,
.reviews-metric {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(245,186,3,0.16);
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
    backdrop-filter: blur(14px);
}

.reviews-highlight-card::before,
.reviews-metric::before,
.testimonial-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    pointer-events: none;
}

.reviews-highlight-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 28px;
}

.reviews-highlight-score {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(245,186,3,0.24), rgba(245,186,3,0.08));
    border: 1px solid rgba(245,186,3,0.22);
    color: var(--theme-text);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.reviews-highlight-copy strong,
.reviews-metric strong {
    display: block;
    color: var(--theme-text);
}

.reviews-highlight-copy strong {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.reviews-highlight-copy span,
.reviews-metric span {
    color: var(--theme-text-muted);
    line-height: 1.6;
}

.reviews-highlight-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reviews-metric {
    min-height: 100%;
    padding: 22px 18px;
    border-radius: 24px;
    text-align: center;
}

.reviews-metric strong {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.testimonial-slider {
    padding: 10px 54px 18px;
}

.slider-track {
    display: flex;
    transition: transform .35s ease;
}

.contact-info h3,.cta-button,.dot {
    display: inline-block
}

.testimonial-item {
    position: relative;
    min-width: 100%;
    padding: 34px 34px 30px;
    background:
        linear-gradient(180deg, rgba(245,186,3,0.08) 0%, rgba(245,186,3,0.02) 18%, rgba(255,255,255,0.03) 100%),
        linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(0,0,0,.3);
    margin: 0 12px;
    border: 1px solid rgba(245,186,3,.16);
    backdrop-filter: blur(16px);
}

.dot.active,.slider-arrow {
    background: #f5ba03
}

.rating {
    width: fit-content;
    margin-bottom: 24px;
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(12,13,13,0.35);
    border: 1px solid rgba(245,186,3,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.star.filled {
    color: #ffc107;
    text-shadow: 0 0 14px rgba(245,186,3,.3);
}

.testimonial-item blockquote {
    position: relative;
    padding-left: 28px;
    font-style: normal;
    font-size: clamp(1.02rem, 1.4vw, 1.14rem);
    line-height: 1.85;
    margin: 0 0 26px;
    color: var(--theme-text);
}

.testimonial-item blockquote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(245,186,3,.7);
}

.author {
    font-weight: 700;
    color: var(--theme-text);
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author [itemprop="name"] {
    font-size: 1.04rem;
    letter-spacing: 0.01em;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-text);
    background: linear-gradient(180deg, rgba(245,186,3,0.95), rgba(212,160,3,0.92));
    border: 1px solid rgba(255,255,255,0.16);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.65rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 14px 28px rgba(0,0,0,.28);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 18px 34px rgba(245,186,3,.2);
}

.prev-arrow {
    left: -18px
}

.next-arrow {
    right: -18px
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    margin: 0;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, width .25s ease;
}

.dot.active {
    width: 34px;
    border-radius: 999px;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(245,186,3,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.review-platform {
    color: var(--theme-text-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.testimonials-intro {
    max-width: 680px;
    margin: 0 auto;
}

.reviews-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.reviews-cta p {
    margin: 0;
    color: var(--theme-text-muted);
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245,186,3,.16), rgba(245,186,3,.08));
    color: var(--theme-text);
    border: 1px solid rgba(245,186,3,.24);
    box-shadow: 0 18px 32px rgba(0,0,0,.22);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.google-reviews-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(245,186,3,.12);
    border-color: rgba(245,186,3,.42);
}

.google-reviews-link img {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .reviews-highlight {
        grid-template-columns: 1fr;
    }

    .reviews-highlight-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonial-slider {
        padding-left: 18px;
        padding-right: 18px;
    }

    .prev-arrow {
        left: 4px;
    }

    .next-arrow {
        right: 4px;
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 88px 0;
    }

    .reviews-highlight {
        gap: 14px;
        margin-bottom: 28px;
    }

    .reviews-highlight-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .reviews-highlight-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reviews-metric {
        padding: 18px;
    }

    .testimonial-slider {
        margin-top: 0 !important;
        padding: 6px 0 16px;
    }

    .testimonial-item {
        padding: 28px 22px 24px;
        margin: 0;
    }

    .slider-arrow {
        display: none;
    }

    .testimonial-item blockquote {
        font-size: 1rem;
        line-height: 1.8;
    }
}

.seo-cta {
    position: relative;
    padding: 4rem 1rem;
    color: #fff;
    background-image: url('images/cta.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden
}

.seo-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 0
}

.contact,.contact-info h3,.container,.footer,.service-title {
    position: relative
}

.seo-cta .container,.seo-cta .cta-content {
    position: relative;
    z-index: 1
}

.seo-cta h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #faf7f6;
    line-height: 1.2
}

.seo-cta p,body {
    line-height: 1.6
}

.seo-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #f0f0f0
}

.cta-button {
    background: 0 0;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 1.125rem;
    transition: background .3s , color .3s;
    z-index: 1
}

.cta-button:focus,.cta-button:hover {
    outline: #fff solid 2px;
    background: rgba(255,255,255,.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,.2);
    text-decoration: none !important;
}

.contact {
    background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
    color: #cfcfcf;
    padding: 4rem 0;
    overflow: hidden
}

.contact::before,.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.contact-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cfcfcf
}

.contact-info a {
    color: #f5ba03;
    text-decoration: none;
    font-weight: 500;
    transition: .3s
}

.contact-info a:focus,.contact-info a:hover {
    color: #fff;
    text-decoration: none
}

.contact-info h4 {
    font-size: 1.3rem;
    color: #fff;
    margin: 2rem 0 1rem
}

.contact-info iframe {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    border: 2px solid rgba(245,186,3,.2)
}

.contact-form {
    background: rgba(245,186,3,.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(245,186,3,.2)
}

.form-group input,.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(245,186,3,.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px)
}

.form-group input::placeholder,.form-group textarea::placeholder {
    color: #e7e7e7
}

.form-group input:focus,.form-group textarea:focus {
    background: rgba(255,255,255,.15);
    box-shadow: 0 0 0 3px rgba(245,186,3,.1)
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,#f5ba03,#d4a003);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    text-transform: uppercase;
    letter-spacing: .5px
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,186,3,.3);
    background: linear-gradient(135deg,#d4a003,#f5ba03)
}

#formResponse {
    margin-top: 1rem;
    color: #f5ba03;
    font-weight: 500
}

*,body,html {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Arial,sans-serif;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.main-content {
    flex: 1;
    padding: 4rem 2rem;
    text-align: center;
    color: #666
}

.container {
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.footer {
    background: linear-gradient(135deg,#000 0,#1a1a1a 100%);
    color: #cfcfcf;
    overflow: hidden;
    border-top: 2px solid #f5ba03
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
    padding: 3rem 0 2rem
}

.company-info {
    text-align: left
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.company-logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: .3s
}

.company-logo:hover img {
    filter: brightness(1.3);
    transform: scale(1.05)
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .75rem
}

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

    50% {
        opacity: .7;
        transform: scale(1.1)
    }
}

.address {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cfcfcf
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center
}

.contact-links a {
    color: #f5ba03;
    text-decoration: none;
    font-weight: 500;
    padding: .6rem 1.2rem;
    border-radius: 20px;
    background: rgba(245,186,3,.1);
    border: 1px solid rgba(245,186,3,.3);
    transition: .3s;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem
}

.contact-links a:focus,.contact-links a:hover {
    color: #fff;
    text-decoration: none
}

.contact-links a[href^="tel:"]::before {
    content: '📞'
}

.contact-links a[href^="mailto:"]::before {
    content: '✉️'
}

.separator {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom,transparent,#f5ba03,transparent);
    margin: 0 auto;
    opacity: .6
}

.whatsapp-float,.whatsapp-float img {
    width: 75px!important;
    height: 75px!important
}

.service-areas {
    text-align: right
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff
}

.areas-list {
    font-size: .95rem;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 1rem
}

.credentials {
    background: rgba(245,186,3,.1);
    padding: .75rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(245,186,3,.2);
    font-size: .9rem;
    color: #f5ba03;
    font-weight: 500
}

.footer-bottom {
    border-top: 1px solid rgba(245,186,3,.2);
    padding: 1.5rem 0;
    text-align: center
}

.copyright {
    font-size: .95rem;
    color: #cfcfcf;
    opacity: .8
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 10000;
    display: block;
    transition: transform .2s , box-shadow .2s
}

.whatsapp-float img {
    display: block
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

@media (min-width: 600px) {
    .portfolio-grid,.services-grid {
        grid-template-columns:repeat(2,1fr);
        gap: 1.5rem
    }
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns:repeat(3,1fr);
        gap: 2rem
    }

    .portfolio-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 2rem
    }

    .testimonial-item {
        margin: 0 2rem
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns:repeat(3,1fr);
        gap: 2.5rem
    }

    .portfolio-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 2.5rem
    }
}

.slide-text p {
    margin-bottom: 80px
}



@media (max-width: 992px) {
    .cs-accordian_head {
        padding:.75rem 1rem;
        min-height: 50px
    }

    .cs-accordian_title {
        font-size: .9rem;
        padding-right: .5rem
    }

    .cs-accordian_toggle {
        margin-left: .5rem;
        width: 20px;
        height: 20px
    }

    .cs-accordian_toggle svg {
        width: 14px;
        height: 14px
    }

    .cta2 h2,.hero h1,.seo-cta h2 {
        font-size: 2rem;
        text-transform: uppercase;
    }

    .cta-button,.hero p,.seo-cta p {
        font-size: 1rem
    }

    .cta-button {
        width: 100%;
        padding: 1rem
    }

    .company-info,.footer-content,.service-areas {
        text-align: center
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .company-logo,.company-name,.contact-links {
        justify-content: center
    }

    .service-title::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .nav-menu,.separator {
        display: none
    }

    .swiper-button-next,.swiper-button-prev,.swiper-rtl .swiper-button-next,.swiper-rtl .swiper-button-prev {
        display: none!important
    }

    .portfolio-grid,.services-grid {
        grid-template-columns: 1fr
    }

    .contact-content {
        display: block
    }

    .cta2 .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem
    }
}







.cta2 {
    position: relative;
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
    overflow: hidden;
}

.cta2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 0;
}

.cta2 .container {
    position: relative;
    z-index: 1;
}

.cta2 .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem
}

.cta2 h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: #faf7f6
}

.cta2 .cta-button {
    display: inline-block;
    background: 0 0;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 1.125rem
}

.cta2 .cta-button:focus,.cta2 .cta-button:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-2px)
}

.swiper-pagination-bullet {
    width: 48px!important;
    height: 48px!important;
    margin: 0 4px!important;
    position: relative;
    background-color: transparent;
    box-sizing: content-box;
    opacity: 1
}

.swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: rgba(0,0,0,.4);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: background-color .2s;
    pointer-events: none
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background-color: rgba(0,0,0,.8)
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.85);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,.3)
}

#cookie-banner>div {
    flex: 1;
    margin-right: 16px;
    line-height: 1.4
}

#cookie-banner>div a {
    color: #ffd700;
    text-decoration: none
}

#cookie-banner button#accept-cookies {
    background-color: #ffd700;
    border: none;
    color: #000;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background-color .2s
}

#cookie-banner button#accept-cookies:hover {
    background-color: #e0bb00
}

@media (max-width: 480px) {
    #cookie-banner {
        flex-direction:column;
        text-align: center;
        padding: 12px
    }

    #cookie-banner>div {
        margin: 0 0 12px
    }

    #cookie-banner button#accept-cookies {
        width: 100%
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.field-error {
    color: #dc3545;
    font-size: .875rem;
    margin-top: .25rem;
    display: none
}

.field-error.show,.form-response.show {
    display: block
}

.form-response {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 4px;
    display: none;
    font-weight: 500
}

.form-response.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb
}

.form-response.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb
}

.form-response.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb
}

.submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: 1s linear infinite spin
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.form-group input,.form-group textarea {
    transition: .3s
}

.form-group input:focus,.form-group textarea:focus {
    outline: 0;
    border-color: #f5ba03;
    box-shadow: 0 0 0 2px rgb(245, 186, 3)
}

.form-group input.error,.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220,53,69,.25)
}

.form-group input.success,.form-group textarea.success {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40,167,69,.25)
}

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

.modal-content {
    background-color: #e7e7e7;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: .3s ease-out modalSlideIn
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

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

.modal-header {
    background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
    color: #fff;
    padding: 20px 30px;
    border-bottom: none;
    position: relative
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    transition: opacity .2s
}

.btn,.learn-more-link {
    cursor: pointer;
    font-weight: 500
}

.close:hover {
    opacity: .7
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.6
}

.modal-body h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem
}

.modal-body h3:first-child {
    margin-top: 0
}

.modal-body p {
    margin-bottom: 15px;
    color: #555
}

.modal-body ul {
    margin: 10px 0;
    padding-left: 20px
}

.modal-body li {
    margin-bottom: 8px;
    color: #555
}

.modal-footer {
    padding: 20px 30px;
    background-color: #e7e7e7;
    border-top: 1px solid #e9ecef;
    text-align: right
}

.btn {
    background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: transform .2s , box-shadow .2s
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102,126,234,.4)
}

.cookie-notice {
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px
}

.cookie-notice p {
    margin: 0;
    font-size: 14px
}

.learn-more-link {
    color: #ffd700;
    text-decoration: none
}

.learn-more-link:hover {
    color: #ffed4e
}



.warranty {
    background: linear-gradient(135deg,#111 0%,#1a1a1a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(data:image/svg+xml,<svg\ xmlns=\"http://www.w3.org/2000/svg\"\ viewBox=\"0\ 0\ 1000\ 1000\"><defs><radialGradient\ id=\"warranty-bg\"\ cx=\"500\"\ cy=\"500\"\ r=\"500\"><stop\ offset=\"0%\"\ stop-color=\"%23f5ba03\"\ stop-opacity=\"0.05\"/><stop\ offset=\"100%\"\ stop-color=\"%23f5ba03\"\ stop-opacity=\"0\"/></radialGradient></defs><circle\ cx=\"500\"\ cy=\"500\"\ r=\"500\"\ fill=\"url\(%23warranty-bg\
)\"/></svg>);
    pointer-events: none;
    z-index: 0
}

.warranty .container {
    position: relative;
    z-index: 1
}

.warranty .cs-section_heading {
    text-align: center;
    margin-bottom: 3rem
}

.warranty .cs-section_title {
    font-size: 2.5rem;
    color: #faf7f6;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block
}

.warranty .cs-section_title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#f5ba03,#d4a003);
    border-radius: 2px
}

.warranty .cs-section_subtitle {
    font-size: 1.125rem;
    color: #cfcfcf;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 2rem;
    margin-top: 4rem
}

.warranty-card {
    background: #e7e7e7;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    border: 1px solid rgba(245,186,3,.2);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s forwards
}

.warranty-card:nth-child(1) {
    animation-delay: .1s
}

.warranty-card:nth-child(2) {
    animation-delay: .2s
}

.warranty-card:nth-child(3) {
    animation-delay: .3s
}

.warranty-card:nth-child(4) {
    animation-delay: .4s
}

.warranty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,#f5ba03,#d4a003)
}

.warranty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,.4)
}

.warranty-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#f5ba03,#d4a003);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #fff;
    position: relative
}

.warranty-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,#f5ba03,transparent,#d4a003);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease
}

.warranty-card:hover .warranty-icon::after {
    opacity: .6
}

.warranty-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0c0d0d;
    margin-bottom: 1rem;
    line-height: 1.3
}

.warranty-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem
}

.warranty-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0
}

.warranty-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .8rem;
    color: #333;
    line-height: 1.5
}

.warranty-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #f5ba03;
    font-weight: bold;
    font-size: 1.1rem
}

.warranty-highlight {
    background: rgb(246, 241, 241);
    border: 1px solid rgb(245, 186, 3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center
}

.warranty-highlight h4 {
    color: #0c0d0d;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    font-weight: 600
}

.warranty-highlight p {
    color: #333;
    margin: 0;
    font-size: 1rem
}

.warranty-contact {
    background: rgba(245,186,3,.05);
    border: 2px solid rgba(245,186,3,.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center
}

.warranty-contact h4 {
    color: #faf7f6;
    font-size: 1.3rem;
    margin-bottom: 1rem
}

.warranty-contact p {
    color: #cfcfcf;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.warranty-contact .contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center
}

.warranty-contact .contact-links a {
    color: #f5ba03;
    text-decoration: none;
    font-weight: 600;
    padding: .8rem 1.5rem;
    border-radius: 25px;
    background: rgba(245,186,3,.1);
    border: 1px solid rgba(245,186,3,.3);
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem
}

.warranty-contact .contact-links a:hover {
    background: rgba(245,186,3,.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,186,3,.3)
}

.warranty-contact .contact-links a[href^="tel:"]::before {
    content: '📞'
}

.warranty-contact .contact-links a[href^="mailto:"]::before {
    content: '✉️'
}

@media (max-width: 768px) {
    .about-hero {
        padding: 132px 0 72px;
    }

    .about-hero .container {
        grid-template-columns: 1fr;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-trust-strip .container {
        grid-template-columns: 1fr;
    }

    .warranty {
        padding:4rem 0
    }

    .warranty .cs-section_title {
        font-size: 2rem
    }

    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem
    }

    .warranty-card {
        padding: 1.5rem
    }

    .warranty-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem
    }

    .warranty-contact .contact-links {
        flex-direction: column
    }

    .warranty-contact .contact-links a {
        width: 100%;
        justify-content: center
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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




.blog-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000
}

.blog-modal-overlay.show {
    display: flex
}

.blog-modal {
    background: #1e1e1e;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,.8)
}

.blog-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #2a2a2a;
    border-bottom: 1px solid #333;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.blog-modal-title {
    margin: 0;
    font-size: 1.25rem;
    color: #f1f1f1
}

.blog-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    transition: color .2s
}

.blog-close-btn:hover {
    color: #fff
}

.blog-modal-body {
    padding: 1rem;
    color: #ddd;
    background: transparent
}

.blog-modal-body .post-meta {
    font-size: .875rem;
    color: #888;
    margin-bottom: .75rem
}

.blog-modal-body h3 {
    margin-top: 1rem;
    color: #fff
}

.blog-modal-body p {
    line-height: 1.6;
    color: #ccc
}

.blog-modal-body figure.image {
    margin: 1rem 0;
    text-align: center
}

.blog-modal-body img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.5)
}

.blog-modal::-webkit-scrollbar {
    width: 8px
}

.blog-modal::-webkit-scrollbar-track {
    background: #2a2a2a
}

.blog-modal::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px
}

.blog-modal-body p.tip {
    background: rgba(255,255,255,.05);
    border-left: 4px solid #fc0;
    padding: .75rem 1rem;
    margin: 1rem 0;
    border-radius: 4px
}

.blog-modal-body p.tip strong {
    color: #fc0;
    font-size: 1.05rem
}

.blog-modal-body p.tip br {
    content: "";
    margin: .5rem 0;
    display: block
}

.blog h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;

}

@media (max-width: 768px) {
    .contact-form {
        padding:1rem
    }

    .posts-container {
        padding: 0
    }
}
.blog {
    padding: 6rem 0;

}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog h2 {
    text-transform: uppercase;
    position: relative;
    font-size: 2.5rem;
    color: #faf7f6;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: .5rem;
}

.blog h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #f5ba03;
    border-radius: 1px;
    transform: translateX(-50%);
}

/* Swiper Slider Styles */
.blog-swiper {
    padding: 0 0 3rem 0;
}

.blog-swiper .swiper-slide {
    height: auto;
}

.post-card {
    background: #e7e7e7;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.post-card img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-card .post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card .post-content h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    color: #0c0d0d;
}

.post-card .post-content .post-meta {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-card .post-content .tip {
    flex: 1;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.5;
}
.section-title,.contact-info h3,.service-title {
    position: relative
}

.contact-info h3::after,.section-title::after,.service-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #f5ba03;
    border-radius: 1px;
    transform: translateX(-50%)
}

.blog {
    padding: 6rem 0
}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.blog h2 {
    text-transform: uppercase;
    position: relative;
    font-size: 2.5rem;
    color: #faf7f6;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: .5rem
}

.blog h2::after {
    text-transform: uppercase;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #f5ba03;
    border-radius: 1px;
    transform: translateX(-50%)
}

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem
}

.post-card {
    background: #e7e7e7;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease , box-shadow .3s ease
}

.post-card:hover {
    transform: translateY(-5px)
}

.post-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover
}

.post-card .post-content {
    padding: 1.5rem
}

.post-card .post-content h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    color: #0c0d0d
}

.post-card .post-content .post-meta {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1rem
}

.post-card .post-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.4
}

.cs-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.15)
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,#aaea66 0%,#2f6e21 100%);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease
}

.share-btn:hover {
    transform: translateY(-2px)
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: white
}

.social-share {
    display: flex;
    gap: 8px
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s ease;
    position: relative
}

.whatsapp {
    background: linear-gradient(135deg,#25d366 0%,#128c7e 100%)
}

.facebook {
    background: linear-gradient(135deg,#4267b2 0%,#365899 100%)
}

.email {
    background: linear-gradient(135deg,#ea4335 0%,#d33b2c 100%)
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,.2)
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: white
}

@media (max-width: 768px) {
    .cs-section_title {
        font-size:2.2rem
    }

    .cs-list {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .cs-list li {
        padding: 25px
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px
    }

    .cs-section_title {
        font-size: 1.8rem
    }

    .cs-section_subtitle {
        font-size: 1.1rem
    }
}

.investment {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.investment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(245,186,3,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.investment h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.investment-subtitle {
    text-align: center;
    color: #cfcfcf;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245,186,3,0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(245,186,3,0.8), #f5ba03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
}

.process-step h3 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-step p {
    color: #cfcfcf;
    font-size: 0.9rem;
    line-height: 1.5;
}

.investment-ranges {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 3rem;
}

.ranges-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ranges-header h3 {
    color: #e0e0e0;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.ranges-header p {
    color: #cfcfcf;
    font-size: 1rem;
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.range-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.range-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f5ba03;
    margin-bottom: 0.5rem;
}

.range-label {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.range-description {
    color: #cfcfcf;
    font-size: 0.9rem;
    line-height: 1.5;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.value-prop {
    background: rgba(245,186,3,0.05);
    border-left: 3px solid #f5ba03;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(245,186,3,0.1);
}

.value-prop h4 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-prop p {
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(245,186,3,0.1), rgba(245,186,3,0.05));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(245,186,3,0.2);
}

.cta-section h3 {
    color: #e0e0e0;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #cfcfcf;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(245, 186, 3, 0.57), rgba(245, 186, 3, 0.35));
    color: #faf7f6;
    border-color: rgba(255,255,255,.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245,186,3,0.4);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(245,186,3,0.5);
    color: #f5ba03;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .investment h2 {
        text-transform: uppercase;
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .investment-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .investment-ranges {
        padding: 2rem 1.5rem;
    }

    .range-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .investment {
        padding: 2rem 0;
    }

    .investment h2 {
        text-transform: uppercase;
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .investment-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .process-step {
        padding: 1.5rem 1.2rem;
    }

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

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .investment-ranges {
        padding: 1.5rem 1rem;
    }

    .ranges-header h3 {
        font-size: 1.5rem;
    }

    .range-item {
        padding: 1.2rem;
    }

    .range-price {
        font-size: 1.4rem;
    }

    .value-prop {
        padding: 1.2rem;
    }

    .cta-section {
        padding: 1.5rem 1rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }

    .investment h2 {
        text-transform: uppercase;
        font-size: 1.6rem;
    }

    .process-step, .investment-ranges, .cta-section, .value-prop {
        padding: 1rem;
    }

    .btn-primary, .btn-secondary {
        max-width: 260px;
        padding: 0.9rem 1.2rem;
    }
}

.wetrooms {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.wetrooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(245,186,3,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245,186,3,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.wetrooms h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.wetrooms > .container > p {
    text-align: center;
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wetrooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.wetroom-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wetroom-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245,186,3,0.8), transparent);
    transition: left 0.5s ease;
}

.wetroom-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(245,186,3,0.3);
}

.wetroom-feature:hover::before {
    left: 100%;
}

.wetroom-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245,186,3,0.8), #f5ba03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(245,186,3,0.3);
    transition: all 0.3s ease;
}

.wetroom-feature:hover .wetroom-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(245,186,3,0.4);
}

.wetroom-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.wetroom-feature img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wetroom-feature:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.wetroom-feature p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: rgba(245,186,3,0.1);
    border-radius: 15px;
    border: 1px solid rgba(245,186,3,0.2);
    margin-top: 2rem;
}

.cta-section p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 0;
}

.cta-section a {
    color: #f5ba03;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.cta-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5ba03, rgba(245,186,3,0.6));
    transition: width 0.3s ease;
}

.cta-section a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(245,186,3,0.5);
}

.cta-section a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wetrooms h2 {
        text-transform: uppercase;
        font-size: 2rem;
    }

    .wetrooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wetroom-feature {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wetrooms {
        padding: 2rem 0;
    }

    .wetrooms h2 {
        text-transform: uppercase;
        font-size: 1.7rem;
    }

    .wetrooms > .container > p {
        font-size: 1rem;
    }

    .wetroom-feature img {
        height: 200px;
    }
}
/* Services List Styles */
.bathroom-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bathroom-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.bathroom-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bathroom-service-icon {
    font-size: 2.5rem;
    color: #222222;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bathroom-service-content {
    flex: 1;
}

.bathroom-service-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .bathroom-services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bathroom-service-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .bathroom-service-icon {
        font-size: 2rem;
    }

    .bathroom-service-content h3 {
        font-size: 1.1rem;
    }

    .bathroom-service-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bathroom-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .bathroom-service-icon {
        margin-top: 0;
    }
}

.opening-hours {
    margin-top: 50px;
}

.opening-hours h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.opening-hours p {
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.5;
}

.opening-hours p:last-child {
    margin-bottom: 0;
}

 .small-bathroom-ideas{
    background: #fff;
    padding-top:80px;
   padding-bottom:80px;
}

.testimonials{
    background:
        radial-gradient(circle at top center, rgba(245, 186, 3, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(12, 13, 13, 0.98) 0%, rgba(24, 24, 24, 0.96) 52%, rgba(12, 13, 13, 0.99) 100%);
    padding-top:120px;
    padding-bottom:120px;
}

.slider-process{
    padding-top:120px;
    padding-bottom:120px;
}
.wetrooms {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* --- Styles for Refactored area_template.php --- */
.page-header {
    background-color: #f8f9fa; /* A light, clean background */
    padding: 4rem 1rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Grid Images */
.area-service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.area-service-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1; /* Changed to 1/1 for square images */
    background-color: #edf2f7;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.area-service-card-link:hover .area-service-image-wrapper {
    opacity: 0.8;
}

.area-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed to 'cover' to fill the container */
}

.area {
    padding: 5rem 0 4rem 0;
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-elevated) 100%);
    text-align: center;
    color: var(--theme-text);
    position: relative;
}

.area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,186,3,0.3), transparent);
}

.area h1 {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

.area p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--theme-text-soft);
    font-size: 1.1rem;
}

.section {
    padding: 4.5rem 0;
    background: var(--theme-bg-soft);
}

.section-alt {
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-elevated) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--theme-text);
    font-weight: 700;
}

.section-header .subtitle {
    color: var(--theme-text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.area-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--theme-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(245,186,3,0.1);
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    border-color: rgba(245,186,3,0.4);
}

.area-service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--theme-surface-elevated);
}

.area-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6));
}

.area-card:hover .area-service-image img {
    transform: scale(1.08);
}

.area-card-content {
    padding: 1.75rem 1.5rem;
    flex: 1;
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--theme-text);
}

.area-card p {
    color: var(--theme-text-muted);
    line-height: 1.6;
}

.intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--theme-surface), var(--theme-surface-elevated));
}

.intro-box {
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--theme-shadow);
    border: 1px solid rgba(245,186,3,0.1);
}

.intro-box h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--theme-text);
    font-size: 1.85rem;
    font-weight: 700;
}

.intro-box p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--theme-text-muted);
    font-size: 1.05rem;
}

.case-study-box {
    background: linear-gradient(135deg, var(--theme-surface-elevated), var(--theme-surface));
    color: var(--theme-text);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #f5ba03;
}

.case-study-box h3 {
    color: var(--theme-accent);
    margin-bottom: 1rem;
}

.local-insight {
    background: rgba(245,186,3,0.1);
    border-left: 4px solid #f5ba03;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.local-insight strong {
    color: var(--theme-accent);
}

.benefits-section {
    padding: 5rem 0;
    background: var(--theme-bg-soft);
    text-align: center;
}

.benefits-block {
    max-width: 850px;
    margin: 0 auto 3rem;
}

.benefits-block h2 {
    font-size: 2rem;
    color: var(--theme-text);
    margin-bottom: 1.25rem;
}

.benefits-block p {
    color: var(--theme-text-muted);
    line-height: 1.8;
}

.benefits-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.benefit-item {
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(245,186,3,0.1);
}

.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--theme-surface), var(--theme-surface-elevated));
}

.section-header {
    max-width: 860px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--theme-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-header h2 {
    text-align: center;
    color: var(--theme-text);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0 0 14px;
}

.section-header p {
    text-align: center;
    color: var(--theme-text-muted);
    line-height: 1.7;
    margin: 0;
}

.section-header-dark h2,
.section-header-dark p {
    color: #111;
}

.section-header-dark .section-eyebrow {
    color: var(--theme-accent-deep);
}

.about-us .section-header h2,
.about-us .section-header p,
.why-choose-us .section-header h2,
.why-choose-us .section-header p,
.services .section-header h2,
.services .section-header p,
.slider-process .section-header h2,
.slider-process .section-header p,
.wetrooms .section-header h2,
.wetrooms .section-header p,
.portfolio .section-header h2,
.portfolio .section-header p,
.testimonials .section-header h2,
.testimonials .section-header p,
.contact .section-header h2,
.contact .section-header p {
    color: var(--theme-text);
}

.about-us .section-header .section-eyebrow,
.why-choose-us .section-header .section-eyebrow,
.services .section-header .section-eyebrow,
.slider-process .section-header .section-eyebrow,
.wetrooms .section-header .section-eyebrow,
.packages .section-header .section-eyebrow,
.portfolio .section-header .section-eyebrow,
.testimonials .section-header .section-eyebrow,
.contact .section-header .section-eyebrow {
    color: var(--theme-accent);
}

.packages .section-header h2,
.packages .section-header p {
    color: var(--theme-text);
}

.about-us .section-header.section-header-dark h2,
.about-us .section-header.section-header-dark p {
    color: #111;
}

.about-us .section-header.section-header-dark .section-eyebrow {
    color: var(--theme-accent-deep);
}

.small-bathroom-ideas .section-header h2,
.small-bathroom-ideas .section-header p {
    color: #111;
}

.small-bathroom-ideas .section-header .section-eyebrow {
    color: var(--theme-accent-deep);
}

.services-header {
    max-width: 820px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.services-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--theme-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services h2 {
    text-align: center;
    color: var(--theme-text);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0 0 14px;
}

.services-header p {
    text-align: center;
    color: var(--theme-text-muted);
    line-height: 1.7;
    margin: 0;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.blog-post-container {
    max-width: 1200px;
    margin: 120px auto 40px auto;
    padding: 20px;
    font-family: sans-serif;
    line-height: 1.6;
    color: var(--theme-text-soft);
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    color: var(--theme-text-muted);
}

.breadcrumb a {
    color: var(--theme-accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: none;
}

.back-to-blog {
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--theme-text-muted);
    font-weight: bold;
}

.back-to-blog:hover {
    color: var(--theme-accent);
}

.post-layout-container {
    display: flex;
    gap: 40px;
}

.post-main-content {
    flex: 3;
}

.post-sidebar {
    flex: 1;
    padding-left: 40px;
    border-left: 1px solid var(--theme-border);
}

.post-main-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--theme-text);
}

.post-meta {
    color: var(--theme-text-muted);
    font-size: 0.9em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.reading-time {
    color: var(--theme-accent);
}

.social-share {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
}

.social-share span {
    margin-right: 15px;
    color: var(--theme-text-muted);
}

.social-share a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 16px;
    color: var(--theme-bg);
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s;
}

.social-share a:hover {
    opacity: 0.8;
}

.social-share .facebook {
    background: var(--theme-accent);
}

.social-share .twitter {
    background: var(--theme-accent-soft);
}

.social-share .linkedin {
    background: var(--theme-accent-deep);
}

.post-content {
    font-size: 1.1em;
    color: var(--theme-text-soft);
}

.post-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--theme-text);
    margin-top: 2em;
    margin-bottom: 1em;
}

.post-content h2 {
    font-size: 2em;
    border-bottom: 2px solid var(--theme-accent);
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5em;
}

.post-content h4 {
    font-size: 1.2em;
}

.post-content ul,
.post-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.post-content li {
    margin-bottom: 0.75em;
}

.post-content a {
    color: var(--theme-accent);
    text-decoration: none;
}

.post-content a:hover {
    color: var(--theme-accent-soft);
}

.post-content img,
.post-content figure {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    transition: opacity 0.3s ease;
    background-color: var(--theme-surface-elevated);
}

.post-content figure {
    text-align: center;
}

.post-content figure img {
    margin: 0;
}

.post-content img:not([src]) {
    background: linear-gradient(90deg, var(--theme-surface-elevated) 25%, var(--theme-surface-alt) 50%, var(--theme-surface-elevated) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    min-height: 200px;
}

.post-cta {
    background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-soft));
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.post-cta h3 {
    color: var(--theme-bg);
    margin-top: 0;
    margin-bottom: 15px;
}

.post-cta p {
    color: rgba(12, 13, 13, 0.82);
    margin-bottom: 20px;
}

.post-cta a {
    margin: 0 5px;
}

.post-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.related-posts {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid var(--theme-border);
}

.related-posts h2 {
    text-align: center;
    color: var(--theme-text);
    margin-bottom: 30px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post-card {
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-card-content {
    padding: 15px;
}

.related-post-card h3 {
    color: var(--theme-accent);
    font-size: 1.1em;
    margin: 0 0 10px 0;
}

.related-post-card p {
    color: var(--theme-text-muted);
    font-size: 0.9em;
    margin: 0;
}

.related-post-card a {
    text-decoration: none;
}

.post-sidebar h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--theme-text);
    font-size: 1.5em;
}

.post-sidebar-list a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: var(--theme-text-muted);
    border-bottom: 1px solid var(--theme-border);
    font-size: 0.9em;
}

.post-sidebar-list a:hover {
    color: var(--theme-accent);
}

.case-study-post-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 120px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.case-study-post-container h1 {
    text-transform: uppercase;
    position: relative;
    font-size: 2.5rem;
    color: var(--theme-text);
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
}

.case-study-post-container .back-to-portfolio {
    display: inline-flex;
    margin-bottom: 20px;
    text-decoration: none;
    font-weight: bold;
}

.case-study-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-study-header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.case-study-header p {
    font-size: 1.1em;
    color: var(--theme-accent);
}

.case-study-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.case-study-main {
    flex: 2;
    min-width: 0;
    margin-bottom: 100px;
}

.case-study-sidebar {
    flex: 1;
    min-width: 250px;
}

.case-study-main img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--theme-shadow);
}

.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
}

.project-info-list li {
    padding: 15px 20px;
    border-bottom: 1px solid var(--theme-border);
    color: var(--theme-text-muted);
}

.project-info-list li:last-child {
    border-bottom: none;
}

.project-info-list strong {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.case-study-sidebar h2,
.case-study-main h3 {
    color: var(--theme-text);
}

.case-study-main,
.case-study-main p,
.case-study-main li {
    color: var(--theme-text-muted);
}

.footer {
    margin-bottom: 50px !important;
}

.service-title-spacing {
    margin-top: 20px;
}

.page-terms main,
.page-cookie-policy main {
    padding: 60px 0;
    margin-bottom: 150px !important;
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-elevated) 100%);
    color: var(--theme-text);
}

.page-terms .container,
.page-cookie-policy .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-terms h1,
.page-cookie-policy h1 {
    font-size: 2.8em;
    color: var(--theme-text);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-terms h1::after,
.page-cookie-policy h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--theme-accent);
    border-radius: 2px;
}

.page-terms h2,
.page-cookie-policy h2 {
    font-size: 1.8em;
    color: var(--theme-text);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--theme-border);
    padding-bottom: 10px;
}

.page-terms p,
.page-cookie-policy p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--theme-text-muted);
}

.page-terms ul,
.page-cookie-policy ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--theme-text-muted);
}

.page-terms ul li,
.page-cookie-policy ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-terms strong,
.page-cookie-policy strong {
    color: var(--theme-text);
}

#quick-quote-fab {
    position: fixed;
    bottom: 220px;
    right: 20px;
    width: 75px;
    height: 75px;
    background-color: var(--theme-accent);
    color: var(--theme-bg);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#quick-quote-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

#quick-quote-fab:focus {
    outline: 3px solid var(--theme-text);
    outline-offset: 2px;
}

.qq-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(12,13,13,0.72);
    animation: fadeIn 0.3s;
}

.qq-modal-content {
    background-color: var(--theme-surface-elevated);
    color: var(--theme-text-soft);
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--theme-border);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    animation: slideIn 0.4s;
}

.qq-close-btn {
    color: var(--theme-text-muted);
    background: transparent;
    border: none;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.qq-close-btn:hover,
.qq-close-btn:focus {
    color: var(--theme-text);
    outline: none;
}

.qq-modal-content h3 {
    margin-top: 0;
    color: var(--theme-accent);
    clear: both;
    padding-top: 10px;
}

.qq-form-group {
    margin-bottom: 20px;
}

.qq-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.required {
    color: var(--theme-accent);
}

.qq-form-group input,
.qq-form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.18);
    background-color: var(--theme-surface);
    color: var(--theme-text);
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}

.qq-form-group input:focus,
.qq-form-group textarea:focus {
    outline: none;
    border-color: var(--theme-accent);
}

#qq-submit-btn {
    background-color: var(--theme-accent);
    color: var(--theme-bg);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s;
}

#qq-submit-btn:hover:not(:disabled) {
    background-color: var(--theme-accent-deep);
}

#qq-submit-btn:disabled {
    background-color: var(--theme-surface);
    cursor: not-allowed;
}

.qq-response {
    margin-top: 15px;
    font-size: 14px;
    min-height: 1em;
    padding: 10px;
    border-radius: 5px;
}

.qq-response.success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.qq-response.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.qq-response.warning {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.packages {
    padding: 80px 0;
    width: 100%;
    background: var(--theme-bg);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 186, 3, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
    margin-top: 80px;
    margin-bottom: 60px;
}

.packages h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    color: var(--theme-text);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.header-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--theme-accent), transparent);
    margin: 30px auto;
}

.packages-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--theme-text-muted);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--theme-text);
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    padding: 16px 28px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 186, 3, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(245, 186, 3, 0.1);
    border-color: rgba(245, 186, 3, 0.4);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.3rem;
    color: var(--theme-accent);
}

.package-tier {
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(20px);
    min-width: 0;
    height: 100%;
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 186, 3, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.package-tier:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 40px rgba(245, 186, 3, 0.1);
}

.package-tier:hover .package-overlay {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--theme-accent), var(--theme-accent-deep));
    color: var(--theme-bg);
    padding: 12px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-badge i {
    font-size: 1rem;
}

.premium.featured {
    z-index: 5;
    border-color: rgba(245, 186, 3, 0.4);
}

.tier-header {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
}

.tier-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(245, 186, 3, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.tier-icon i {
    font-size: 2rem;
    color: var(--theme-accent);
}

.premium-icon {
    border-color: rgba(245, 186, 3, 0.6);
    background: rgba(245, 186, 3, 0.1);
}

.luxury-icon {
    border-color: rgba(167, 139, 250, 0.6);
    background: rgba(167, 139, 250, 0.1);
}

.luxury-icon i {
    color: var(--theme-accent-soft);
}

.package-tier:hover .tier-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(245, 186, 3, 0.2);
}

.tier-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    background: rgba(255,255,255,0.1);
    color: var(--theme-text);
    border: 1px solid rgba(255,255,255,0.2);
}

.premium-badge {
    background: linear-gradient(45deg, var(--theme-accent), var(--theme-accent-deep));
    color: var(--theme-bg);
    border-color: var(--theme-accent);
}

.luxury-badge {
    background: linear-gradient(45deg, var(--theme-accent-soft), var(--theme-accent));
    color: var(--theme-bg);
    border-color: var(--theme-accent-soft);
}

.tier-header h3 {
    font-size: 1.5rem;
    color: var(--theme-text);
    margin: 0 0 25px 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.tier-subtitle {
    color: var(--theme-text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.package-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.timeline-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: #d4d4d4;
    border: 1px solid rgba(255,255,255,0.1);
}

.premium-timeline {
    background: rgba(245, 186, 3, 0.1);
    border-color: rgba(245, 186, 3, 0.2);
}

.luxury-timeline {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.2);
}

.timeline-icon {
    color: var(--theme-accent);
    font-size: 1.1rem;
}

.features-section h4 {
    color: var(--theme-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(245, 186, 3, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    color: var(--theme-accent);
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 12px 0;
    color: var(--theme-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 400;
}

.feature-list li i {
    color: var(--theme-accent);
    margin-top: 4px;
    font-size: 1.1rem;
    min-width: 16px;
}

.ideal-for {
    padding: 25px;
    border-radius: 16px;
    color: var(--theme-text-muted);
    font-size: 0.95rem;
    margin-top: auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245, 186, 3, 0.2);
    line-height: 1.6;
}

.premium-ideal {
    background: rgba(245, 186, 3, 0.05);
    border-color: rgba(245, 186, 3, 0.3);
}

.luxury-ideal {
    background: rgba(167, 139, 250, 0.05);
    border-color: rgba(167, 139, 250, 0.3);
}

.ideal-for strong {
    color: var(--theme-accent);
}

.cta-btn {
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.basic-btn {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: var(--theme-text);
    border: 1px solid rgba(255,255,255,0.2);
}

.basic-btn:hover {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.premium-btn {
    background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-deep));
    color: var(--theme-bg);
    font-weight: 700;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #d4a003, #b8900c);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(245, 186, 3, 0.3);
}

.luxury-btn {
    background: linear-gradient(135deg, var(--theme-accent-soft), var(--theme-accent));
    color: var(--theme-bg);
    font-weight: 700;
}

.luxury-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(167, 139, 250, 0.3);
}

.gallery {
    padding-top: 120px;
    padding-bottom: 120px;
}

.gallery h2 {
    text-transform: uppercase;
    position: relative;
    font-size: 2.5rem;
    color: var(--theme-text);
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--theme-shadow);
}

.gallery-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.gallery-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-slider .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-slider .swiper-slide:hover img {
    transform: scale(1.02);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: #f5ba03;
    background: var(--theme-surface-elevated);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next::after,
.gallery-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
    background: #f5ba03;
    color: var(--theme-bg);
    transform: scale(1.1);
}

.gallery-slider .swiper-button-prev {
    left: 20px;
}

.gallery-slider .swiper-button-next {
    right: 20px;
}

.gallery-slider .swiper-pagination {
    bottom: 20px;
}

.gallery-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination-bullet-active {
    background: var(--theme-accent);
    transform: scale(1.2);
}

.gallery-slider.loading {
    background: linear-gradient(90deg, var(--theme-surface-alt) 25%, var(--theme-surface-elevated) 50%, var(--theme-surface-alt) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.gallery-slider.loading::before {
    content: 'Loading gallery...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--theme-text-muted);
    font-size: 1.1rem;
    z-index: 10;
}

.gallery-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    border: 2px dashed rgba(245,186,3,0.25);
    border-radius: 8px;
    color: var(--theme-text-muted);
    text-align: center;
}

.gallery-error h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.gallery-error p {
    margin: 0;
    font-size: 0.9rem;
}

.gallery-error-detail {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-modal-image {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.gallery-modal-caption {
    text-align: center;
    margin-top: 15px;
}

.gallery-modal-delete-btn {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    display: none;
}

.blog .posts-container.loading::before {
    content: "Loading posts...";
    display: block;
    text-align: center;
    color: var(--theme-text-muted);
    font-size: 18px;
    padding: 60px 20px;
}

.blog .posts-container.error::before {
    content: "Failed to load posts. Please refresh the page.";
    display: block;
    text-align: center;
    color: #f87171;
    font-size: 18px;
    padding: 60px 20px;
}

.posts-container-error-message {
    text-align: center;
    color: #f87171;
    padding: 40px;
}

.blog .post-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.blog .post-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

.blog .post-thumbnail {
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: var(--theme-surface-elevated);
    border-radius: 8px;
}

.blog .post-thumbnail.loaded {
    opacity: 1;
}

.blog .post-thumbnail:not(.loaded) {
    background: linear-gradient(90deg, var(--theme-surface-elevated) 25%, var(--theme-surface-alt) 50%, var(--theme-surface-elevated) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-text-muted);
    font-size: 14px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    border-radius: 999px;
}

.blog .read-more-btn {
    background: transparent;
    color: var(--theme-bg);
    border: 2px solid rgba(12, 13, 13, 0.22);
}

.blog .read-more-btn:hover {
    background: var(--theme-accent);
    color: var(--theme-bg);
    border-color: var(--theme-accent);
}

.faq {
    margin-top: 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-elevated) 100%);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--theme-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.faq-category-card {
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--theme-shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.faq-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.24);
    border-color: var(--theme-accent);
}

.faq-category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--theme-accent);
}

.faq-category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-text);
    margin: 0;
}

.faq .cs-accordian {
    margin-bottom: 1rem;
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-contact-box {
    background: linear-gradient(135deg, var(--theme-surface) 0%, var(--theme-surface-elevated) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
    color: var(--theme-text);
}

.faq-contact-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--theme-accent);
}

.faq-contact-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--theme-text-muted);
}

.faq-contact-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 20px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.case-study-item {
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--theme-shadow);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(145deg, var(--theme-surface), var(--theme-surface-elevated));
}

.case-study-item.loaded {
    opacity: 1;
    transform: translateY(0);
}

.case-study-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: var(--theme-surface-elevated);
    border-radius: 12px 12px 0 0;
}

.case-study-thumbnail.loaded {
    opacity: 1;
}

.case-study-thumbnail:not(.loaded) {
    background: linear-gradient(90deg, var(--theme-surface-elevated) 25%, var(--theme-surface-alt) 50%, var(--theme-surface-elevated) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.case-study-item-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-item-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--theme-text);
}

.case-study-item-content p {
    flex-grow: 1;
    color: var(--theme-text-muted);
}

.case-study-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .case-study-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .area {
        padding: 3.5rem 1rem 3rem 1rem;
    }

    .area h1 {
        font-size: 1.85rem;
    }

    .area p {
        font-size: 1rem;
    }

    .area-service-image {
        height: 220px;
    }

    .area-grid {
        gap: 1.5rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .blog .post-thumbnail {
        min-height: 150px;
    }

    .faq {
        padding: 2rem 0;
    }

    .faq .cs-accordian_title {
        font-size: 1rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .faq-contact-links {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-box {
        padding: 2rem 1rem;
    }

    .post-layout-container,
    .case-study-content {
        flex-direction: column;
    }

    .post-sidebar {
        padding-left: 0;
        border-left: none;
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid var(--theme-border);
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .case-study-header h1 {
        font-size: 1.8em;
    }

    .case-study-post-container {
        margin-top: 80px;
    }

    .gallery-slider {
        height: 450px;
    }

    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }

    .gallery-slider .swiper-button-next::after,
    .gallery-slider .swiper-button-prev::after {
        font-size: 14px;
    }

    .gallery-slider .swiper-button-prev {
        left: 10px;
    }

    .gallery-slider .swiper-button-next {
        right: 10px;
    }

    .packages h2 {
        font-size: 2rem;
    }

    .packages-intro {
        font-size: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .tier-header {
        padding: 40px 30px;
    }

    .package-content {
        padding: 30px;
    }

    .featured-badge {
        font-size: 0.8rem;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        height: 450px;
        margin: 1rem 0;
    }

    .gallery h2 {
        font-size: 1.8rem;
    }

    .packages h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .process-step {
        padding: 1.5rem 1.2rem;
    }

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

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .investment-ranges {
        padding: 1.5rem 1rem;
    }

    .ranges-header h3 {
        font-size: 1.5rem;
    }

    .range-item {
        padding: 1.2rem;
    }

    .range-price {
        font-size: 1.4rem;
    }

    .value-prop {
        padding: 1.2rem;
    }

    .cta-section {
        padding: 1.5rem 1rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }
}

@media (max-width: 360px) {
    .packages h2 {
        font-size: 1.6rem;
    }

    .process-step,
    .investment-ranges,
    .cta-section,
    .value-prop {
        padding: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 260px;
        padding: 0.9rem 1.2rem;
    }
}

@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 150px auto 60px;
    }

    .premium.featured {
        transform: none;
    }
}
