/* 
SERIOUSLY DIGITAL - INDIVIDUAL SERVICE PAGES: CONSOLIDATED STYLESHEET
Space Grotesk | No CSS Variables

Used by: consultancy.php, google-ads-management-services.php,
         traditional-organic-search.php, website-design.php

Merged sections (in order):
1. HERO            (individual-service-hero.css)
2. PICTURE         (individual-service-picture.css)
3. WHAT YOU GET    (individual-service-what-you-get.css)
4. DIFFERENT       (individual-service-different.css)
5. TABLES          (individual-service-tables.css)
6. AREAS           (individual-service-areas.css)
7. REVIEWS         (individual-service-reviews.css)
8. CTA             (individual-service-cta.css)
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');


/* ============================================================
   SECTION SOURCE: individual-service-hero.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE HERO SECTION
Space Grotesk | No CSS Variables
*/


/* HERO SECTION - BASE STYLES */
.seriously-service-hero-bg-1,
.seriously-service-hero-bg-2,
.seriously-service-hero-bg-3,
.seriously-service-hero-bg-4 {
    position: relative;
    min-height: 280px;
    margin-top: 116px;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background gradient */
.seriously-service-hero-bg-1::before,
.seriously-service-hero-bg-2::before,
.seriously-service-hero-bg-3::before,
.seriously-service-hero-bg-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #3d5558 0%, #2d3a3d 30%, #2a2d30 60%, #333638 100%);
    z-index: 1;
}

/* Dot pattern overlay */
.seriously-service-hero-bg-1::after,
.seriously-service-hero-bg-2::after,
.seriously-service-hero-bg-3::after,
.seriously-service-hero-bg-4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    pointer-events: none;
}

/* Overlay for glows */
.seriously-service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

/* Decorative glows */
.seriously-service-hero-bg-1 .seriously-service-hero-overlay::before,
.seriously-service-hero-bg-2 .seriously-service-hero-overlay::before,
.seriously-service-hero-bg-3 .seriously-service-hero-overlay::before,
.seriously-service-hero-bg-4 .seriously-service-hero-overlay::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 172, 179, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    filter: blur(80px);
}

.seriously-service-hero-bg-1 .seriously-service-hero-overlay::after,
.seriously-service-hero-bg-2 .seriously-service-hero-overlay::after,
.seriously-service-hero-bg-3 .seriously-service-hero-overlay::after,
.seriously-service-hero-bg-4 .seriously-service-hero-overlay::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 72, 84, 0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -50px;
    filter: blur(80px);
}

/* Hero Content */
.seriously-service-hero-bg-1 .seriously-home-container,
.seriously-service-hero-bg-2 .seriously-home-container,
.seriously-service-hero-bg-3 .seriously-home-container,
.seriously-service-hero-bg-4 .seriously-home-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.seriously-service-hero-bg-1 h1,
.seriously-service-hero-bg-2 h1,
.seriously-service-hero-bg-3 h1,
.seriously-service-hero-bg-4 h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.seriously-service-hero-bg-1 h1::after,
.seriously-service-hero-bg-2 h1::after,
.seriously-service-hero-bg-3 h1::after,
.seriously-service-hero-bg-4 h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4facb3 0%, #6bbcc2 100%);
    border-radius: 2px;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-hero-bg-1,
    .seriously-service-hero-bg-2,
    .seriously-service-hero-bg-3,
    .seriously-service-hero-bg-4 {
        min-height: 240px;
        margin-top: 106px;
        padding: 45px 0;
    }
    
    .seriously-service-hero-bg-1 .seriously-home-container,
    .seriously-service-hero-bg-2 .seriously-home-container,
    .seriously-service-hero-bg-3 .seriously-home-container,
    .seriously-service-hero-bg-4 .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-hero-bg-1 h1,
    .seriously-service-hero-bg-2 h1,
    .seriously-service-hero-bg-3 h1,
    .seriously-service-hero-bg-4 h1 {
        font-size: 2.2rem;
    }
    
    .seriously-service-hero-bg-1 h1::after,
    .seriously-service-hero-bg-2 h1::after,
    .seriously-service-hero-bg-3 h1::after,
    .seriously-service-hero-bg-4 h1::after {
        width: 70px;
    }
    
    .seriously-service-hero-bg-1 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-2 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-3 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-4 .seriously-service-hero-overlay::before {
        width: 300px;
        height: 300px;
    }
    
    .seriously-service-hero-bg-1 .seriously-service-hero-overlay::after,
    .seriously-service-hero-bg-2 .seriously-service-hero-overlay::after,
    .seriously-service-hero-bg-3 .seriously-service-hero-overlay::after,
    .seriously-service-hero-bg-4 .seriously-service-hero-overlay::after {
        width: 220px;
        height: 220px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-hero-bg-1,
    .seriously-service-hero-bg-2,
    .seriously-service-hero-bg-3,
    .seriously-service-hero-bg-4 {
        min-height: 200px;
        margin-top: 64px;
        padding: 35px 0;
    }
    
    .seriously-service-hero-bg-1 .seriously-home-container,
    .seriously-service-hero-bg-2 .seriously-home-container,
    .seriously-service-hero-bg-3 .seriously-home-container,
    .seriously-service-hero-bg-4 .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-hero-bg-1 h1,
    .seriously-service-hero-bg-2 h1,
    .seriously-service-hero-bg-3 h1,
    .seriously-service-hero-bg-4 h1 {
        font-size: 1.85rem;
        padding-bottom: 16px;
    }
    
    .seriously-service-hero-bg-1 h1::after,
    .seriously-service-hero-bg-2 h1::after,
    .seriously-service-hero-bg-3 h1::after,
    .seriously-service-hero-bg-4 h1::after {
        width: 60px;
        height: 2px;
    }
    
    .seriously-service-hero-bg-1 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-2 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-3 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-4 .seriously-service-hero-overlay::before,
    .seriously-service-hero-bg-1 .seriously-service-hero-overlay::after,
    .seriously-service-hero-bg-2 .seriously-service-hero-overlay::after,
    .seriously-service-hero-bg-3 .seriously-service-hero-overlay::after,
    .seriously-service-hero-bg-4 .seriously-service-hero-overlay::after {
        display: none;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-hero-bg-1,
    .seriously-service-hero-bg-2,
    .seriously-service-hero-bg-3,
    .seriously-service-hero-bg-4 {
        min-height: 180px;
        margin-top: 60px;
        padding: 30px 0;
    }
    
    .seriously-service-hero-bg-1 .seriously-home-container,
    .seriously-service-hero-bg-2 .seriously-home-container,
    .seriously-service-hero-bg-3 .seriously-home-container,
    .seriously-service-hero-bg-4 .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-hero-bg-1 h1,
    .seriously-service-hero-bg-2 h1,
    .seriously-service-hero-bg-3 h1,
    .seriously-service-hero-bg-4 h1 {
        font-size: 1.6rem;
    }
    
    .seriously-service-hero-bg-1 h1::after,
    .seriously-service-hero-bg-2 h1::after,
    .seriously-service-hero-bg-3 h1::after,
    .seriously-service-hero-bg-4 h1::after {
        width: 50px;
    }
}

/* ============================================================
   REVIEW PILL - INDIVIDUAL SERVICE HEROES (below H1)
   Populated by /js/review-pills.js
   Add <div data-review-pill="hero"></div> in markup to render
   Applies to all 4 service hero variants (bg-1, bg-2, bg-3, bg-4)
   ============================================================ */

.seriously-service-hero-bg-1 .seriously-review-pill,
.seriously-service-hero-bg-2 .seriously-review-pill,
.seriously-service-hero-bg-3 .seriously-review-pill,
.seriously-service-hero-bg-4 .seriously-review-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.seriously-service-hero-bg-1 .seriously-review-pill-logo,
.seriously-service-hero-bg-2 .seriously-review-pill-logo,
.seriously-service-hero-bg-3 .seriously-review-pill-logo,
.seriously-service-hero-bg-4 .seriously-review-pill-logo {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.seriously-service-hero-bg-1 .seriously-review-pill-stars,
.seriously-service-hero-bg-2 .seriously-review-pill-stars,
.seriously-service-hero-bg-3 .seriously-review-pill-stars,
.seriously-service-hero-bg-4 .seriously-review-pill-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.seriously-service-hero-bg-1 .seriously-review-pill-stars i,
.seriously-service-hero-bg-2 .seriously-review-pill-stars i,
.seriously-service-hero-bg-3 .seriously-review-pill-stars i,
.seriously-service-hero-bg-4 .seriously-review-pill-stars i {
    color: #ffc107;
    font-size: 0.75rem;
}

.seriously-service-hero-bg-1 .seriously-review-pill-text,
.seriously-service-hero-bg-2 .seriously-review-pill-text,
.seriously-service-hero-bg-3 .seriously-review-pill-text,
.seriously-service-hero-bg-4 .seriously-review-pill-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 991px) {
    .seriously-service-hero-bg-1 .seriously-review-pill,
    .seriously-service-hero-bg-2 .seriously-review-pill,
    .seriously-service-hero-bg-3 .seriously-review-pill,
    .seriously-service-hero-bg-4 .seriously-review-pill {
        margin-top: 20px;
        padding: 7px 14px;
        gap: 9px;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-logo,
    .seriously-service-hero-bg-2 .seriously-review-pill-logo,
    .seriously-service-hero-bg-3 .seriously-review-pill-logo,
    .seriously-service-hero-bg-4 .seriously-review-pill-logo {
        width: 16px;
        height: 16px;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-stars i,
    .seriously-service-hero-bg-2 .seriously-review-pill-stars i,
    .seriously-service-hero-bg-3 .seriously-review-pill-stars i,
    .seriously-service-hero-bg-4 .seriously-review-pill-stars i {
        font-size: 0.7rem;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-text,
    .seriously-service-hero-bg-2 .seriously-review-pill-text,
    .seriously-service-hero-bg-3 .seriously-review-pill-text,
    .seriously-service-hero-bg-4 .seriously-review-pill-text {
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .seriously-service-hero-bg-1 .seriously-review-pill,
    .seriously-service-hero-bg-2 .seriously-review-pill,
    .seriously-service-hero-bg-3 .seriously-review-pill,
    .seriously-service-hero-bg-4 .seriously-review-pill {
        margin-top: 18px;
        padding: 6px 12px;
        gap: 8px;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-stars,
    .seriously-service-hero-bg-2 .seriously-review-pill-stars,
    .seriously-service-hero-bg-3 .seriously-review-pill-stars,
    .seriously-service-hero-bg-4 .seriously-review-pill-stars {
        gap: 1px;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-stars i,
    .seriously-service-hero-bg-2 .seriously-review-pill-stars i,
    .seriously-service-hero-bg-3 .seriously-review-pill-stars i,
    .seriously-service-hero-bg-4 .seriously-review-pill-stars i {
        font-size: 0.65rem;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-text,
    .seriously-service-hero-bg-2 .seriously-review-pill-text,
    .seriously-service-hero-bg-3 .seriously-review-pill-text,
    .seriously-service-hero-bg-4 .seriously-review-pill-text {
        font-size: 0.75rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .seriously-service-hero-bg-1 .seriously-review-pill,
    .seriously-service-hero-bg-2 .seriously-review-pill,
    .seriously-service-hero-bg-3 .seriously-review-pill,
    .seriously-service-hero-bg-4 .seriously-review-pill {
        margin-top: 16px;
        padding: 5px 11px;
        gap: 7px;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-logo,
    .seriously-service-hero-bg-2 .seriously-review-pill-logo,
    .seriously-service-hero-bg-3 .seriously-review-pill-logo,
    .seriously-service-hero-bg-4 .seriously-review-pill-logo {
        width: 14px;
        height: 14px;
    }
    
    .seriously-service-hero-bg-1 .seriously-review-pill-text,
    .seriously-service-hero-bg-2 .seriously-review-pill-text,
    .seriously-service-hero-bg-3 .seriously-review-pill-text,
    .seriously-service-hero-bg-4 .seriously-review-pill-text {
        font-size: 0.72rem;
        letter-spacing: 0;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-picture.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - PICTURE SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.individual-service-picture {
    padding: 80px 0;
    background: #f9f9f9;
}

.individual-service-picture .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* WRAPPER */
.individual-service-picture-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CONTENT */
.individual-service-picture-content {
    flex: 1;
}

.individual-service-picture-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.individual-service-picture-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #de4854 0%, #c43844 100%);
    border-radius: 2px;
}

.individual-service-picture-intro {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* BULLET LIST */
.individual-service-picture-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.individual-service-picture-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.individual-service-picture-list li:hover {
    transform: translateX(4px);
}

.individual-service-picture-list li:last-child {
    margin-bottom: 0;
}

.individual-service-picture-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(222, 72, 84, 0.1) 0%, rgba(222, 72, 84, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #de4854;
    font-size: 0.65rem;
    line-height: 24px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.individual-service-picture-list li:hover::before {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(222, 72, 84, 0.15) 0%, rgba(222, 72, 84, 0.08) 100%);
}

/* BUTTON */
.individual-service-picture-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #de4854 0%, #c43844 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(222, 72, 84, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.individual-service-picture-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(222, 72, 84, 0.4);
}

/* IMAGE */
.individual-service-picture-image {
    flex-shrink: 0;
    width: 400px;
    position: relative;
}

.individual-service-picture-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.individual-service-picture-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* TABLET */
@media (max-width: 991px) {
    .individual-service-picture {
        padding: 64px 0;
    }
    
    .individual-service-picture .seriously-home-container {
        padding: 0 32px;
    }
    
    .individual-service-picture-wrapper {
        gap: 45px;
    }
    
    .individual-service-picture-heading {
        font-size: 2rem;
        padding-bottom: 18px;
    }
    
    .individual-service-picture-heading::after {
        width: 70px;
    }
    
    .individual-service-picture-intro {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .individual-service-picture-list li {
        padding-left: 32px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }
    
    .individual-service-picture-list li::before {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 0.6rem;
    }
    
    .individual-service-picture-button {
        font-size: 0.95rem;
    }
    
    .individual-service-picture-image {
        width: 340px;
    }
    
    .individual-service-picture-image img {
        border-radius: 14px;
    }
    
    .individual-service-picture-image:hover img {
        transform: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }
    
    .individual-service-picture-list li:hover {
        transform: none;
    }
    
    .individual-service-picture-list li:hover::before {
        transform: none;
        background: linear-gradient(135deg, rgba(222, 72, 84, 0.1) 0%, rgba(222, 72, 84, 0.05) 100%);
    }
    
    .individual-service-picture-button:hover {
        transform: none;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .individual-service-picture {
        padding: 56px 0;
    }
    
    .individual-service-picture .seriously-home-container {
        padding: 0 16px;
    }
    
    .individual-service-picture-wrapper {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }
    
    .individual-service-picture-content {
        order: 1;
        text-align: center;
    }
    
    .individual-service-picture-image {
        order: 2;
        width: 300px;
    }
    
    .individual-service-picture-heading {
        font-size: 1.75rem;
        padding-bottom: 16px;
    }
    
    .individual-service-picture-heading::after {
        width: 60px;
        height: 2px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .individual-service-picture-intro {
        font-size: 1rem;
    }
    
    .individual-service-picture-list {
        margin-bottom: 24px;
        display: inline-block;
        text-align: left;
    }
    
    .individual-service-picture-list li {
        padding-left: 30px;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
    
    .individual-service-picture-list li::before {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.55rem;
    }
    
    .individual-service-picture-image img {
        border-radius: 12px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .individual-service-picture {
        padding: 48px 0;
    }
    
    .individual-service-picture .seriously-home-container {
        padding: 0 12px;
    }
    
    .individual-service-picture-wrapper {
        gap: 30px;
    }
    
    .individual-service-picture-heading {
        font-size: 1.5rem;
    }
    
    .individual-service-picture-heading::after {
        width: 50px;
    }
    
    .individual-service-picture-intro {
        font-size: 0.95rem;
    }
    
    .individual-service-picture-list li {
        font-size: 0.9rem;
    }
    
    .individual-service-picture-image {
        width: 260px;
    }
    
    .individual-service-picture-button {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-what-you-get.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - WHAT YOU GET SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.seriously-service-what-you-get {
    padding: 80px 0;
    background: #ffffff;
}

.seriously-service-what-you-get .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* SECTION HEADER */
.seriously-service-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.seriously-service-section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.seriously-service-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #de4854 0%, #c43844 100%);
    border-radius: 2px;
}

.seriously-service-section-header p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* BENEFITS GRID */
.seriously-service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* BENEFIT ITEM */
.seriously-service-benefit-item {
    background: #f9f9f9;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seriously-service-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facb3 0%, #6bbcc2 100%);
}

.seriously-service-benefit-item:nth-child(2)::before,
.seriously-service-benefit-item:nth-child(5)::before {
    background: linear-gradient(90deg, #de4854 0%, #c43844 100%);
}

.seriously-service-benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(79, 172, 179, 0.12);
}

.seriously-service-benefit-item:nth-child(2):hover,
.seriously-service-benefit-item:nth-child(5):hover {
    box-shadow: 0 16px 40px rgba(222, 72, 84, 0.12);
}

/* Icon */
.seriously-service-benefit-item i {
    font-size: 2.2rem;
    color: #4facb3;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.seriously-service-benefit-item:nth-child(2) i,
.seriously-service-benefit-item:nth-child(5) i {
    color: #de4854;
}

.seriously-service-benefit-item:hover i {
    transform: scale(1.1);
    text-shadow: 0 4px 20px rgba(79, 172, 179, 0.4);
}

.seriously-service-benefit-item:nth-child(2):hover i,
.seriously-service-benefit-item:nth-child(5):hover i {
    text-shadow: 0 4px 20px rgba(222, 72, 84, 0.4);
}

/* Content */
.seriously-service-benefit-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.seriously-service-benefit-item p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.seriously-service-benefit-item p a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.seriously-service-benefit-item p a:hover {
    text-decoration-color: currentColor;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-what-you-get {
        padding: 64px 0;
    }
    
    .seriously-service-what-you-get .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-section-header {
        margin-bottom: 40px;
    }
    
    .seriously-service-section-header h2 {
        font-size: 2rem;
        padding-bottom: 18px;
    }
    
    .seriously-service-section-header h2::after {
        width: 70px;
    }
    
    .seriously-service-section-header p {
        font-size: 1.1rem;
    }
    
    .seriously-service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 700px;
    }
    
    .seriously-service-benefit-item {
        padding: 32px 24px;
        border-radius: 14px;
    }
    
    .seriously-service-benefit-item i {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .seriously-service-benefit-item h3 {
        font-size: 1.15rem;
    }
    
    .seriously-service-benefit-item p {
        font-size: 0.95rem;
    }
    
    .seriously-service-benefit-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .seriously-service-benefit-item:hover i {
        transform: none;
        text-shadow: none;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-what-you-get {
        padding: 56px 0;
    }
    
    .seriously-service-what-you-get .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-section-header {
        margin-bottom: 35px;
    }
    
    .seriously-service-section-header h2 {
        font-size: 1.75rem;
        padding-bottom: 16px;
    }
    
    .seriously-service-section-header h2::after {
        width: 60px;
        height: 2px;
    }
    
    .seriously-service-section-header p {
        font-size: 1.05rem;
    }
    
    .seriously-service-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 450px;
    }
    
    .seriously-service-benefit-item {
        padding: 28px 22px;
        border-radius: 12px;
    }
    
    .seriously-service-benefit-item i {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .seriously-service-benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .seriously-service-benefit-item p {
        font-size: 0.95rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-what-you-get {
        padding: 48px 0;
    }
    
    .seriously-service-what-you-get .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-section-header h2 {
        font-size: 1.5rem;
    }
    
    .seriously-service-section-header h2::after {
        width: 50px;
    }
    
    .seriously-service-section-header p {
        font-size: 1rem;
    }
    
    .seriously-service-benefits-grid {
        gap: 16px;
    }
    
    .seriously-service-benefit-item {
        padding: 24px 20px;
    }
    
    .seriously-service-benefit-item i {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    
    .seriously-service-benefit-item h3 {
        font-size: 1.05rem;
    }
    
    .seriously-service-benefit-item p {
        font-size: 0.9rem;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-different.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - HOW WE'RE DIFFERENT SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.seriously-service-different {
    padding: 80px 0;
    background: #f9f9f9;
}

.seriously-service-different .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* CONTENT CONTAINER */
.seriously-service-different-content {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* DIFFERENT ITEM */
.seriously-service-different-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seriously-service-different-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4facb3 0%, #6bbcc2 100%);
}

.seriously-service-different-item:nth-child(2)::before,
.seriously-service-different-item:nth-child(4)::before {
    background: linear-gradient(180deg, #de4854 0%, #c43844 100%);
}

.seriously-service-different-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(79, 172, 179, 0.1);
}

.seriously-service-different-item:nth-child(2):hover,
.seriously-service-different-item:nth-child(4):hover {
    box-shadow: 0 12px 35px rgba(222, 72, 84, 0.1);
}

/* ICON */
.seriously-service-different-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(79, 172, 179, 0.1) 0%, rgba(79, 172, 179, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.seriously-service-different-item:nth-child(2) .seriously-service-different-icon,
.seriously-service-different-item:nth-child(4) .seriously-service-different-icon {
    background: linear-gradient(135deg, rgba(222, 72, 84, 0.1) 0%, rgba(222, 72, 84, 0.05) 100%);
}

.seriously-service-different-item:hover .seriously-service-different-icon {
    transform: scale(1.05) rotate(5deg);
}

.seriously-service-different-icon i {
    font-size: 1.6rem;
    color: #4facb3;
}

.seriously-service-different-item:nth-child(2) .seriously-service-different-icon i,
.seriously-service-different-item:nth-child(4) .seriously-service-different-icon i {
    color: #de4854;
}

/* TEXT CONTENT */
.seriously-service-different-text {
    flex: 1;
}

.seriously-service-different-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.seriously-service-different-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.seriously-service-different-text p a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.seriously-service-different-text p a:hover {
    text-decoration-color: currentColor;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-different {
        padding: 64px 0;
    }
    
    .seriously-service-different .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-different-content {
        gap: 20px;
        max-width: 700px;
    }
    
    .seriously-service-different-item {
        padding: 28px;
        gap: 24px;
        border-radius: 14px;
    }
    
    .seriously-service-different-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    
    .seriously-service-different-icon i {
        font-size: 1.4rem;
    }
    
    .seriously-service-different-text h3 {
        font-size: 1.2rem;
    }
    
    .seriously-service-different-text p {
        font-size: 0.95rem;
    }
    
    .seriously-service-different-item:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }
    
    .seriously-service-different-item:hover .seriously-service-different-icon {
        transform: none;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-different {
        padding: 56px 0;
    }
    
    .seriously-service-different .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-different-content {
        gap: 16px;
    }
    
    .seriously-service-different-item {
        flex-direction: column;
        padding: 24px 22px;
        text-align: center;
        align-items: center;
        border-radius: 12px;
    }
    
    .seriously-service-different-item::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #4facb3 0%, #6bbcc2 100%);
    }
    
    .seriously-service-different-item:nth-child(2)::before,
    .seriously-service-different-item:nth-child(4)::before {
        background: linear-gradient(90deg, #de4854 0%, #c43844 100%);
    }
    
    .seriously-service-different-icon {
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }
    
    .seriously-service-different-icon i {
        font-size: 1.3rem;
    }
    
    .seriously-service-different-text h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .seriously-service-different-text p {
        font-size: 0.95rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-different {
        padding: 48px 0;
    }
    
    .seriously-service-different .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-different-content {
        gap: 14px;
    }
    
    .seriously-service-different-item {
        padding: 22px 18px;
    }
    
    .seriously-service-different-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .seriously-service-different-icon i {
        font-size: 1.2rem;
    }
    
    .seriously-service-different-text h3 {
        font-size: 1.1rem;
    }
    
    .seriously-service-different-text p {
        font-size: 0.9rem;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-tables.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - SERVICE TABLE SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.seriously-service-table {
    padding: 80px 0;
    background: #ffffff;
}

.seriously-service-table .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TABLE WRAPPER */
.seriously-service-table-wrapper {
    max-width: 1000px;
    margin: 0 auto 28px;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* TABLE */
.seriously-service-table-content {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    border-radius: 16px;
    overflow: hidden;
}

.seriously-service-table-content thead {
    background: linear-gradient(135deg, #4facb3 0%, #6bbcc2 100%);
}

.seriously-service-table-content thead th {
    padding: 20px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.seriously-service-table-content tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease, border-left 0.3s ease;
    border-left: 3px solid transparent;
}

.seriously-service-table-content tbody tr:last-child {
    border-bottom: none;
}

.seriously-service-table-content tbody tr:hover {
    background-color: rgba(79, 172, 179, 0.04);
    border-left-color: #4facb3;
}

.seriously-service-table-content tbody td {
    padding: 18px;
    color: #555;
    font-size: 1rem;
    font-weight: 400;
}

.seriously-service-table-content tbody td:first-child {
    font-weight: 600;
    color: #4facb3;
}

.seriously-service-table-content tbody td:last-child {
    font-weight: 700;
    color: #de4854;
    font-size: 1.15rem;
    background: rgba(222, 72, 84, 0.04);
}

.seriously-service-table-content tbody td a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.seriously-service-table-content tbody td a:hover {
    text-decoration-color: currentColor;
}

/* Hide data labels on desktop */
.seriously-service-table-content td::before {
    display: none;
}

/* TABLE NOTE */
.seriously-service-table-note {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-table {
        padding: 64px 0;
    }
    
    .seriously-service-table .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-table-wrapper {
        border-radius: 14px;
    }
    
    .seriously-service-table-content thead th {
        padding: 18px 14px;
        font-size: 1rem;
    }
    
    .seriously-service-table-content tbody td {
        padding: 16px 14px;
        font-size: 0.95rem;
    }
    
    .seriously-service-table-note {
        font-size: 0.85rem;
    }
    
    .seriously-service-table-content tbody tr:hover {
        background-color: transparent;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-table {
        padding: 56px 0;
    }
    
    .seriously-service-table .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-table-wrapper {
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 24px;
    }
    
    /* Hide table headers */
    .seriously-service-table-content thead {
        display: none;
    }
    
    .seriously-service-table-content {
        background: transparent;
        border-radius: 0;
    }
    
    /* Stack rows as cards */
    .seriously-service-table-content tbody tr {
        display: block;
        margin-bottom: 18px;
        border: none;
        border-radius: 14px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .seriously-service-table-content tbody td {
        display: block;
        text-align: left;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        padding-left: 45%;
        color: #555;
        font-weight: 500;
        font-size: 0.9rem;
    }
    
    .seriously-service-table-content tbody td:first-child {
        background: linear-gradient(135deg, #4facb3 0%, #6bbcc2 100%);
        color: #ffffff;
        font-weight: 600;
        font-size: 1.05rem;
        padding-left: 16px;
        border-bottom: none;
    }
    
    .seriously-service-table-content tbody td:last-child {
        border-bottom: none;
        background: rgba(222, 72, 84, 0.05);
        color: #de4854;
        font-size: 1.3rem;
        font-weight: 700;
        text-align: center;
        padding: 18px 16px;
    }
    
    /* Show data labels on mobile */
    .seriously-service-table-content tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        font-weight: 600;
        color: #4facb3;
        display: inline-block;
        font-size: 0.85rem;
    }
    
    .seriously-service-table-content tbody td:first-child::before,
    .seriously-service-table-content tbody td:last-child::before {
        display: none;
    }
    
    .seriously-service-table-note {
        font-size: 0.85rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-table {
        padding: 48px 0;
    }
    
    .seriously-service-table .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-table-content tbody tr {
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .seriously-service-table-content tbody td {
        padding: 12px 14px;
        padding-left: 42%;
    }
    
    .seriously-service-table-content tbody td:first-child {
        padding: 14px;
        font-size: 1rem;
    }
    
    .seriously-service-table-content tbody td::before {
        left: 14px;
        font-size: 0.8rem;
    }
    
    .seriously-service-table-content tbody td:last-child {
        font-size: 1.2rem;
        padding: 16px 14px;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-areas.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - AREAS SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.seriously-service-areas {
    padding: 80px 0;
    background: #f9f9f9;
}

.seriously-service-areas .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* CONTENT GRID */
.seriously-service-areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* TEXT CONTENT */
.seriously-service-areas-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.seriously-service-areas-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #de4854 0%, #c43844 100%);
    border-radius: 2px;
}

.seriously-service-areas-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

/* AREAS LIST */
.seriously-service-areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.seriously-service-areas-list li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.seriously-service-areas-list li:hover {
    background-color: rgba(222, 72, 84, 0.05);
    transform: translateX(4px);
}

.seriously-service-areas-list li i {
    color: #de4854;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.seriously-service-areas-list li:hover i {
    transform: scale(1.2);
}

/* MAP CONTAINER */
.seriously-service-areas-map {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.seriously-service-areas-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-areas {
        padding: 64px 0;
    }
    
    .seriously-service-areas .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-areas-content {
        gap: 45px;
    }
    
    .seriously-service-areas-text h2 {
        font-size: 1.75rem;
        padding-bottom: 18px;
    }
    
    .seriously-service-areas-text h2::after {
        width: 70px;
    }
    
    .seriously-service-areas-text p {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }
    
    .seriously-service-areas-list {
        gap: 12px;
    }
    
    .seriously-service-areas-list li {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
    
    .seriously-service-areas-list li:hover {
        background-color: transparent;
        transform: none;
    }
    
    .seriously-service-areas-list li:hover i {
        transform: none;
    }
    
    .seriously-service-areas-map {
        height: 380px;
        border-radius: 14px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-areas {
        padding: 56px 0;
    }
    
    .seriously-service-areas .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-areas-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .seriously-service-areas-text {
        text-align: center;
    }
    
    .seriously-service-areas-text h2 {
        font-size: 1.75rem;
        padding-bottom: 16px;
    }
    
    .seriously-service-areas-text h2::after {
        width: 60px;
        height: 2px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .seriously-service-areas-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .seriously-service-areas-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .seriously-service-areas-list li {
        padding: 6px 0;
        justify-content: flex-start;
        font-size: 0.95rem;
    }
    
    .seriously-service-areas-map {
        height: 320px;
        border-radius: 12px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-areas {
        padding: 48px 0;
    }
    
    .seriously-service-areas .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-areas-content {
        gap: 30px;
    }
    
    .seriously-service-areas-text h2 {
        font-size: 1.5rem;
    }
    
    .seriously-service-areas-text h2::after {
        width: 50px;
    }
    
    .seriously-service-areas-text p {
        font-size: 0.95rem;
    }
    
    .seriously-service-areas-list {
        gap: 8px;
        max-width: 100%;
    }
    
    .seriously-service-areas-list li {
        font-size: 0.9rem;
    }
    
    .seriously-service-areas-map {
        height: 280px;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-reviews.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - REVIEWS SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.seriously-service-reviews {
    padding: 80px 0;
    background: #ffffff;
}

.seriously-service-reviews .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* REVIEWS GRID */
.seriously-service-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* REVIEW CARD */
.seriously-service-review-card {
    background: #f9f9f9;
    padding: 32px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Decorative quote mark */
.seriously-service-review-card::after {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(79, 172, 179, 0.08);
    pointer-events: none;
}

.seriously-service-review-card:nth-child(2)::after {
    color: rgba(222, 72, 84, 0.08);
}

.seriously-service-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facb3 0%, #6bbcc2 100%);
}

.seriously-service-review-card:nth-child(2)::before {
    background: linear-gradient(90deg, #de4854 0%, #c43844 100%);
}

.seriously-service-review-card:nth-child(3)::before {
    background: linear-gradient(90deg, #6bbcc2 0%, #4facb3 100%);
}

.seriously-service-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(79, 172, 179, 0.12);
}

.seriously-service-review-card:nth-child(2):hover {
    box-shadow: 0 16px 40px rgba(222, 72, 84, 0.12);
}

/* Google Logo */
.seriously-service-review-logo {
    width: 30px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

/* Stars */
.seriously-service-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.seriously-service-stars i {
    color: #ffc107;
    font-size: 1rem;
}

/* Review Text */
.seriously-service-review-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

/* Author */
.seriously-service-review-author {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seriously-service-review-author strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.seriously-service-review-author span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-reviews {
        padding: 64px 0;
    }
    
    .seriously-service-reviews .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 550px;
    }
    
    .seriously-service-review-card {
        padding: 28px 24px;
        border-radius: 14px;
    }
    
    .seriously-service-review-card p {
        font-size: 0.95rem;
    }
    
    .seriously-service-review-author strong {
        font-size: 1rem;
    }
    
    .seriously-service-review-logo {
        width: 28px;
    }
    
    .seriously-service-stars i {
        font-size: 0.95rem;
    }
    
    .seriously-service-review-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-reviews {
        padding: 56px 0;
    }
    
    .seriously-service-reviews .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-reviews-grid {
        gap: 18px;
        max-width: 100%;
    }
    
    .seriously-service-review-card {
        padding: 24px 22px;
        border-radius: 12px;
    }
    
    .seriously-service-review-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .seriously-service-review-author strong {
        font-size: 0.95rem;
    }
    
    .seriously-service-review-logo {
        width: 26px;
        margin-bottom: 8px;
    }
    
    .seriously-service-stars {
        gap: 3px;
        margin-bottom: 16px;
    }
    
    .seriously-service-stars i {
        font-size: 0.9rem;
    }
    
    .seriously-service-review-author {
        padding-top: 16px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-reviews {
        padding: 48px 0;
    }
    
    .seriously-service-reviews .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-reviews-grid {
        gap: 16px;
    }
    
    .seriously-service-review-card {
        padding: 22px 20px;
    }
    
    .seriously-service-review-logo {
        width: 24px;
    }
}

/* ============================================================
   SECTION SOURCE: individual-service-cta.css
   ============================================================ */

/* 
INDIVIDUAL SERVICE - CTA SECTION
Space Grotesk | No CSS Variables
*/


/* SECTION */
.seriously-service-cta {
    padding: 80px 0;
    background: linear-gradient(90deg, #de4854 0%, #a02832 100%);
    overflow: hidden;
}

.seriously-service-cta .seriously-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* CONTENT */
.seriously-service-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.seriously-service-cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.seriously-service-cta-content p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* BUTTONS */
.seriously-service-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Primary Button */
.seriously-service-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: #333;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seriously-service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Secondary Button */
.seriously-service-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.seriously-service-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.seriously-service-cta-btn-outline i {
    font-size: 0.9rem;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-service-cta {
        padding: 64px 0;
    }
    
    .seriously-service-cta .seriously-home-container {
        padding: 0 32px;
    }
    
    .seriously-service-cta-content h2 {
        font-size: 2rem;
    }
    
    .seriously-service-cta-content p {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .seriously-service-cta-buttons {
        gap: 14px;
    }
    
    .seriously-service-cta-btn,
    .seriously-service-cta-btn-outline {
        font-size: 0.95rem;
    }
    
    .seriously-service-cta-btn:hover,
    .seriously-service-cta-btn-outline:hover {
        transform: none;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-service-cta {
        padding: 56px 0;
    }
    
    .seriously-service-cta .seriously-home-container {
        padding: 0 16px;
    }
    
    .seriously-service-cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }
    
    .seriously-service-cta-content p {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }
    
    .seriously-service-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .seriously-service-cta-btn,
    .seriously-service-cta-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
        font-size: 0.95rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-service-cta {
        padding: 48px 0;
    }
    
    .seriously-service-cta .seriously-home-container {
        padding: 0 12px;
    }
    
    .seriously-service-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .seriously-service-cta-content p {
        font-size: 1rem;
    }
    
    .seriously-service-cta-btn,
    .seriously-service-cta-btn-outline {
        font-size: 0.9rem;
    }
}
