/**
 * City Services Frontend Styles
 * Modern, Full-Width, Professional Design
 * Brand Colors: #981d26, Black, White
 */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --cs-primary: #981d26;
    --cs-primary-dark: #7a1720;
    --cs-primary-light: #b82832;
    --cs-black: #1a1a1a;
    --cs-dark: #2d2d2d;
    --cs-gray: #666666;
    --cs-gray-light: #f5f7fa;
    --cs-white: #ffffff;
    --cs-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --cs-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --cs-radius: 12px;
    --cs-radius-lg: 20px;
    --cs-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cs-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Base */
.city-services-page,
.city-services-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.city-services-page {
    font-family: var(--cs-font);
    line-height: 1.7;
    color: var(--cs-dark);
    overflow-x: hidden;
    width: 100%;
}

.city-services-page img {
    max-width: 100%;
    height: auto;
}

/* Container */
.cs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.cs-text-primary {
    color: var(--cs-primary);
}

.cs-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--cs-black);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cs-section-title.cs-title-light {
    color: var(--cs-white);
}

.cs-section-title.cs-title-left {
    text-align: left;
}

.cs-section-subtitle {
    font-size: 1.125rem;
    color: var(--cs-gray);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cs-section-subtitle.cs-subtitle-light {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   HERO SECTION
   ============================================ */
.cs-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-dark) 50%, #5a1015 100%);
    padding: 100px 20px 120px;
    text-align: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.cs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cs-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--cs-white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cs-city-highlight {
    display: inline-block;
    position: relative;
}

.cs-city-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.cs-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cs-hero-subtitle strong {
    color: var(--cs-white);
}

/* Hero Buttons */
.cs-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.cs-hero-buttons .wp-block-button__link,
.cs-btn-primary .wp-block-button__link {
    background: var(--cs-white) !important;
    color: var(--cs-primary) !important;
    padding: 16px 36px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: none !important;
    transition: var(--cs-transition) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.cs-hero-buttons .wp-block-button__link:hover,
.cs-btn-primary .wp-block-button__link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.cs-btn-secondary .wp-block-button__link {
    background: transparent !important;
    color: var(--cs-white) !important;
    padding: 16px 36px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transition: var(--cs-transition) !important;
}

.cs-btn-secondary .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--cs-white) !important;
    transform: translateY(-3px) !important;
}

/* Hero Badges */
.cs-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--cs-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.cs-about-section {
    padding: 80px 20px;
    background: var(--cs-white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cs-about-text {
    font-size: 1.125rem;
    color: var(--cs-gray);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 25px;
    line-height: 1.9;
}

.cs-about-highlight {
    font-size: 1.25rem;
    color: var(--cs-primary);
    text-align: center;
    font-weight: 600;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(152, 29, 38, 0.08) 0%, rgba(152, 29, 38, 0.03) 100%);
    border-radius: var(--cs-radius);
    max-width: 700px;
    margin: 0 auto;
    border-left: 4px solid var(--cs-primary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.cs-services-section {
    padding: 80px 20px;
    background: var(--cs-gray-light);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.cs-service-card {
    background: var(--cs-white);
    padding: 35px 25px;
    border-radius: var(--cs-radius);
    text-align: center;
    transition: var(--cs-transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cs-primary), var(--cs-primary-light));
    transform: scaleX(0);
    transition: var(--cs-transition);
}

.cs-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cs-shadow-hover);
}

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

.cs-service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.cs-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cs-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.cs-service-card p {
    font-size: 0.95rem;
    color: var(--cs-gray);
    line-height: 1.6;
    margin: 0;
}

/* Service CTA Card */
.cs-service-cta {
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-dark) 100%);
    color: var(--cs-white);
}

.cs-service-cta::before {
    display: none;
}

.cs-service-cta h3 {
    color: var(--cs-white);
}

.cs-service-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.cs-card-btn {
    display: inline-block;
    background: var(--cs-white);
    color: var(--cs-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--cs-transition);
}

.cs-card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.cs-why-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-dark) 50%, #5a1015 100%);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cs-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.cs-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: var(--cs-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--cs-transition);
}

.cs-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.cs-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cs-white);
    line-height: 1;
    margin-bottom: 8px;
}

.cs-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cs-white);
    margin-bottom: 12px;
}

.cs-stat-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.cs-why-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cs-why-footer strong {
    color: var(--cs-white);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.cs-features-section {
    padding: 100px 20px;
    background: var(--cs-white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.cs-features-content p {
    font-size: 1.1rem;
    color: var(--cs-gray);
    margin-bottom: 25px;
}

.cs-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.05rem;
    color: var(--cs-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.cs-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-primary-light));
    color: var(--cs-white);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Features Right Side Content */
.cs-features-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-features-box {
    background: var(--cs-gray-light);
    padding: 25px;
    border-radius: var(--cs-radius);
    border-left: 4px solid var(--cs-primary);
    transition: var(--cs-transition);
}

.cs-features-box:hover {
    transform: translateX(5px);
    box-shadow: var(--cs-shadow);
}

.cs-features-box-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cs-features-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cs-black);
    margin-bottom: 8px;
}

.cs-features-box p {
    font-size: 0.95rem;
    color: var(--cs-gray);
    line-height: 1.6;
    margin: 0;
}

/* Legacy Mockup - kept for backwards compatibility */
.cs-mockup {
    width: 100%;
    max-width: 400px;
    background: var(--cs-white);
    border-radius: var(--cs-radius-lg);
    box-shadow: var(--cs-shadow-hover);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cs-mockup-header {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    padding: 15px 20px;
    display: flex;
    gap: 8px;
}

.cs-mockup-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.cs-mockup-header span:nth-child(1) { background: #ff5f57; }
.cs-mockup-header span:nth-child(2) { background: #ffbd2e; }
.cs-mockup-header span:nth-child(3) { background: #28ca42; }

.cs-mockup-content {
    padding: 30px;
}

.cs-mockup-text {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    margin-bottom: 15px;
}

.cs-mockup-text.short {
    width: 60%;
    margin-bottom: 30px;
}

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

.cs-mockup-boxes div {
    height: 80px;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-primary-light));
    border-radius: 8px;
    opacity: 0.2;
}

.cs-mockup-boxes div:nth-child(1) { opacity: 0.3; }
.cs-mockup-boxes div:nth-child(2) { opacity: 0.5; }
.cs-mockup-boxes div:nth-child(3) { opacity: 0.7; }

/* ============================================
   LINKS SECTION
   ============================================ */
.cs-links-section {
    padding: 80px 20px;
    background: var(--cs-gray-light);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cs-links-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--cs-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cs-quick-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cs-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cs-white);
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--cs-dark);
    font-weight: 600;
    transition: var(--cs-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cs-quick-link:hover {
    background: var(--cs-primary);
    color: var(--cs-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(152, 29, 38, 0.3);
}

.cs-link-icon {
    font-size: 1.3rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cs-cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-dark) 50%, #5a1015 100%);
    text-align: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.cs-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cs-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--cs-white);
    margin-bottom: 20px;
}

.cs-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cs-cta-text strong {
    color: var(--cs-white);
}

.cs-cta-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--cs-transition);
}

.cs-cta-btn-primary {
    background: var(--cs-white);
    color: var(--cs-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cs-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cs-cta-btn-outline {
    background: transparent;
    color: var(--cs-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.cs-cta-btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cs-cta-btn-phone svg {
    stroke: var(--cs-primary);
}

.cs-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cs-white);
    transform: translateY(-3px);
}

.cs-cta-email {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cs-cta-email a {
    color: var(--cs-white);
    text-decoration: none;
    transition: var(--cs-transition);
}

.cs-cta-email a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .cs-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-features-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cs-features-content {
        order: 1;
    }
    
    .cs-features-image {
        order: 2;
    }
    
    .cs-section-title.cs-title-left {
        text-align: center;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .cs-hero-section {
        padding: 50px 15px 60px;
    }
    
    .cs-hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cs-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    /* Mobile Hero Buttons - Inline Layout */
    .cs-hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .cs-hero-buttons .wp-block-button {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 180px;
    }
    
    .cs-hero-buttons .wp-block-button__link,
    .cs-btn-primary .wp-block-button__link,
    .cs-btn-secondary .wp-block-button__link {
        width: 100%;
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* Mobile Hero Badges - Horizontal Scroll */
    .cs-hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .cs-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .cs-about-section,
    .cs-services-section,
    .cs-why-section,
    .cs-features-section,
    .cs-links-section,
    .cs-cta-section {
        padding: 50px 15px;
    }
    
    .cs-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cs-stat-card {
        padding: 20px 15px;
    }
    
    .cs-stat-number {
        font-size: 2rem;
    }
    
    .cs-stat-label {
        font-size: 0.9rem;
    }
    
    .cs-stat-card p {
        font-size: 0.8rem;
        display: none;
    }
    
    .cs-quick-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cs-quick-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Mobile CTA Buttons - Inline */
    .cs-cta-contact {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .cs-cta-btn {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 180px;
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .cs-features-box {
        padding: 20px;
    }
    
    .cs-features-box-icon {
        font-size: 1.75rem;
    }
    
    .cs-features-box h3 {
        font-size: 1rem;
    }
    
    .cs-mockup {
        max-width: 280px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .cs-container {
        padding: 0 12px;
    }
    
    .cs-hero-section {
        padding: 40px 12px 50px;
    }
    
    .cs-hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .cs-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    /* Small Mobile - Stack buttons if needed */
    .cs-hero-buttons {
        gap: 8px;
    }
    
    .cs-hero-buttons .wp-block-button {
        min-width: 130px;
        max-width: 160px;
    }
    
    .cs-hero-buttons .wp-block-button__link,
    .cs-btn-primary .wp-block-button__link,
    .cs-btn-secondary .wp-block-button__link {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .cs-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .cs-section-title {
        font-size: 1.3rem;
    }
    
    .cs-service-card {
        padding: 20px 15px;
    }
    
    .cs-service-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .cs-service-card h3 {
        font-size: 1rem;
    }
    
    .cs-stat-card {
        padding: 15px 12px;
    }
    
    .cs-stat-number {
        font-size: 1.75rem;
    }
    
    .cs-stat-label {
        font-size: 0.8rem;
    }
    
    .cs-features-list li {
        font-size: 0.9rem;
        padding: 12px 0;
        gap: 10px;
    }
    
    .cs-check {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .cs-about-highlight {
        padding: 15px;
        font-size: 1rem;
    }
    
    .cs-cta-btn {
        min-width: 120px;
        max-width: 160px;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .cs-cta-title {
        font-size: 1.4rem;
    }
    
    .cs-cta-text {
        font-size: 1rem;
    }
    
    .cs-features-box {
        padding: 18px;
    }
    
    .cs-features-box-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .cs-features-box h3 {
        font-size: 0.95rem;
    }
    
    .cs-features-box p {
        font-size: 0.85rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cs-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.cs-service-card,
.cs-stat-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.cs-service-card:nth-child(1) { animation-delay: 0.1s; }
.cs-service-card:nth-child(2) { animation-delay: 0.15s; }
.cs-service-card:nth-child(3) { animation-delay: 0.2s; }
.cs-service-card:nth-child(4) { animation-delay: 0.25s; }
.cs-service-card:nth-child(5) { animation-delay: 0.3s; }
.cs-service-card:nth-child(6) { animation-delay: 0.35s; }
.cs-service-card:nth-child(7) { animation-delay: 0.4s; }
.cs-service-card:nth-child(8) { animation-delay: 0.45s; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .cs-hero-section,
    .cs-why-section,
    .cs-cta-section {
        background: var(--cs-primary) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .cs-cta-btn,
    .cs-hero-buttons {
        display: none;
    }
}
