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

:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section - Compact Version */
.why-us-compact {
    padding: 25px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F4F8 100%);
    position: relative;
}

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

.why-us-compact .section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.why-us-compact .section-subtitle {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 400;
}

/* Advantages Compact Grid */
.advantages-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advantage Item */
.advantage-item {
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon svg {
    width: 24px;
    height: 24px;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.item-desc {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.3;
}

/* Highlight Item */
.highlight-item {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #10B981;
}

/* Compact CTA */
.why-us-cta-compact {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.cta-button-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.cta-button-compact svg {
    width: 16px;
    height: 16px;
}

/* Mobile Responsive for Compact Version */
@media (max-width: 768px) {
    .why-us-compact {
        padding: 20px 0;
    }
    
    .advantages-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 15px;
    }
    
    .advantage-item {
        padding: 10px;
    }
    
    .item-title {
        font-size: 12px;
    }
    
    .item-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .why-us-compact .section-title {
        font-size: 18px;
    }
    
    .why-us-compact .section-subtitle {
        font-size: 11px;
    }
    
    .advantages-compact-grid {
        padding: 0 10px;
        gap: 6px;
    }
    
    .advantage-item {
        padding: 8px;
        gap: 8px;
    }
    
    .item-icon {
        width: 28px;
        height: 28px;
    }
    
    .item-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .item-title {
        font-size: 11px;
    }
    
    .item-desc {
        font-size: 9px;
    }
    
    .cta-button-compact {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Original Why Us Section (keep for reference) */
.why-us {
    padding: 40px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F4F8 100%);
    position: relative;
}

.why-us .section-header {
    text-align: center;
    margin-bottom: 25px;
}

.why-us .section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.why-us .section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 35px;
    padding: 0 20px;
}

.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.advantage-icon {
    margin-bottom: 12px;
}

.advantage-icon svg {
    width: 36px;
    height: 36px;
}

.advantage-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.advantage-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Masters Team Section */
.masters-team {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    margin: 0 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.team-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

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

.master-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.master-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.master-image {
    position: relative;
    margin-bottom: 12px;
}

.master-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.master-badge {
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 1px 5px rgba(37, 99, 235, 0.3);
}

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

.master-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.master-role {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.master-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.master-stats .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-gray);
}

.master-stats svg {
    color: var(--primary-color);
}

.master-review {
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.3;
    padding: 8px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    border-left: 2px solid var(--primary-color);
}

/* CTA at the end */
.why-us-cta {
    text-align: center;
    margin-top: 25px;
    padding: 0 20px;
}

.why-us-cta .cta-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.why-us-cta .primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.why-us-cta .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
}

.why-us-cta .cta-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .masters-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .master-stats {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Responsive */
@media (min-width: 768px) {
    .why-us {
        padding: 50px 0;
    }
    
    .why-us .section-title {
        font-size: 32px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .masters-team {
        padding: 30px 40px;
        margin: 0 40px;
    }
    
    .team-title {
        font-size: 26px;
    }
}

/* Before & After Section */
.before-after-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F4F8 100%);
    position: relative;
}

.before-after-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E6FFFA 0%, #D1FAE5 100%);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.before-after-gallery {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.ba-work-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.ba-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ba-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.ba-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
}

.label-before,
.label-after {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.label-before {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.label-after {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.ba-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.ba-info {
    padding: 25px;
}

.ba-info-compact {
    padding: 20px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ba-work-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.ba-work-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.ba-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 15px 0;
}

.ba-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6B7280;
}

.ba-description {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.ba-trust-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}

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

.ba-cta .cta-text {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 15px;
}

.ba-cta .primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

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

/* Tablet Responsive */
@media (min-width: 768px) {
    .before-after-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ba-title {
        font-size: 20px;
    }
    
    .ba-description {
        font-size: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .before-after-section {
        padding: 40px 0;
    }
    
    .before-after-gallery {
        gap: 25px;
    }
    
    .ba-work-card {
        border-radius: 16px;
    }
    
    .ba-labels {
        padding: 15px;
    }
    
    .label-before,
    .label-after {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .ba-divider svg {
        width: 32px;
        height: 32px;
    }
    
    .ba-info {
        padding: 20px;
    }
    
    .ba-info-compact {
        padding: 15px;
    }
    
    .ba-work-title {
        font-size: 16px;
    }
    
    .ba-work-desc {
        font-size: 13px;
    }
    
    .ba-title {
        font-size: 18px;
    }
    
    .ba-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .detail-item {
        font-size: 13px;
    }
    
    .ba-description {
        font-size: 14px;
    }
    
    .ba-trust-points {
        gap: 15px;
    }
    
    .trust-point {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .trust-point svg {
        width: 20px;
        height: 20px;
    }
    
    .ba-cta .cta-text {
        font-size: 16px;
    }
    
    .ba-cta .primary-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .before-after-section .section-title {
        font-size: 24px;
    }
    
    .before-after-section .section-subtitle {
        font-size: 14px;
    }
    
    .quality-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .ba-info {
        padding: 15px;
    }
    
    .ba-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .ba-description {
        font-size: 13px;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 40px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.social-proof .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.social-proof .section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.social-proof .section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

/* Happy Client Polaroid Effect */
.happy-client-wrapper {
    position: relative;
    margin-bottom: 30px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.polaroid-container {
    position: relative;
    transform-style: preserve-3d;
}

.polaroid-frame {
    background: white;
    padding: 15px 15px 15px 15px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.05);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    max-width: 280px;
    position: relative;
}

.polaroid-frame:hover {
    transform: rotate(-2deg) scale(1.02);
}

.polaroid-image {
    width: 250px;
    height: 230px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: 
        contrast(0.95) 
        brightness(1.02) 
        saturate(0.9)
        sepia(0.05);
}

/* Removed caption styles as caption was removed from HTML */

.polaroid-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse at center, 
        rgba(0,0,0,0.2) 0%, 
        transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* Removed floating animation for static positioning */

.polaroid-container .client-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #fff;
    border: 2px solid #10B981;
    color: #10B981;
    padding: 4px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transform: rotate(-2deg);
    font-size: 11px;
}

.polaroid-container .client-badge .badge-icon {
    color: #10B981;
    font-size: 12px;
    font-weight: bold;
}

.polaroid-container .client-badge .badge-text {
    color: #10B981;
    font-size: 11px;
    font-weight: 600;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    margin-bottom: 12px;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.3;
}

/* Reviews Carousel */
.reviews-carousel {
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.reviews-container {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.review-card {
    min-width: 100%;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    display: none;
    animation: slideIn 0.5s ease;
}

.review-card.active {
    display: block;
}

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

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FFC107;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: var(--text-gray);
}

.verified-review {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #E6FFFA;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #10B981;
    font-weight: 600;
}

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

.review-problem {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.review-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-gray);
    font-style: italic;
}

.review-footer {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #F3F4F6;
}

.service-type,
.response-time {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 8px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.badge-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.badge-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .social-proof {
        padding: 50px 0;
    }
    
    .social-proof .section-title {
        font-size: 36px;
    }
    
    .social-proof .section-header {
        margin-bottom: 40px;
    }
    
    .happy-client-wrapper {
        height: 350px;
        margin-bottom: 40px;
        perspective: 1500px;
    }
    
    .polaroid-frame {
        max-width: 320px;
        padding: 18px 18px 18px 18px;
        transform: rotate(-3deg);
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.15),
            0 15px 30px rgba(0, 0, 0, 0.1),
            0 30px 60px rgba(0, 0, 0, 0.08);
    }
    
    .polaroid-frame:hover {
        transform: rotate(-3deg) scale(1.03);
    }
    
    .polaroid-image {
        width: 284px;
        height: 260px;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
        margin: 0 auto 40px;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .reviews-carousel {
        max-width: 700px;
        margin: 0 auto 40px;
    }
    
    .review-card {
        min-width: auto;
        width: 100%;
        padding: 25px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
        max-width: 600px;
        margin: 0 auto;
        gap: 15px;
    }
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    height: 64px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.header-cta:active {
    transform: translateY(0);
}

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

.cta-text {
    display: inline-block;
}

/* Hero Section - MOBILE FIRST */
.hero {
    padding-top: 64px;
    padding-bottom: 0;
    background: white;
}

/* Mobile Version - Default */
.hero-mobile {
    display: block;
}

.hero-desktop {
    display: none;
}

.hero-image-container {
    width: 100%;
    position: relative;
    overflow: visible;
}

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

/* Hero Title Block - Overlay Effect */
.hero-title-block {
    position: absolute;
    bottom: -75px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.25);
    z-index: 10;
    border: none;
    transition: all 0.3s ease;
    margin: 0;
}

/* Sticky header on mobile when scrolling */
@media (max-width: 768px) {
    .header {
        height: 50px;
    }
    
    .header-content {
        height: 50px;
        padding: 0 15px;
    }
    
    body {
        padding-top: 50px;
    }
    
    .hero-title-block.sticky {
        position: fixed !important;
        top: 50px; /* Position below header */
        left: 0;
        right: 0;
        bottom: auto;
        border-radius: 0 0 12px 12px;
        z-index: 999; /* Below header z-index */
        animation: slideDown 0.3s ease;
        padding: 8px 12px !important;
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
        background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
        transition: all 0.3s ease;
        border: none;
    }
    
    .hero-title-block.sticky .title-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .hero-title-block.sticky .hero-main-title {
        font-size: 15px;
        margin-bottom: 0;
        line-height: 1.1;
        letter-spacing: -0.3px;
    }
    
    .hero-title-block.sticky .hero-subtitle {
        font-size: 10px;
        opacity: 0.85;
        margin: 0;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
}

.title-content {
    text-align: center;
    color: white;
}

.hero-main-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 500;
    margin: 3px 0 0 0;
    opacity: 0.95;
}

/* Rating Card on Image */
.rating-card {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-width: 130px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.verified-icon {
    width: 20px;
    height: 20px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.verified-text {
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.stars-row {
    color: #FFB400;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

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

.rating-count {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
}


/* Map Section */
/* Map Container - Now Primary Hero Element */
.map-container {
    width: 100%;
    padding: 0;
    margin-top: 70px;
    position: relative;
    height: 300px;
    background: #f0f0f0;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, white 75%);
    pointer-events: none;
    z-index: 2;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
}

/* Desktop Map */
.desktop-map-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
}

.desktop-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 45%, #f0f4f8 75%);
    pointer-events: none;
    z-index: 2;
}

.desktop-map-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    display: block;
    mask-image: radial-gradient(ellipse at center, black 55%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 85%);
}

/* User Location Dot */
.user-location {
    position: absolute;
    top: 54%;
    left: 53%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.location-dot {
    width: 20px;
    height: 20px;
    background: #0066CC;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.5);
    position: relative;
    z-index: 3;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.4);
    animation: pulse-animation 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: 1;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse-animation {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Desktop location adjustments */
.user-location.desktop .location-dot {
    width: 24px;
    height: 24px;
}

.user-location.desktop .pulse-ring {
    width: 24px;
    height: 24px;
}

@keyframes pulse-animation-desktop {
    0% {
        width: 24px;
        height: 24px;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.user-location.desktop .pulse-ring {
    animation: pulse-animation-desktop 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

/* Master Pins - Modern Design */
.master-pin {
    position: absolute;
    z-index: 6;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pin-marker {
    position: relative;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.master-photo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0066CC;
    transition: border-color 0.3s ease;
}

/* Status indicators */
.master-pin.status-available .master-photo {
    border-color: #10B981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.master-pin.status-soon .master-photo {
    border-color: #F59E0B;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.master-pin.status-busy .master-photo {
    border-color: #EF4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
    opacity: 0.85;
}

/* Status dot indicator */
.master-pin::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 10;
}

.master-pin.status-available::after {
    background: #10B981;
    animation: pulse-status 2s infinite;
}

.master-pin.status-soon::after {
    background: #F59E0B;
    animation: pulse-status 3s infinite;
}

.master-pin.status-busy::after {
    background: #EF4444;
}

@keyframes pulse-status {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    70% {
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.time-badge {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
    backdrop-filter: blur(12px);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #1F2937;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.time-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
}

.distance-info {
    color: #6B7280;
    font-weight: 500;
    font-size: 10px;
    padding-left: 8px;
    border-left: 1px solid #E5E7EB;
}

/* Position classes for masters */
.master-pin[data-position="1"] {
    top: 40%;
    left: 65%;
}

.master-pin[data-position="2"] {
    top: 65%;
    left: 35%;
}

.master-pin[data-position="3"] {
    top: 25%;
    left: 25%;
}

/* Desktop master pins */
.master-pin.desktop .pin-marker {
    padding: 4px;
}

.master-pin.desktop .master-photo {
    width: 48px;
    height: 48px;
}

.master-pin.desktop .time-badge {
    font-size: 12px;
    padding: 5px 12px;
    bottom: -32px;
}

/* Urgency Block */
.urgency-block {
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
    border-radius: 16px;
    margin: 12px;
    margin-top: 5px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.15);
}

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

/* Active Counter */
.active-counter {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.counter-text {
    font-size: 13px;
    color: #1F2937;
}

.counter-text strong {
    color: #EF4444;
    font-weight: 700;
}

/* Orders Ticker */
.orders-ticker {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 6px 10px;
    overflow: hidden;
    position: relative;
    height: 28px;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.order-item {
    font-size: 11px;
    color: #6B7280;
    display: inline-flex;
    align-items: center;
}

/* Discount Timer */
.discount-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-badge {
    background: #EF4444;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.timer-text {
    font-size: 12px;
    color: #1F2937;
}

.timer-text strong {
    font-weight: 700;
    color: #EF4444;
}

/* CTA Button */
.urgency-cta {
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: white !important;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.urgency-cta .cta-text {
    color: white !important;
}

.urgency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: white !important;
}

.cta-phone {
    transition: transform 0.3s ease;
    animation: ring 2s ease-in-out infinite;
    stroke: white !important;
    fill: white !important;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.urgency-cta:hover .cta-phone {
    animation: none;
    transform: scale(1.1);
}

/* Desktop Urgency Block */
.urgency-block.desktop {
    display: none;
}

@media (min-width: 1024px) {
    .urgency-block:not(.desktop) {
        display: none;
    }
    
    .urgency-block.desktop {
        display: block;
        max-width: 900px;
        margin: 30px auto 20px;
        padding: 20px;
    }
    
    .urgency-content {
        grid-template-columns: auto 1fr auto auto;
        gap: 20px;
    }
    
    .active-counter {
        grid-column: auto;
        padding: 10px 16px;
    }
    
    .orders-ticker {
        grid-column: auto;
        height: 36px;
        padding: 8px 16px;
    }
    
    .discount-timer {
        grid-column: auto;
    }
    
    .urgency-cta {
        grid-column: auto;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .counter-text {
        font-size: 14px;
    }
    
    .order-item {
        font-size: 12px;
    }
    
    .timer-text {
        font-size: 13px;
    }
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #F9FAFB;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 10px 0;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin: 0 0 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-badge.urgent {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.service-badge.h24 {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature {
    font-size: 12px;
    color: #10B981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.service-cta.urgent {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(239, 68, 68, 0.5);
    }
}

.service-card.urgence {
    border: 2px solid #EF4444;
}

/* Mobile Services */
@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-desc {
        font-size: 13px;
    }
}

/* Desktop 3 columns */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Work Process Section - New Card Design */
.work-process {
    padding: 25px 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 50%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

/* Process Cards Grid */
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Process Card */
.process-card {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon */
.card-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.process-card:hover .card-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* Card Number */
.card-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Card Title */
.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

/* Card Description */
.card-desc {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Card Time */
.card-time {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
}

.card-time svg {
    width: 14px;
    height: 14px;
}

/* Highlight Card (Garanties) */
.highlight-card {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1px solid var(--primary-light);
}

.highlight-card .card-number {
    display: none;
}

/* Card Guarantees List */
.card-guarantees {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 11px;
    display: inline-block;
}

.card-guarantees li {
    padding: 3px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-guarantees li svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.work-process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.work-process .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.work-process .section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.work-process .section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
    isolation: isolate;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 3;
}

.step-icon svg {
    color: white;
    width: 20px;
    height: 20px;
}

.step-content {
    flex: 1;
    background: white;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

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

.step-number {
    position: absolute;
    top: -8px;
    right: 10px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

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

.step-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.step-time svg {
    stroke: var(--primary-color);
}

/* Connecting Line */
.step-line {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(37, 99, 235, 0.2) 100%);
    z-index: 0;
}

.process-step:last-child .step-line {
    display: none;
}

/* Process Features */
.process-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.process-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.process-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.process-features .feature-item svg {
    stroke: var(--primary-color);
    fill: none;
}

/* Process CTA */
.process-cta {
    text-align: center;
    padding-top: 20px;
}

.process-cta .cta-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.process-cta .primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.process-cta .primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Mobile Responsive for Process Cards */
@media (max-width: 768px) {
    .work-process {
        padding: 20px 0;
    }
    
    .work-process .section-title {
        font-size: 20px;
    }
    
    .work-process .section-subtitle {
        font-size: 12px;
        padding: 0 15px;
    }
    
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    
    .process-card {
        padding: 15px 10px;
    }
    
    .card-icon {
        height: 35px;
        margin-bottom: 8px;
    }
    
    .card-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-desc {
        font-size: 10px;
    }
    
    .card-time {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .card-guarantees {
        font-size: 10px;
    }
    
    .process-timeline {
        padding: 5px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 25px;
        position: relative;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        z-index: 3;
    }
    
    .step-line {
        left: 50%;
        transform: translateX(-50%);
        top: 45px;
        height: 35px;
        z-index: 0;
    }
    
    .step-content {
        width: 100%;
        padding: 12px;
        z-index: 2;
        position: relative;
    }
    
    .step-number {
        right: 15px;
        top: -12px;
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .step-title {
        font-size: 14px;
    }
    
    .step-desc {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .process-features {
        gap: 15px;
    }
    
    .process-features .feature-item {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .process-cta .primary-cta {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .work-process {
        padding: 15px 0;
    }
    
    .work-process .section-title {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .work-process .section-subtitle {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .process-cards-grid {
        padding: 0 10px;
        gap: 8px;
    }
    
    .process-card {
        padding: 12px 8px;
    }
    
    .card-icon {
        height: 30px;
        margin-bottom: 6px;
    }
    
    .card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .card-number {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: 8px;
        right: 8px;
    }
    
    .card-title {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .card-desc {
        font-size: 9px;
        margin-bottom: 5px;
    }
    
    .card-time {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .card-guarantees {
        font-size: 9px;
    }
    
    .card-guarantees li {
        padding: 2px 0;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        z-index: 3;
    }
    
    .step-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .step-line {
        height: 30px;
        top: 40px;
    }
    
    .step-content {
        padding: 10px;
        margin-top: -5px;
    }
    
    .step-title {
        font-size: 13px;
    }
    
    .step-desc {
        font-size: 10px;
    }
    
    .process-features {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin: 10px 0;
    }
    
    .process-features .feature-item {
        justify-content: center;
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Mobile Fixed Call Button with Transform Animation */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 999;
}

@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }
}

.floating-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.call-text {
    display: none;
}

.floating-call-btn:active {
    transform: scale(0.95);
}

.call-icon {
    animation: shake 1.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.pulse-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-btn 2s ease-out infinite;
}

@keyframes pulse-btn {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Expanded Panel Styles - Enhanced */
.mobile-call-button.expanded {
    right: 0;
    left: 0;
    bottom: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-call-button.expanded .floating-call-btn {
    opacity: 0;
    transform: scale(0) rotate(180deg);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-call-button.expanded .pulse-background {
    display: none;
}

.expanded-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    padding: 16px 12px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-call-button.expanded .expanded-panel {
    transform: translateY(0);
    opacity: 1;
}

/* Glow Effect */
.panel-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #10B981, 
        #3B82F6, 
        #10B981, 
        transparent);
    animation: glowSlide 3s linear infinite;
}

@keyframes glowSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

.panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 2;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.live-text {
    color: #F87171;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Urgency Section */
.urgency-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    flex: 1;
    animation: fadeIn 0.8s ease;
}

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

.timer-display {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.timer-icon {
    color: #10B981;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.timer-text {
    color: #10B981;
    font-size: 13px;
    font-weight: 700;
}

.swipe-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.swipe-arrow {
    animation: swipeMove 1.5s ease-in-out infinite;
}

@keyframes swipeMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Enhanced Call Button */
.panel-call-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(16, 185, 129, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(16, 185, 129, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.panel-call-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.panel-call-btn:active {
    transform: scale(0.98);
}

.btn-text {
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.panel-icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 2;
    animation: phoneRing 1s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-5deg); }
    20% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    40% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
}

/* Particle Effects */
.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
}

.panel-call-btn:hover .btn-particles span {
    animation: particleFly 0.6s ease-out;
}

.btn-particles span:nth-child(1) {
    animation-delay: 0s;
}

.btn-particles span:nth-child(2) {
    animation-delay: 0.1s;
}

.btn-particles span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes particleFly {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(30px, -30px);
    }
}

/* Animation for smooth transition */
.mobile-call-button {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Adjust panel for smaller screens */
@media (max-width: 380px) {
    .panel-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .urgency-text {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .panel-call-btn,
    .whatsapp-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-call-button {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hero-title-block.sticky {
        top: 45px !important; /* Position below smaller header */
        padding: 6px 10px !important;
        border-radius: 0 0 10px 10px;
    }
    
    .hero-title-block.sticky .hero-main-title {
        font-size: 13px;
    }
    
    .hero-title-block.sticky .hero-subtitle {
        font-size: 9px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .header {
        height: 45px;
    }
    
    .header-content {
        height: 45px;
        padding: 0 12px;
    }
    
    body {
        padding-top: 45px;
    }
    
    .hero {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .logo-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .logo-name {
        font-size: 14px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .header-cta {
        padding: 0px 12px;
        font-size: 13px;
    }
    
    .cta-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-image {
        height: 220px;
    }
    
    .hero-title-block {
        bottom: -65px;
        left: 15px;
        right: 15px;
        padding: 14px;
    }
    
    .hero-main-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 11px;
    }
    
    .rating-card {
        top: 12px;
        left: 12px;
        padding: 10px 12px;
        min-width: 120px;
    }
    
    .verified-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    .verified-text {
        font-size: 11px;
    }
    
    .stars-row {
        font-size: 13px;
    }
    
    .rating-number {
        font-size: 16px;
    }
    
    .rating-count {
        font-size: 10px;
    }
    
    .map-container {
        padding: 8px;
        margin-top: 22px;
        height: 275px;
    }
    
    .urgency-block {
        margin: 8px;
        margin-top: 3px;
        padding: 10px;
    }
    
    .map-image {
        max-height: 180px;
        height: 100%;
        object-fit: cover;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .logo-name {
        font-size: 15px;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .header-cta {
        padding: 0px 14px;
        font-size: 13px;
    }
    
    .hero-image {
        height: 190px;
    }
    
    .hero-title-block {
        bottom: -60px;
        left: 10px;
        right: 10px;
        padding: 12px 10px;
    }
    
    .hero-main-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 10px;
    }
    
    .rating-card {
        top: 12px;
        left: 12px;
        padding: 10px 12px;
        min-width: 140px;
    }
    
    .google-g {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .google-text {
        font-size: 12px;
    }
    
    .google-badge {
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    
    .stars-row {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .rating-number {
        font-size: 16px;
    }
    
    .rating-info {
        gap: 2px;
    }
    
    .rating-count {
        font-size: 10px;
    }
    
    .rating-verified {
        font-size: 9px;
    }
    
    .map-container {
        padding: 6px;
        margin-top: 18px;
        height: 250px;
    }
    
    .urgency-block {
        margin: 8px;
        margin-top: 2px;
    }
    
    .map-image {
        max-height: 160px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 24px;
    }
    
    .header {
        height: 72px;
    }
    
    .header-content {
        height: 72px;
    }
    
    .hero {
        padding-top: 72px;
    }
    
    .logo-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 12px;
    }
    
    .header-cta {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .map-container {
        padding: 25px;
        margin-top: 85px;
    }
    
    .map-image {
        max-height: 220px;
    }
}

/* DESKTOP VERSION - COMPLETELY NEW */
@media (min-width: 1024px) {
    .hero {
        padding-top: 72px !important;
        min-height: 500px !important;
        background: #f0f4f8 !important;
    }
    
    /* Hide mobile version */
    .hero-mobile {
        display: none !important;
    }
    
    /* Show desktop version */
    .hero-desktop {
        display: block !important;
        padding: 30px 0 !important;
    }
    
    .hero-desktop-grid {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 50px !important;
    }
    
    .hero-desktop-image {
        width: 350px !important;
        height: 350px !important;
        flex-shrink: 0 !important;
        background: white !important;
        padding: 15px !important;
        border-radius: 10px !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    .hero-desktop-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }
    
    .hero-desktop-content {
        flex: 1 !important;
        max-width: 500px !important;
    }
    
    .desktop-title {
        font-size: 54px !important;
        font-weight: 800 !important;
        color: #0066CC !important;
        margin: 0 0 20px 0 !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
    }
    
    .desktop-subtitle {
        font-size: 24px !important;
        color: var(--text-gray) !important;
        margin: 0 !important;
        font-weight: 400 !important;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-desktop-image {
        width: 400px !important;
        height: 400px !important;
    }
}

/* Emergency Guide Section */
.emergency-guide {
    padding: 30px 0;
    background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
    position: relative;
}

.emergency-guide .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FEE2E2;
    color: #DC2626;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    border: 1px solid #FCA5A5;
}

.pulse-dot-urgent {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.emergency-guide .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.emergency-guide .section-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Emergency Cards Grid */
.emergency-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.emergency-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid #E5E7EB;
}

.emergency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #93C5FD;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F3F4F6;
}

.emergency-icon {
    width: 40px;
    height: 40px;
    background: #EFF6FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.emergency-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

/* Emergency Steps */
.emergency-steps {
    margin-bottom: 16px;
}

.step {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #4B5563;
}

.step-number {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #DBEAFE;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
}

.step-text {
    flex: 1;
    padding-top: 1px;
}

.step-text strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* Emergency CTA */
.emergency-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 14px 24px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.emergency-cta span {
    color: white !important;
}

.emergency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), #1d4ed8);
    color: white !important;
}

.emergency-cta:hover span {
    color: white !important;
}

.emergency-cta svg {
    width: 18px;
    height: 18px;
    fill: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .emergency-guide {
        padding: 25px 0;
    }
    
    .emergency-guide .section-title {
        font-size: 22px;
    }
    
    .emergency-guide .section-subtitle {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .emergency-cards {
        grid-template-columns: 1fr;
        padding: 0 12px;
        gap: 12px;
    }
    
    .emergency-card {
        padding: 16px;
    }
    
    .emergency-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .emergency-icon {
        width: 35px;
        height: 35px;
    }
    
    .emergency-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .emergency-card h3 {
        font-size: 16px;
    }
    
    .step {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .emergency-cta {
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* Emergency Bottom CTA */
.emergency-bottom-cta {
    margin-top: 50px;
    padding: 30px 0;
}

.bottom-cta-container {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 20px;
    padding: 35px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.cta-text-content {
    margin-bottom: 25px;
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.primary-phone-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.primary-phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.primary-phone-button svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive for Bottom CTA */
@media (max-width: 768px) {
    .emergency-bottom-cta {
        margin-top: 35px;
        padding: 20px 15px;
    }
    
    .bottom-cta-container {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    .primary-phone-button {
        padding: 14px 25px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .primary-phone-button svg {
        width: 20px;
        height: 20px;
    }
}

.my-1{
    margin-bottom: 10px;
}