/*
 * Zohar Cohen Plumbing – Campaign Landing Page
 * Professional, trustworthy, conversion-focused
 */

:root {
    --zc-primary: #1565c0;
    --zc-primary-dark: #0d47a1;
    --zc-primary-light: #42a5f5;
    --zc-accent: #ff8f00;
    --zc-accent-dark: #ef6c00;
    --zc-success: #2e7d32;
    --zc-success-light: #e8f5e9;
    --zc-bg: #f5f7fa;
    --zc-bg-white: #ffffff;
    --zc-text: #1a202c;
    --zc-text-muted: #5a6577;
    --zc-border: #e2e8f0;
    --zc-radius: 14px;
    --zc-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --zc-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --font-main: 'Heebo', sans-serif;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--zc-text);
    direction: rtl;
    line-height: 1.7;
    background: var(--zc-bg);
    overflow-x: hidden;
}

.zc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zc-section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== SECTION HEADERS ==================== */
.zc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.zc-section-tag {
    display: inline-block;
    background: rgba(21, 101, 192, 0.1);
    color: var(--zc-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.zc-section-header h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--zc-text);
}

.zc-accent {
    color: var(--zc-primary);
}

/* ==================== TOP BAR ==================== */
.zc-topbar {
    background: var(--zc-primary-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.zc-topbar-inner {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.zc-topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.zc-topbar a {
    color: #fff;
    font-weight: 600;
}

.zc-topbar i {
    color: var(--zc-accent);
}

/* ==================== HERO ==================== */
.zc-hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #0d47a1 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.zc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.zc-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.zc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.zc-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.zc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 143, 0, 0.2);
    border: 1px solid rgba(255, 143, 0, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd54f;
}

.zc-badge i {
    color: #ffb300;
}

.zc-hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.zc-hero-highlight {
    color: #ffd54f;
}

.zc-hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
}

.zc-hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.zc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--zc-accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.zc-btn-primary:hover {
    background: var(--zc-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.4);
}

.zc-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.zc-btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.zc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--zc-primary);
    border: 2px solid var(--zc-primary);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.zc-btn-outline:hover {
    background: var(--zc-primary);
    color: #fff;
}

.zc-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.zc-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.zc-trust-item i {
    color: #4caf50;
}

/* Hero Form Card */
.zc-form-card {
    background: var(--zc-bg-white);
    border-radius: var(--zc-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    color: var(--zc-text);
}

.zc-form-header {
    background: var(--zc-accent);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zc-form-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.zc-form {
    padding: 24px;
}

.zc-form-group {
    margin-bottom: 12px;
}

.zc-form input,
.zc-form select,
.zc-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--zc-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--zc-text);
    background: var(--zc-bg);
    transition: border-color 0.3s ease;
    resize: vertical;
}

.zc-form input:focus,
.zc-form select:focus,
.zc-form textarea:focus {
    outline: none;
    border-color: var(--zc-primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.zc-form input::placeholder,
.zc-form textarea::placeholder {
    color: #94a3b8;
}

.zc-form-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--zc-primary);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.zc-form-btn:hover {
    background: var(--zc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
}

.zc-form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--zc-text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.zc-form-note i {
    color: var(--zc-success);
}

/* ==================== USP BAR ==================== */
.zc-usp-bar {
    background: var(--zc-bg-white);
    padding: 50px 0;
    border-bottom: 2px solid var(--zc-border);
}

.zc-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zc-usp-item {
    text-align: center;
    padding: 24px 16px;
}

.zc-usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--zc-primary), var(--zc-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 16px;
}

.zc-usp-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--zc-text);
}

.zc-usp-item p {
    font-size: 0.9rem;
    color: var(--zc-text-muted);
    line-height: 1.6;
}

/* ==================== FEATURE (LEAK DETECTION) ==================== */
.zc-feature-section {
    background: var(--zc-bg);
}

.zc-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zc-feature-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.zc-feature-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--zc-text);
    margin-bottom: 16px;
}

.zc-feature-stats {
    display: flex;
    gap: 24px;
    margin-top: 30px;
}

.zc-feature-stat {
    text-align: center;
    background: var(--zc-bg-white);
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid var(--zc-border);
    flex: 1;
}

.zc-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--zc-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.zc-stat-text {
    font-size: 0.85rem;
    color: var(--zc-text-muted);
    font-weight: 600;
}

/* Tech Card */
.zc-tech-card {
    background: var(--zc-bg-white);
    border-radius: var(--zc-radius);
    padding: 32px;
    border: 2px solid var(--zc-border);
    box-shadow: var(--zc-shadow-lg);
}

.zc-tech-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--zc-border);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--zc-primary);
}

.zc-tech-header i {
    font-size: 1.4rem;
}

.zc-tech-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.zc-tech-icon {
    width: 48px;
    height: 48px;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: var(--zc-primary);
    flex-shrink: 0;
}

.zc-tech-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.zc-tech-item p {
    font-size: 0.9rem;
    color: var(--zc-text-muted);
    line-height: 1.5;
}

.zc-tech-result {
    background: var(--zc-success-light);
    color: var(--zc-success);
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.zc-tech-visual-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--zc-radius);
    box-shadow: var(--zc-shadow-lg);
    margin: 0 auto;
    display: block;
}

/* ==================== SERVICES ==================== */
.zc-services-section {
    background: var(--zc-bg-white);
}

.zc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.zc-service-card {
    background: var(--zc-bg);
    border: 2px solid var(--zc-border);
    border-radius: var(--zc-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.zc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--zc-shadow-lg);
    border-color: var(--zc-primary);
}

.zc-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--zc-primary), var(--zc-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 18px;
}

.zc-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.zc-service-card p {
    font-size: 0.92rem;
    color: var(--zc-text-muted);
    line-height: 1.7;
}

/* ==================== WHY ZOHAR ==================== */
.zc-why-section {
    background: linear-gradient(180deg, #e3f2fd 0%, #f5f7fa 100%);
}

.zc-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.zc-why-card {
    background: var(--zc-bg-white);
    border-radius: var(--zc-radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--zc-border);
    transition: all 0.3s ease;
}

.zc-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--zc-shadow);
}

.zc-why-emoji {
    font-size: 2.8rem;
    margin-bottom: 14px;
}

.zc-why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.zc-why-card p {
    font-size: 0.95rem;
    color: var(--zc-text-muted);
    line-height: 1.7;
}

/* ==================== REVIEWS ==================== */
.zc-reviews-section {
    background: var(--zc-bg-white);
}

.zc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.zc-review-card {
    background: var(--zc-bg);
    border: 2px solid var(--zc-border);
    border-radius: var(--zc-radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.zc-review-card:hover {
    box-shadow: var(--zc-shadow);
    border-color: var(--zc-primary);
}

.zc-review-stars {
    margin-bottom: 14px;
}

.zc-review-stars i {
    color: #ffb300;
    font-size: 1rem;
    margin-left: 2px;
}

.zc-review-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
    color: var(--zc-text);
}

.zc-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zc-review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--zc-primary), var(--zc-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.zc-review-author strong {
    display: block;
    font-size: 0.95rem;
}

.zc-review-author span {
    font-size: 0.8rem;
    color: var(--zc-text-muted);
}

.zc-reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==================== PROCESS ==================== */
.zc-process-section {
    background: var(--zc-bg);
}

.zc-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.zc-process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 20px 16px;
    position: relative;
}

.zc-step-num {
    width: 44px;
    height: 44px;
    background: var(--zc-primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.zc-step-icon {
    width: 64px;
    height: 64px;
    background: var(--zc-bg-white);
    border: 2px solid var(--zc-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--zc-primary);
    margin: 0 auto 14px;
}

.zc-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.zc-process-step p {
    font-size: 0.88rem;
    color: var(--zc-text-muted);
    line-height: 1.6;
}

.zc-process-arrow {
    display: flex;
    align-items: center;
    padding-top: 70px;
    color: var(--zc-primary);
    font-size: 1.2rem;
    opacity: 0.4;
}

/* ==================== COVERAGE AREA ==================== */
.zc-area-section {
    background: var(--zc-bg-white);
}

.zc-area-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.zc-area-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.zc-area-text > p {
    font-size: 1.05rem;
    color: var(--zc-text-muted);
    margin-bottom: 20px;
}

.zc-area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.zc-area-cities span {
    background: rgba(21, 101, 192, 0.08);
    color: var(--zc-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(21, 101, 192, 0.15);
}

.zc-area-note {
    font-size: 1rem;
    color: var(--zc-text);
}

.zc-area-card {
    background: var(--zc-bg);
    border: 2px solid var(--zc-border);
    border-radius: var(--zc-radius);
    padding: 36px 28px;
    text-align: center;
}

.zc-area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--zc-primary), var(--zc-primary-light));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 20px;
}

.zc-area-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--zc-text-muted);
}

.zc-time-num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--zc-primary);
    line-height: 1;
}

.zc-time-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zc-text-muted);
    margin-bottom: 16px;
}

.zc-area-card > p {
    font-size: 0.9rem;
    color: var(--zc-text-muted);
}

.zc-area-map {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--zc-radius);
    box-shadow: var(--zc-shadow);
    margin: 20px auto 0;
    display: block;
    border: 2px solid var(--zc-border);
}

/* ==================== FINAL CTA ==================== */
.zc-final-cta {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.zc-final-content h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}

.zc-final-content > p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zc-final-cta-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.zc-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 48px;
    border-radius: var(--zc-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 220px;
}

.zc-cta-block i {
    font-size: 2rem;
}

.zc-cta-block strong {
    font-size: 1.1rem;
}

.zc-cta-block span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.zc-cta-phone {
    background: var(--zc-accent);
    color: #fff;
}

.zc-cta-phone:hover {
    background: var(--zc-accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 143, 0, 0.4);
}

.zc-cta-wa {
    background: #25d366;
    color: #fff;
}

.zc-cta-wa:hover {
    background: #1ebe57;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.zc-final-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0.85;
    font-size: 0.9rem;
}

.zc-final-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.zc-final-trust i {
    color: #ffd54f;
}

/* ==================== FOOTER ==================== */
.zc-footer {
    background: #0a1929;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.zc-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zc-footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.zc-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
}

.zc-footer ul {
    list-style: none;
}

.zc-footer li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.zc-footer li i {
    color: var(--zc-primary-light);
    width: 18px;
    text-align: center;
}

.zc-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.zc-footer a:hover {
    color: #fff;
}

.zc-footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.82rem;
    opacity: 0.6;
}

.zc-footer-bottom a {
    color: var(--zc-primary-light);
}

/* ==================== FLOATING BUTTONS ==================== */
.zc-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.zc-wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.zc-call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--zc-accent);
    color: #fff;
    border-radius: 50%;
    display: none;
    place-items: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0%, 100% { box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(255, 143, 0, 0.7); }
}

.zc-call-float:hover {
    transform: scale(1.1);
}

/* ==================== ANIMATIONS ==================== */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim="fade-right"] {
    transform: translateX(30px);
}

[data-anim="fade-left"] {
    transform: translateX(-30px);
}

[data-anim].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .zc-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zc-hero-sub {
        margin: 0 auto 30px;
    }

    .zc-hero-ctas {
        justify-content: center;
    }

    .zc-hero-trust {
        justify-content: center;
    }

    .zc-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zc-feature-grid {
        grid-template-columns: 1fr;
    }

    .zc-area-content {
        grid-template-columns: 1fr;
    }

    .zc-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zc-footer li {
        justify-content: center;
    }

    .zc-footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .zc-section {
        padding: 60px 0;
    }

    .zc-hero {
        padding: 60px 0 40px;
    }

    .zc-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .zc-btn-primary,
    .zc-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .zc-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .zc-usp-grid {
        grid-template-columns: 1fr;
    }

    .zc-feature-stats {
        flex-direction: column;
        gap: 12px;
    }

    .zc-process-arrow {
        display: none;
    }

    .zc-process-grid {
        flex-direction: column;
        align-items: center;
    }

    .zc-process-step {
        max-width: 100%;
    }

    .zc-final-cta-grid {
        flex-direction: column;
        align-items: center;
    }

    .zc-cta-block {
        width: 100%;
    }

    .zc-call-float {
        display: grid;
    }

    .zc-topbar-area {
        display: none;
    }
}

@media (max-width: 480px) {
    .zc-area-cities {
        justify-content: center;
    }

    .zc-final-trust {
        flex-direction: column;
        align-items: center;
    }
}
