:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    position: relative;
    transform-origin: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.cta-nav:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    position: relative;
}

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

.hero-content {
    text-align: left;
}

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

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.icon {
    fill: currentColor;
}

.btn-text {
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero {
        padding: 0 0 60px 0;
        background: #f8fafc;
    }
    
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Мобильная версия - полноширинное фото сверху */
    .hero-image-wrapper {
        width: 100vw;
        height: 280px;
        margin-left: calc(-50vw + 50%);
        margin-bottom: 30px;
        border-radius: 0;
        box-shadow: none;
        position: relative;
        order: -1;
    }
    
    .hero-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .hero-image-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            rgba(248, 250, 252, 0.4) 30%,
            rgba(248, 250, 252, 0.7) 60%,
            rgba(248, 250, 252, 0.9) 80%,
            #f8fafc 100%);
        pointer-events: none;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 0 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-item {
        padding: 12px 20px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .hero-image-wrapper {
        height: 220px;
    }
    
    .hero-image-wrapper::after {
        height: 80px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

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

.advantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.advantage-card:hover::before {
    top: -150%;
    left: -150%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.advantage-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.badge:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive Why Us */
@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-number {
        font-size: 48px;
    }
    
    .trust-badges {
        gap: 25px;
        padding: 30px 0;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .badge {
        min-width: 80px;
        flex: 0 0 auto;
    }

    .badge svg {
        width: 28px;
        height: 28px;
    }

    .badge span {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .advantage-number {
        font-size: 42px;
    }
    
    .advantage-card h3 {
        font-size: 20px;
    }
    
    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px 15px;
        justify-items: center;
    }

    .badge {
        min-width: 70px;
        gap: 8px;
    }

    .badge svg {
        width: 24px;
        height: 24px;
    }

    .badge span {
        font-size: 12px;
        font-weight: 500;
    }
}

@media (max-width: 375px) {
    .trust-badges {
        gap: 15px;
        padding: 20px 10px;
    }

    .badge {
        min-width: 60px;
    }

    .badge svg {
        width: 22px;
        height: 22px;
    }

    .badge span {
        font-size: 11px;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #fff;
}

.pricing-tables {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Price List */
.price-list {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
}

.price-list-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.price-desc {
    font-size: 13px;
    color: #6b7280;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Package Cards */
.pricing-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    transition: var(--transition);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.package-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    color: var(--primary-color);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 16px;
    color: #6b7280;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 15px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
}

/* Price Note */
.price-note {
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.price-note p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .pricing-packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .price-list {
        padding: 20px;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-value {
        font-size: 18px;
        color: var(--secondary-color);
    }
}

/* Work Process Section */
.work-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateX(-50%);
}

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

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

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.step-content {
    width: 45%;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
    text-align: right;
}

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

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.process-step:nth-child(odd) .step-content::before {
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
}

.process-step:nth-child(even) .step-content::before {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step:nth-child(odd) .step-icon {
    margin-left: auto;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-time {
    display: inline-block;
    padding: 5px 15px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Process CTA */
.process-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 20px;
    margin-top: 60px;
    color: #fff;
}

.process-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.process-cta .btn {
    background: #fff;
    color: var(--primary-color);
}

.process-cta .btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Responsive Process */
@media (max-width: 768px) {
    .work-process {
        padding: 60px 0;
    }
    
    .process-line {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        margin-bottom: 40px;
    }
    
    .step-number {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
        padding: 20px;
    }
    
    .step-content::before {
        display: none;
    }
    
    .step-icon {
        margin-left: 0 !important;
        width: 50px;
        height: 50px;
    }
    
    .process-cta {
        padding: 40px 20px;
    }
    
    .process-cta h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        margin: 40px auto;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 35px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.customer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.customer-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.project-type {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.rating {
    display: flex;
    gap: 3px;
}

.testimonial-content {
    margin-bottom: 25px;
    padding-top: 10px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.project-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.project-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.project-info svg {
    color: var(--primary-color);
}

.testimonials-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-radius: 20px;
}

.testimonials-cta p {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 500;
}

/* New Reviews System */
.review-footer {
    margin-top: 50px;
}

#reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 70px;
    color: #2563eb;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.review-content {
    position: relative;
    z-index: 1;
}

.review__wrp {
    margin-bottom: 20px;
}

.review__wrp h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.review-service {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 15px;
}

.review-comment {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.review-rating {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-meta .date {
    font-size: 14px;
    color: #9ca3af;
}

.write-review-button-wrp {
    text-align: center;
    margin-top: 40px;
}

.write-review-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.write-review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    #reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 25px;
    }

    .review-card::before {
        font-size: 50px;
        top: 15px;
        left: 25px;
    }

    .review__wrp h3 {
        font-size: 18px;
    }

    .review-comment {
        font-size: 15px;
    }

    .review-rating {
        font-size: 16px;
    }

    .write-review-button {
        padding: 12px 30px;
        font-size: 15px;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card::before {
        font-size: 60px;
        top: 15px;
        left: 25px;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 15px;
    }

    .rating {
        order: -1;
    }

    .testimonial-content p {
        font-size: 15px;
    }

    .project-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .testimonials-cta {
        padding: 30px 20px;
    }

    .testimonials-cta p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 20px;
    }

    .review-card::before {
        font-size: 40px;
        top: 10px;
        left: 20px;
    }

    .review__wrp h3 {
        font-size: 16px;
    }

    .review-service {
        font-size: 13px;
    }

    .review-comment {
        font-size: 14px;
    }

    .review-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .testimonial-card {
        padding: 20px;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
    }

    .customer-details h3 {
        font-size: 16px;
    }

    .project-type {
        font-size: 13px;
    }

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

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer > div {
    padding: 20px 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-question {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.contact-note {
    font-size: 14px !important;
    color: #6b7280 !important;
    font-weight: 400 !important;
    margin-top: 5px !important;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1.5;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.trust-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 14px;
    color: var(--text-color);
}

/* Service Areas */
.service-areas {
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
    text-align: center;
}

.service-areas h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-areas > p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.areas-grid span {
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.areas-grid span:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-standorte {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-standorte h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-standorte h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.standorte-liste {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.standorte-liste li {
    position: relative;
}

.standorte-liste li::after {
    content: '|';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.standorte-liste li:last-child::after {
    display: none;
}

.standorte-liste a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.standorte-liste a:hover {
    color: var(--secondary-color);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.certifications {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 100px;
}

.cert-badge svg {
    color: var(--secondary-color);
}

.cert-badge span {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 5px 0;
}

/* Responsive FAQ & Contact */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer > div {
        padding: 15px 20px;
    }
    
    .contact-wrapper {
        gap: 30px;
        margin-bottom: 40px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
        gap: 15px;
        border-radius: 12px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 30px;
        height: 30px;
    }

    .contact-details h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

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

    .contact-note {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
        margin-top: 20px;
    }

    .trust-item {
        min-width: 100%;
    }

    .trust-item svg {
        width: 20px;
        height: 20px;
    }

    .trust-item span {
        font-size: 13px;
    }
    
    .service-areas {
        padding: 30px 20px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .certifications {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Contact section styles for small screens */
    .contact-wrapper {
        gap: 25px;
        margin-bottom: 30px;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-card {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-details h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .contact-details p {
        font-size: 13px;
    }

    .contact-note {
        font-size: 11px;
        color: #6b7280;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .trust-indicators {
        gap: 12px;
        padding-top: 15px;
        margin-top: 15px;
    }

    .trust-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
    }

    .trust-item svg {
        width: 18px;
        height: 18px;
    }

    .trust-item span {
        font-size: 12px;
        line-height: 1.4;
    }

    /* FAQ styles */
    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-right: 10px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-details h3 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .areas-grid span {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }

    /* Footer Standorte Responsive */
    .footer-standorte {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .footer-standorte h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .standorte-liste {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .standorte-liste li::after {
        display: none;
    }

    .standorte-liste a {
        font-size: 14px;
        padding: 10px 16px;
        display: block;
        text-align: center;
        min-width: 200px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Tablet Responsive for Footer Standorte */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-standorte {
        padding: 35px 30px;
    }

    .footer-standorte h2 {
        font-size: 22px;
    }

    .standorte-liste {
        gap: 15px;
    }

    .standorte-liste a {
        font-size: 14px;
        padding: 8px 10px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .footer-standorte {
        padding: 25px 15px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .footer-standorte h2 {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .footer-standorte h2::after {
        width: 40px;
        height: 2px;
    }

    .standorte-liste {
        gap: 12px;
    }

    .standorte-liste a {
        font-size: 13px;
        padding: 8px 14px;
        min-width: 170px;
        border-radius: 6px;
    }
}

/* Form Styles */
#jq_form {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

#jq_form .my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

#jq_form .my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#jq_form .form-control {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Roboto', sans-serif;
}

#jq_form .form-control:focus {
    color: var(--dark-color);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
}

#jq_form .form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

#jq_form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

#jq_form .forms__button {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#jq_form .forms__button:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

#jq_form .forms__button:active {
    transform: translateY(0);
}

#jq_success {
    margin-top: 1.5rem;
    padding: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Mobile styles for form */
@media (max-width: 768px) {
    #jq_form .form-control {
        font-size: 15px;
        padding: 12px 16px;
    }

    #jq_form .forms__button {
        width: 100%;
        padding: 12px 25px;
        font-size: 15px;
    }

    #jq_form .my-4 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

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

.calc-step {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.calc-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Room Type Cards */
.room-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.room-type-card {
    cursor: pointer;
    position: relative;
}

.room-type-card input {
    position: absolute;
    opacity: 0;
}

.room-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.room-type-card input:checked ~ .room-card-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.room-card-content svg {
    color: var(--primary-color);
}

.room-card-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

/* Area Input */
.area-input-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.area-slider {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.area-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.area-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.area-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.area-number {
    width: 60px;
    border: none;
    background: none;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.area-display span {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

.area-hints {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6b7280;
}

/* Tile Options */
.tile-types {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tile-option {
    cursor: pointer;
    position: relative;
}

.tile-option input {
    position: absolute;
    opacity: 0;
}

.tile-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: var(--transition);
}

.tile-option input:checked ~ .tile-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-color: var(--primary-color);
}

.tile-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tile-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.tile-desc {
    font-size: 13px;
    color: #6b7280;
}

.tile-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-option {
    cursor: pointer;
    position: relative;
}

.service-option input {
    position: absolute;
    opacity: 0;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: var(--transition);
}

.service-option input:checked ~ .service-content {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: var(--secondary-color);
}

.service-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Calculator Result */
.calculator-result {
    position: sticky;
    top: 100px;
}

.result-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.result-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
}

.result-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.detail-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.detail-row span:first-child {
    color: #6b7280;
}

.detail-row span:last-child {
    font-weight: 600;
    color: var(--dark-color);
}

.price-breakdown {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
}

.price-total {
    border-top: 2px solid var(--primary-color);
    padding-top: 20px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-total span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.total-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.info-item svg {
    color: var(--primary-color);
}

.result-note {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 25px;
    padding: 15px;
    background: #fef3c7;
    border-radius: 8px;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculator-benefits {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-radius: 15px;
}

.calculator-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.calculator-benefits ul {
    list-style: none;
}

.calculator-benefits ul li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 15px;
}

/* Responsive Calculator */
@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-result {
        position: static;
    }
}

@media (max-width: 768px) {
    .calculator {
        padding: 60px 0;
    }
    
    .calc-step {
        padding: 20px;
    }
    
    .room-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-input-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .area-slider {
        width: 100%;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        padding: 25px;
    }
    
    .total-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .room-card-content {
        padding: 15px 10px;
    }
    
    .room-card-content span {
        font-size: 12px;
    }
    
    .tile-name {
        font-size: 14px;
    }
    
    .tile-price {
        font-size: 18px;
    }
    
    .calculator-benefits {
        padding: 20px;
    }
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background: #fff;
}

.service-detail.alt-bg {
    background: #f8f9fa;
}

.service-detail .section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.service-detail-wrapper.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 35px;
}

.service-features {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
}

.service-features h4,
.service-benefits h4,
.service-process h4,
.service-cta h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.feature-list svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list span {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}

.service-benefits {
    margin-bottom: 35px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
}

.benefit-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 17px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.service-process {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
}

.process-steps {
    counter-reset: step;
    padding-left: 0;
    list-style: none;
}

.process-steps li {
    counter-increment: step;
    position: relative;
    padding: 12px 0 12px 45px;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.process-steps li:last-child {
    border-bottom: none;
}

.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.service-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.service-cta h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.service-cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-cta .btn-primary:hover {
    background: var(--secondary-color);
    color: #fff;
}

.service-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Additional Service Section Styles */
.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.service-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.info-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.service-process ol {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.service-process ol li {
    counter-increment: step-counter;
    position: relative;
    padding: 10px 0 10px 35px;
    font-size: 15px;
    color: var(--text-color);
}

.service-process ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.service-specialties,
.outdoor-benefits,
.repair-cases {
    margin-bottom: 35px;
}

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

.specialty-item {
    padding: 20px;
    background: #f3f4f6;
    border-radius: 10px;
}

.specialty-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.specialty-item p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.service-quality {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 35px;
}

.service-quality h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-quality p {
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-list .benefit {
    padding: 15px;
    background: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.benefit-list .benefit strong {
    color: var(--dark-color);
    margin-right: 5px;
}

.service-materials {
    background: #fefce8;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 35px;
}

.service-materials h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-materials p {
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

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

.case-item {
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.case-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.case-item p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.repair-advantages .advantage-list {
    list-style: none;
    padding-left: 0;
}

.repair-advantages .advantage-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

.repair-advantages .advantage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-box .cta-button {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-section .section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-section .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Text-only article styles */
.article-card.text-only {
    padding: 0;
}

.article-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-card.text-only .article-date {
    position: static;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.article-date span {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.article-date small {
    font-size: 12px;
    opacity: 0.9;
}

.article-header .article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 0;
}

.article-header .article-category {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.article-header .article-read-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.article-content {
    padding: 30px;
}

.article-content .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-category {
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-read-time {
    font-size: 14px;
    color: #666;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-content > p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-highlights {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.article-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-highlights li {
    position: relative;
    padding: 5px 0 5px 25px;
    font-size: 14px;
    color: var(--text-color);
}

.article-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 14px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.article-author svg {
    color: var(--primary-color);
}

.read-more-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cta .cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Blog Section */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .blog-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }

    .articles-grid {
        gap: 25px;
        margin-bottom: 40px;
    }

    .article-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .article-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .article-card.text-only .article-date {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 8px 12px;
    }

    .article-header .article-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .article-content {
        padding: 20px;
    }

    .article-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .article-content > p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .article-highlights {
        padding: 15px;
    }

    .article-highlights ul {
        padding-left: 15px;
    }

    .article-highlights li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .article-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .article-author {
        justify-content: center;
    }

    .read-more-btn {
        text-align: center;
        width: 100%;
        padding: 10px;
    }

    .blog-cta {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .blog-cta h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-cta p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .blog-cta .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-section .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .blog-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .articles-grid {
        gap: 20px;
        margin-bottom: 30px;
    }

    .article-header {
        padding: 15px;
    }

    .article-card.text-only .article-date span {
        font-size: 18px;
    }

    .article-card.text-only .article-date small {
        font-size: 11px;
    }

    .article-header .article-category {
        font-size: 10px;
        padding: 4px 8px;
    }

    .article-header .article-read-time {
        font-size: 12px;
    }

    .article-content {
        padding: 15px;
    }

    .article-content h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .article-content > p {
        font-size: 13px;
    }

    .article-highlights {
        padding: 12px;
        background: #fafbfc;
    }

    .article-highlights li {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .article-author span {
        font-size: 13px;
    }

    .read-more-btn {
        font-size: 14px;
        padding: 8px;
    }

    .blog-cta {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .blog-cta h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .blog-cta p {
        font-size: 13px;
        line-height: 1.5;
    }

    .blog-cta .cta-button {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.video-section .section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-section .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-play-button {
    background: var(--primary-color);
}

.video-container:hover .video-play-button svg {
    fill: #fff;
}

.video-container video::-webkit-media-controls-play-button {
    display: initial !important;
}

.video-container video[controls] ~ .video-play-button {
    display: none;
}

.video-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.video-info > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.video-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.video-cta h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.video-cta p {
    font-size: 16px;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 20px;
}

.video-cta .cta-button {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-cta .cta-button:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Video Section */
@media (max-width: 1024px) {
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-section .section-title {
        font-size: 2rem;
    }
    
    .video-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .video-info h3 {
        font-size: 24px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button svg {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Service Sections */
@media (max-width: 1024px) {
    .service-detail-wrapper,
    .service-detail-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-info-cards {
        grid-template-columns: 1fr;
    }
    
    .specialty-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail .section-title {
        font-size: 2rem;
    }
    
    .service-detail .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-content h3 {
        font-size: 24px;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-item {
        padding: 12px;
        font-size: 14px;
    }

    .benefit-item svg {
        width: 18px;
        height: 18px;
    }

    .benefit-item span {
        font-size: 14px;
    }

    /* Outdoor benefits styles */
    .outdoor-benefits {
        margin-bottom: 25px;
    }

    .outdoor-benefits h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .benefit-list {
        gap: 12px;
    }

    .benefit-list .benefit {
        padding: 12px;
        font-size: 14px;
        line-height: 1.5;
        border-left-width: 3px;
    }

    .benefit-list .benefit strong {
        display: block;
        margin-bottom: 5px;
        font-size: 15px;
    }

    /* Repair cases styles */
    .repair-cases {
        margin-bottom: 25px;
    }

    .repair-cases h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .case-grid {
        gap: 15px;
    }

    .case-item {
        padding: 15px;
    }

    .case-item strong {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .case-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Repair advantages styles */
    .repair-advantages {
        margin-bottom: 25px;
    }

    .repair-advantages h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .repair-advantages .advantage-list li {
        padding: 8px 0 8px 25px;
        font-size: 14px;
        line-height: 1.5;
    }

    .repair-advantages .advantage-list li::before {
        font-size: 14px;
        top: 8px;
    }
}

@media (max-width: 480px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-item {
        padding: 10px 12px;
    }

    .service-benefits h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Outdoor benefits for small screens */
    .outdoor-benefits h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit-list {
        gap: 10px;
    }

    .benefit-list .benefit {
        padding: 10px;
        font-size: 13px;
        background: #f9fafb;
    }

    .benefit-list .benefit strong {
        font-size: 14px;
        margin-bottom: 3px;
    }

    /* Repair cases for small screens */
    .repair-cases h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .case-item {
        padding: 12px;
        background: #fafafa;
        border-radius: 8px;
    }

    .case-item strong {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .case-item p {
        font-size: 12px;
    }

    /* Repair advantages for small screens */
    .repair-advantages h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .repair-advantages .advantage-list li {
        padding: 6px 0 6px 22px;
        font-size: 13px;
        line-height: 1.4;
    }

    .repair-advantages .advantage-list li::before {
        font-size: 13px;
        top: 6px;
    }

    .cta-box p {
        font-size: 16px;
    }
    
    .cta-box .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}


/* Responsive Service Detail */
@media (max-width: 1024px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-content h3 {
        font-size: 26px;
    }
    
    .service-features,
    .service-process {
        padding: 25px 20px;
    }
    
    .service-cta {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .service-cta h4 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .service-cta p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .cta-buttons {
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }

    .cta-buttons .btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .service-cta {
        padding: 20px 12px;
    }

    .service-cta h4 {
        font-size: 20px;
    }

    .service-cta p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .service-detail-content h3 {
        font-size: 22px;
    }
    
    .service-features h4,
    .service-benefits h4,
    .service-process h4 {
        font-size: 18px;
    }
    
    .feature-list span,
    .process-steps li {
        font-size: 14px;
    }
    
    .service-badge {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* 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(37, 99, 235, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.fixed-call-button:hover {
    background: #1e40af;
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 99, 235, 0.5);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 99, 235, 0.6);
    }
    100% {
        box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
    }
}

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

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

/* Contact links */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}
