.elementor-2548 .elementor-element.elementor-element-4d54ba1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-474d5cc *//* ===========================================================
   GOOGLE MAP - FIXED HEIGHT & RESPONSIVE
=========================================================== */

.office-map .map-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.office-map .map-card {
    width: 100%;
    min-height: 600px;
    height: 600px;
    border-radius: var(--sa-radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sa-shadow-soft);
}

.office-map .map-card iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 600px;
    border: 0;
    margin: 0;
    padding: 0;
}


/* ===========================================================
   TABLET
=========================================================== */

@media (max-width: 991px) {
    .office-map .map-grid {
        grid-template-columns: 1fr;
    }

    .office-map .map-card {
        height: 450px;
        min-height: 450px;
    }

    .office-map .map-card iframe {
        height: 450px !important;
        min-height: 450px;
    }
}


/* ===========================================================
   MOBILE
=========================================================== */

@media (max-width: 767px) {
    .office-map .map-card {
        height: 350px;
        min-height: 350px;
    }

    .office-map .map-card iframe {
        height: 350px !important;
        min-height: 350px;
    }
}


/* ===========================================================
   PREMIUM & COLORFUL CSS: MOBILE OPTIMIZED, JUSTIFIED & PREMIUM FONT
=========================================================== */

/* Import Premium Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Premium Color Palette */
    --sa-primary: #0a192f;          /* Deep Dark Navy */
    --sa-secondary: #112240;        /* Lighter Navy */
    --sa-grad-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); /* Tech Blue Gradient */
    --sa-grad-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%); /* Warm Gold Gradient */
    --sa-text-dark: #1e293b;
    --sa-text-light: #475569;
    --sa-bg-white: #ffffff;
    --sa-bg-light: #f8fafc;         /* Very Light Gray */
    --sa-bg-alt: #eef2f6;           /* Soft Blue-Gray for contrast */
    
    /* Premium Typography */
    --sa-font: 'Plus Jakarta Sans', sans-serif;
    
    /* Premium Shapes & Shadows */
    --sa-radius: 16px;
    --sa-radius-lg: 24px;
    --sa-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --sa-shadow-glow: 0 15px 35px rgba(79, 172, 254, 0.2);
    --sa-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===========================================================
   SCOPED LAYOUTS & BACKGROUND COLORS
=========================================================== */
.sa-cyber-hero, .about-spark, .why-spark, .mission-vision, 
.practice-areas, .core-values, .legal-approach, .why-choose, 
.legal-process, .office-locations, .service-areas, .spark-faq, 
.related-practice, .related-articles, .spark-final-cta, 
.litigation-comparison, .office-map, .service-coverage {
    padding: 100px 0;
    background-color: var(--sa-bg-white);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    font-family: var(--sa-font); /* Applied Premium Font globally to these sections */
}

/* Alternate Backgrounds */
.why-spark, .core-values, .office-locations, .related-articles, .service-coverage {
    background-color: var(--sa-bg-light);
}
.mission-vision, .litigation-comparison, .spark-faq {
    background-color: var(--sa-bg-alt);
}
.legal-process {
    background-color: var(--sa-primary);
    background-image: radial-gradient(circle at 85% 30%, rgba(79, 172, 254, 0.1), transparent 30%);
}

.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===========================================================
   TYPOGRAPHY & TEXT ALIGNMENT
=========================================================== */
.sa-container h1, .sa-container h2, .sa-container h3, .sa-container h4,
.sa-cyber-hero-grid h1, .sa-cyber-hero-grid h3 {
    color: var(--sa-primary);
    font-weight: 800;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    font-family: var(--sa-font);
}

.sa-container p, .sa-cyber-hero-grid p {
    color: var(--sa-text-light);
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify; 
    text-justify: inter-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: var(--sa-font);
}

/* ===========================================================
   SECTION HEADINGS
=========================================================== */
.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.section-heading span {
    display: inline-block;
    background: var(--sa-grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-heading h2 { font-size: 38px; margin-bottom: 20px; text-align: center; }

.legal-process .section-heading h2, .legal-process .timeline-item h3 { color: var(--sa-bg-white); }
.legal-process .section-heading p, .legal-process .timeline-item p { color: #cbd5e1; }

/* ===========================================================
   PREMIUM BUTTONS
=========================================================== */
.sa-btn-primary, .sa-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--sa-transition);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--sa-font);
}
.sa-btn-primary {
    background: var(--sa-grad-gold);
    color: #000 !important;
    border: none;
    box-shadow: 0 10px 20px rgba(253, 160, 133, 0.3);
}
.sa-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(253, 160, 133, 0.5);
}
.sa-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sa-bg-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.sa-btn-outline:hover {
    background: var(--sa-bg-white);
    color: var(--sa-primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* ===========================================================
   HERO SECTION
=========================================================== */
.sa-cyber-hero {
    background-color: var(--sa-primary);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(79, 172, 254, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(253, 160, 133, 0.15), transparent 25%);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}
.sa-cyber-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSI+PC9yZWN0Pgo8Y2lyY2xlIGN4PSIyIiBjeT0iMiIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSI+PC9jaXJjbGU+Cjwvc3ZnPg==');
    z-index: 0;
}
.sa-cyber-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sa-cyber-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    color: #00f2fe;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.sa-cyber-content h1 { color: var(--sa-bg-white); font-size: 52px; }
.sa-cyber-content p { color: #cbd5e1; font-weight: 400; }
.sa-hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.sa-features { display: flex; flex-wrap: wrap; gap: 15px; }
.sa-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--sa-bg-white);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.sa-features span::before { content: '✔'; color: #00f2fe; margin-right: 8px; font-weight: 800; }

/* Firm Card */
.firm-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: var(--sa-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.firm-card-badge {
    background: var(--sa-grad-blue);
    color: var(--sa-bg-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    top: -18px;
    left: 40px;
    box-shadow: 0 8px 15px rgba(79, 172, 254, 0.4);
}
.firm-card h3 { color: var(--sa-bg-white); font-size: 26px; margin-bottom: 25px; }
.firm-card ul { margin: 0; padding: 0; list-style: none; }
.firm-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}
.firm-card ul li:last-child { border-bottom: none; }
.firm-card ul li::before {
    content: '★';
    background: var(--sa-grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 12px;
    font-size: 16px;
}

/* ===========================================================
   GRIDS (Desktop View)
=========================================================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.office-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.map-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }

/* Dynamic Card Hover Effects */
.why-card, .sa-practice-card, .mission-box, .vision-box, .value-card, .approach-box, .sa-office-card {
    background: var(--sa-bg-white);
    padding: 40px;
    border-radius: var(--sa-radius);
    box-shadow: var(--sa-shadow-soft);
    transition: var(--sa-transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 1;
    word-wrap: break-word;
}
.why-card::before, .sa-practice-card::before, .value-card::before, .approach-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--sa-radius);
    background: var(--sa-grad-blue);
    z-index: -1;
    opacity: 0;
    transition: var(--sa-transition);
    margin: -2px; 
}
.why-card:hover, .sa-practice-card:hover, .value-card:hover, .approach-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--sa-shadow-glow);
}
.why-card:hover::before, .sa-practice-card:hover::before, .value-card:hover::before, .approach-box:hover::before { opacity: 1; }

.why-card h3, .sa-practice-card h3, .mission-box h3, .vision-box h3, .value-card h3, .approach-box h3, .sa-office-card h3 {
    font-size: 22px;
}

/* Icons */
.why-icon, .practice-icon, .office-icon {
    font-size: 32px;
    margin-bottom: 25px;
    background: var(--sa-grad-blue);
    color: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
    display: inline-block;
}

.sa-office-card ul { margin-top: 20px; padding: 0; list-style: none; }
.sa-office-card ul li {
    padding: 10px 0;
    color: var(--sa-text-light);
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #e2e8f0;
    font-weight: 500;
}
.sa-office-card ul li:last-child { border-bottom: none; }
.sa-office-card ul li::before { content: '✓'; color: #00f2fe; font-weight: 800; margin-right: 12px; font-size: 18px; }

/* Articles */
.article-card {
    display: block;
    background: var(--sa-bg-white);
    padding: 30px;
    border-radius: var(--sa-radius);
    box-shadow: var(--sa-shadow-soft);
    border: 1px solid #e2e8f0;
    text-decoration: none;
}
.article-card:hover { border-color: #00f2fe; box-shadow: var(--sa-shadow-glow); transform: translateY(-5px); }
.article-card h3 { font-size: 20px; transition: var(--sa-transition); }
.article-card:hover h3 { background: var(--sa-grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ===========================================================
   COLORFUL TIMELINE (Legal Process)
=========================================================== */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--sa-grad-blue);
    border-radius: 10px;
    opacity: 0.2;
}
.timeline-item { position: relative; padding-left: 80px; margin-bottom: 50px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--sa-grad-blue);
    color: var(--sa-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.4);
    border: 4px solid var(--sa-primary);
}
.timeline-item:hover .timeline-number { transform: scale(1.1); background: var(--sa-grad-gold); box-shadow: 0 10px 20px rgba(253, 160, 133, 0.4); }

/* ===========================================================
   FAQ SECTION
=========================================================== */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.spark-faq details {
    background: var(--sa-bg-white);
    margin-bottom: 15px;
    border-radius: var(--sa-radius);
    box-shadow: var(--sa-shadow-soft);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.spark-faq summary {
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sa-primary);
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--sa-transition);
}
.spark-faq details:hover summary { color: #4facfe; }
.spark-faq summary::-webkit-details-marker { display: none; }
.spark-faq summary::after {
    content: '+';
    font-size: 24px;
    color: #4facfe;
    background: rgba(79, 172, 254, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.4s ease;
}
.spark-faq details[open] summary::after { content: '−'; transform: rotate(180deg); background: var(--sa-grad-blue); color: white; }
.spark-faq details p { padding: 0 25px 25px; margin: 0; color: var(--sa-text-light); }

/* ===========================================================
   CTA SECTION
=========================================================== */
.spark-final-cta .sa-cta-box {
    background: var(--sa-primary);
    background-image: radial-gradient(circle at 10% 90%, rgba(79, 172, 254, 0.2), transparent 40%),
                      radial-gradient(circle at 90% 10%, rgba(253, 160, 133, 0.2), transparent 40%);
    padding: 70px 40px;
    border-radius: var(--sa-radius-lg);
    text-align: center;
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.4);
    position: relative;
    overflow: hidden;
}
.spark-final-cta .sa-cta-box h2, .spark-final-cta .sa-cta-box p { color: var(--sa-bg-white); position: relative; z-index: 2; }
.spark-final-cta .sa-cta-box span {
    color: #00f2fe;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Practice Links */
.practice-links, .service-area-list { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.practice-links a, .service-area-list a {
    background: var(--sa-bg-white);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--sa-text-dark);
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: var(--sa-shadow-soft);
    font-family: var(--sa-font);
}
.practice-links a:hover, .service-area-list a:hover {
    background: var(--sa-grad-blue);
    color: var(--sa-bg-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

/* ===========================================================
   TABLE & COVERAGE
=========================================================== */
.comparison-table table { width: 100%; border-collapse: collapse; background: var(--sa-bg-white); box-shadow: var(--sa-shadow-soft); border-radius: var(--sa-radius); overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 20px; text-align: left; border-bottom: 1px solid #f1f5f9; font-family: var(--sa-font); }
.comparison-table th { background: var(--sa-grad-blue); color: var(--sa-bg-white); font-weight: 700; }
.comparison-table tr:hover td { background: var(--sa-bg-light); }

.coverage-card { display: flex; align-items: center; gap: 12px; padding: 15px 20px; background: var(--sa-bg-white); border-radius: 12px; box-shadow: var(--sa-shadow-soft); transition: var(--sa-transition); }
.coverage-card:hover { background: var(--sa-grad-blue); }
.coverage-card h3 { margin: 0; font-size: 16px; transition: var(--sa-transition); }
.coverage-card:hover h3 { color: var(--sa-bg-white); }

/* ===========================================================
   🟢 CRITICAL RESPONSIVE FIXES FOR MOBILE & FONT SCALING 🟢
=========================================================== */
@media (max-width: 991px) {
    .sa-cyber-hero-grid, .map-grid { grid-template-columns: 1fr; }
    .firm-card-badge { left: 50%; transform: translateX(-50%); }
    .section-heading h2 { font-size: 30px; }
}

@media (max-width: 767px) {
    /* Grid Mobile Overrides */
    .mission-grid, .why-grid, .practice-grid, .values-grid, 
    .approach-grid, .office-grid, .article-grid, .coverage-grid {
        grid-template-columns: 1fr !important; 
    }
    
    .sa-cyber-hero, .about-spark, .why-spark, .mission-vision, 
    .practice-areas, .core-values, .legal-approach, .why-choose, 
    .legal-process, .office-locations, .service-areas, .spark-faq, 
    .related-practice, .related-articles, .spark-final-cta, 
    .litigation-comparison, .office-map, .service-coverage {
        padding: 50px 0;
    }
    
    .sa-cyber-hero { padding-top: 100px; padding-bottom: 60px; }
    
    /* 🟢 Optimized Mobile Headings (Normal, comfortable sizes) 🟢 */
    .sa-cyber-content h1 { font-size: 28px !important; line-height: 1.4; text-align: center; }
    .section-heading h2 { font-size: 24px !important; line-height: 1.4; }
    
    /* Optimized Card Headings */
    .firm-card h3, .why-card h3, .sa-practice-card h3, .mission-box h3, 
    .vision-box h3, .value-card h3, .approach-box h3, .sa-office-card h3, 
    .article-card h3, .timeline-item h3 {
        font-size: 20px !important;
        margin-bottom: 15px;
    }
    
    /* Call to Action Box Heading */
    .spark-final-cta .sa-cta-box h2 { font-size: 22px !important; line-height: 1.4; }
    
    /* Optimized Mobile Paragraph */
    .sa-container p, .sa-cyber-hero-grid p {
        font-size: 15px !important;
        line-height: 1.7;
    }

    /* Layout & Spacing */
    .sa-hero-buttons, .sa-features { justify-content: center; }
    .sa-btn-primary, .sa-btn-outline { width: 100%; display: flex; text-align: center; }
    
    /* Reduced padding inside cards */
    .why-card, .sa-practice-card, .mission-box, .vision-box, 
    .value-card, .approach-box, .sa-office-card, .article-card, .firm-card {
        padding: 25px 20px;
    }
    
    /* Timeline Fixes */
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 60px; margin-bottom: 35px; }
    .timeline-number { width: 45px; height: 45px; font-size: 16px; border-width: 3px; }
    
    .spark-final-cta .sa-cta-box { padding: 40px 20px; }
}/* End custom CSS */