/* Ontstopping Service Amsterdam - Unique Style */
/* Color Palette: Teal/Green Theme */
:root {
    --primary-color: #00a887;
    --primary-dark: #008a6f;
    --primary-light: #1fc5a3;
    --secondary-color: #2d5f51;
    --accent-color: #00a887;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8fafb;
    --background-white: #ffffff;
    --border-color: #e5e8eb;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--background-white);
}

/* Header Styles */
.ontstopping-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 168, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.emergency-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.emergency-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #ff5722;
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.call-number {
    font-size: 1.1rem;
    font-weight: 700;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.blog-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-dark);
}

/* Hero Section Professional */
.hero-professional {
    margin-top: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-professional::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 135, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

/* Emergency Label */
.emergency-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }
}

/* Hero Title */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.text-accent {
    color: #00a887;
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00a887 0%, #00c9a7 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Hero Benefits */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00a887;
}

.benefit-card img {
    flex-shrink: 0;
}

.benefit-content strong {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.benefit-content span {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00a887;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

.btn-primary:hover {
    background: #00926f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 135, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #00a887;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #00a887;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #00a887;
    color: white;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #495057;
}

.feature-check img {
    flex-shrink: 0;
}

/* Hero Visual */
.visual-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Stats Cards */
.stats-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-card {
    top: 30px;
    left: -40px;
    animation: float-left 3s ease-in-out infinite;
}

.bottom-card {
    bottom: 30px;
    right: -40px;
    animation: float-right 3s ease-in-out infinite;
}

@keyframes float-left {

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

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

@keyframes float-right {

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

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

.stats-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 168, 135, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-content strong {
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.stats-content span {
    display: block;
    font-size: 12px;
    color: #6c757d;
}

.rating-stars {
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 4px;
}

.rating-content strong {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
}

.rating-content span {
    display: block;
    font-size: 12px;
    color: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .visual-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-card {
        position: static;
        margin: 20px 0;
        animation: none;
    }
}

@media (max-width: 768px) {
    .hero-professional {
        padding: 20px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .benefit-card {
        padding: 15px;
    }

    .benefit-content strong {
        font-size: 16px;
    }

    .benefit-content span {
        font-size: 12px;
    }
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 251, 0.8) 100%);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, #ff4444 0%, #ff6b6b 100%);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.2);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.banner-separator {
    opacity: 0.6;
}

.banner-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

/* Main Hero Content */
.hero-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    position: relative;
}

.hero-headline {
    margin-bottom: 25px;
}

.headline-top {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.headline-main {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d5f51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headline-sub {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #666666;
    margin-top: 8px;
}

.hero-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

/* Quick Features */
.quick-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.quick-feature img {
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 168, 135, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-main:hover::before {
    left: 100%;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 135, 0.4);
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-label {
    font-size: 13px;
    opacity: 0.9;
}

.cta-number {
    font-size: 18px;
    font-weight: 700;
}

.cta-alt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 60px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-alt:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Right Side */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff4444;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    z-index: 2;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.card-price {
    bottom: 80px;
    right: -40px;
    animation-delay: 0s;
}

.card-time {
    bottom: 200px;
    left: -30px;
    animation-delay: 1s;
}

.floating-card strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.floating-card span {
    display: block;
    font-size: 12px;
    color: #888888;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 168, 135, 0.1), rgba(0, 168, 135, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: var(--background-white);
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.price-currency {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 8px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pricing-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f7f3 100%);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-content {
    width: 45%;
    padding: 30px;
    background: var(--background-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--background-white);
}

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

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

.faq-item {
    background: var(--background-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

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

.cta-content {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    color: white;
    font-weight: 600;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

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

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 168, 135, 0.1), rgba(0, 168, 135, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-availability {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    white-space: nowrap;
}

.contact-form-wrapper {
    background: var(--background-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 135, 0.1);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background: var(--background-white);
}

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

.reviews-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.reviews-intro {
    margin-bottom: 40px;
}

.reviews-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.reviews-highlight {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-header {
    margin-bottom: 15px;
}

.review-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-service {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.review-comment {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.reviews-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.reviews-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.reviews-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-stats {
    width: 100%;
    max-width: 300px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 168, 135, 0.05), rgba(0, 168, 135, 0.1));
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 168, 135, 0.2);
}

.stat-card.main-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-stat .stat-value {
    font-size: 3rem;
}

.stat-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 10px;
}

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

.main-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stats-row .stat-card {
    margin-bottom: 0;
}

.stats-row .stat-value {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stats-row .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .reviews-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 10px 15px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
    }

    .emergency-call {
        padding: 10px 16px;
    }

    .call-label {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .blog-link {
        padding: 10px 16px;
    }

    .blog-link span {
        display: none;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .visual-card {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .service-card {
        padding: 25px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .price-value {
        font-size: 2.5rem;
    }

    .price-currency {
        font-size: 2.5rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .process-step:nth-child(even) {
        flex-direction: column;
    }

    .step-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .step-content {
        width: 100%;
        margin-left: 0 !important;
    }

    .process-step:nth-child(even) .step-content {
        margin-left: 0;
    }

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

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

    .faq-item {
        padding: 20px;
    }

    .cta-content {
        padding: 40px 20px;
    }

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

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* Service Links */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Detail Block Left Layout */
.detail-block-left {
    padding: 80px 20px;
    background: var(--background-white);
}

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

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

.detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-image .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 168, 135, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.detail-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--background-light);
    border-radius: 10px;
}

.detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.detail-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Detail Block Right Layout (Card Style) */
.detail-block-right {
    padding: 80px 20px;
    background: var(--background-light);
}

.detail-content-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--background-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px;
    color: white;
    position: relative;
}

.card-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-body {
    padding: 40px;
}

.card-image-wrapper {
    margin: -60px -40px 30px;
    border-radius: 16px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.card-text {
    margin-bottom: 30px;
}

.card-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.highlight-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.card-action {
    text-align: center;
    margin-top: 40px;
}

.card-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.card-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Detail Block Full Width */
.detail-block-full {
    padding: 80px 20px;
    background: var(--background-white);
}

.detail-full-container {
    max-width: 1200px;
    margin: 0 auto;
}

.full-header {
    text-align: center;
    margin-bottom: 50px;
}

.full-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.full-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.full-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.full-main {
    background: var(--background-light);
    border-radius: 20px;
    overflow: hidden;
}

.full-image {
    width: 100%;
    height: auto;
    display: block;
}

.full-content {
    padding: 40px;
}

.full-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.full-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-cta {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
    margin: 20px 0;
}

.cta-text {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.sidebar-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.price-indicator {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 168, 135, 0.1), rgba(0, 168, 135, 0.2));
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.price-info {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Detail Block Split Layout */
.detail-block-split {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image-stack {
    position: relative;
}

.stack-image-main {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

.stack-image-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--background-white);
}

.split-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.split-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.split-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.split-action {
    display: flex;
    gap: 15px;
}

.split-cta-primary,
.split-cta-secondary {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.split-cta-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.split-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.split-cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.split-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Detail Block Feature Style */
.detail-block-feature {
    padding: 0;
    background: var(--background-white);
}

.feature-container {
    max-width: 100%;
}

.feature-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.feature-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 60px 20px 40px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-content-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

@media (max-width: 1200px) {
    .feature-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-sidebar {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

.feature-intro h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-details h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.feature-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-benefits {
    margin-top: 30px;
}

.feature-benefits h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-benefits li {
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 320px;
}

.feature-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    min-height: auto;
}

.feature-card.highlighted {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 35px;
}

.card-icon {
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-phone {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.feature-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.feature-card.highlighted .feature-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 10px;
}

.feature-bottom-cta {
    background: var(--background-light);
    padding: 40px 20px;
    text-align: center;
}

.feature-bottom-cta p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Detail Block Accent Style */
.detail-block-accent {
    padding: 80px 20px;
    background: linear-gradient(135deg, #00a887 0%, #008a6f 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.accent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 30px;
}

.accent-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.accent-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.accent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.accent-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.accent-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.accent-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.accent-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.accent-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    display: block;
    object-fit: cover;
}

.accent-services {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.accent-services h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 25px;
    background: var(--background-light);
    border-radius: 12px;
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-price {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.accent-cta-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.accent-cta-primary,
.accent-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accent-cta-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.accent-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.accent-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.accent-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Fixed Call Button */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
    }

    50% {
        box-shadow: 0 5px 35px rgba(0, 168, 135, 0.6);
    }

    100% {
        box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
    }
}

.fixed-call-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(0, 168, 135, 0.5);
}

.fixed-call-button svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Mobile adjustments for fixed button */
@media (max-width: 768px) {
    .fixed-call-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .fixed-call-button svg {
        width: 26px;
        height: 26px;
    }
}

/* Extra small devices (375px and up) */
@media (max-width: 480px) {
    .header-wrapper {
        padding: 8px 10px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-logo svg {
        width: 30px;
        height: 30px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .blog-link {
        padding: 8px 12px;
    }

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

    .title-accent {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .service-card {
        padding: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .faq-item {
        padding: 15px;
    }

    .review-card {
        padding: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .main-stat .stat-value {
        font-size: 2.5rem;
    }

    .stats-row .stat-value {
        font-size: 1.5rem;
    }
}

/* Responsive for New Detail Blocks */
@media (max-width: 1024px) {

    .detail-grid,
    .split-container,
    .full-grid,
    .feature-content-wrapper,
    .accent-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stack-image-secondary {
        display: none;
    }

    .card-highlights {
        grid-template-columns: 1fr;
    }

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

    .accent-cta-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .detail-title,
    .split-title,
    .full-title,
    .feature-title,
    .accent-title {
        font-size: 1.8rem;
    }

    .detail-block-left,
    .detail-block-right,
    .detail-block-full,
    .detail-block-split,
    .detail-block-accent {
        padding: 60px 15px;
    }

    .split-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .split-action,
    .cta-buttons,
    .cta-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .split-cta-primary,
    .split-cta-secondary,
    .cta-primary,
    .cta-secondary,
    .accent-cta-primary,
    .accent-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }

    .feature-hero {
        height: 300px;
    }

    .feature-overlay {
        padding: 40px 15px 30px;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .feature-tagline {
        font-size: 1rem;
    }

    .split-image-stack {
        margin-bottom: 30px;
    }

    .stack-image-main {
        max-height: 300px;
        object-fit: cover;
    }

    .accent-image {
        max-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {

    .detail-title,
    .split-title,
    .full-title,
    .feature-title,
    .accent-title {
        font-size: 1.5rem;
    }

    .detail-cta {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .card-header {
        padding: 25px;
    }

    .card-body {
        padding: 25px;
    }

    .full-content {
        padding: 25px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .accent-card {
        padding: 25px;
    }

    .accent-services {
        padding: 25px;
    }

    .accent-cta-section {
        padding: 25px;
    }
}

/* FAQ Section - Redesigned Accordion Style */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 135, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-wrapper {
    position: relative;
    z-index: 1;
}

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

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

.faq-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 168, 135, 0.15);
}

.faq-trigger {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    background: rgba(0, 168, 135, 0.03);
}

.faq-trigger-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.faq-question-text {
    font-size: 18px;
    color: var(--text-dark);
    text-align: left;
    font-weight: 600;
    margin: 0;
}

.faq-arrow {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-accordion-item.active .faq-panel {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer {
    padding: 0 30px 25px 30px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ Content Elements */
.faq-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 168, 135, 0.08);
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 12px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 14px;
}

.price-table {
    background: var(--background-light);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 12px;
    font-size: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    color: #666666;
    font-size: 14px;
}

.faq-price-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.faq-note {
    margin-top: 12px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid var(--success-color);
    border-radius: 4px;
    font-size: 14px;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--background-light);
    border-radius: 6px;
    font-size: 14px;
}

.avail-icon {
    color: var(--success-color);
    font-size: 18px;
    font-weight: bold;
}

.payment-options {
    margin-top: 20px;
}

.payment-options h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 16px;
}

.payment-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.payment-list li {
    padding: 8px 12px;
    background: var(--background-light);
    border-radius: 6px;
    font-size: 13px;
    color: #555555;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(0, 168, 135, 0.05), rgba(0, 168, 135, 0.08));
    border: 1px solid rgba(0, 168, 135, 0.3);
    border-radius: 10px;
    padding: 18px;
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.guarantee-header h4 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 17px;
}

.guarantee-header p {
    color: var(--text-light);
    margin: 0;
    font-size: 13px;
}

.diy-list {
    margin: 12px 0;
    padding-left: 20px;
}

.diy-list li {
    margin-bottom: 8px;
    color: #555555;
    font-size: 14px;
}

.warning-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 6px;
    padding: 12px;
    margin-top: 15px;
    color: #92400e;
    font-size: 14px;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-type {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
}

.service-type h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 18px;
}

.service-type ul {
    list-style: none;
    padding-left: 0;
}

.service-type li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.service-type li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.info-card {
    background: var(--background-light);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.info-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.info-card p {
    margin: 0;
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
}

/* FAQ Contact Box */
.faq-contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 168, 135, 0.3);
}

.faq-contact-content h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.faq-contact-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.faq-contact-actions {
    display: flex;
    gap: 15px;
}

.faq-call-btn,
.faq-form-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.faq-call-btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-form-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.faq-form-btn:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-description {
        font-size: 16px;
    }

    .faq-trigger {
        padding: 15px;
    }

    .faq-trigger-content {
        gap: 12px;
        flex-direction: row;
        align-items: flex-start;
    }

    .faq-number {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .faq-question-text {
        font-size: 15px;
        line-height: 1.4;
        flex: 1;
        word-break: break-word;
        hyphens: auto;
    }

    .faq-arrow {
        margin-left: 5px;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 15px 20px 15px;
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .faq-highlight {
        font-size: 13px;
    }

    .availability-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .payment-list {
        grid-template-columns: 1fr;
    }

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

    .service-type {
        padding: 15px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-card {
        padding: 12px;
    }

    .faq-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 25px;
    }

    .faq-contact-actions {
        flex-direction: column;
        width: 100%;
    }

    .faq-call-btn,
    .faq-form-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small devices (375px and smaller) */
@media (max-width: 375px) {
    .faq-trigger {
        padding: 12px 10px;
    }

    .faq-trigger-content {
        gap: 10px;
    }

    .faq-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }

    .faq-question-text {
        font-size: 14px;
        line-height: 1.3;
    }

    .faq-arrow svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer {
        padding: 0 10px 15px 10px;
        font-size: 13px;
    }

    .price-table,
    .availability-item,
    .payment-list li,
    .service-type,
    .info-card {
        padding: 10px;
        font-size: 12px;
    }

    .faq-contact-box {
        padding: 20px 15px;
    }

    .faq-contact-content h3 {
        font-size: 22px;
    }

    .faq-contact-content p {
        font-size: 14px;
    }

    .faq-call-btn,
    .faq-form-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}