/* CSS Custom Properties */
:root {
    --color-primary: #8B5CF6;
    --color-secondary: #06B6D4;
    --color-background: #FAFAFA;
    --color-surface: #F3F4F6;
    --color-text-primary: #1F2937;
    --color-text-secondary: #6B7280;
    --mhh-gray-200: #E5E7EB;
    --mhh-gray-700: #374151;
    --mhh-gray-800: #1F2937;
    --mhh-white: #FFFFFF;

    /* Admin theme variables (copied from admin.css) */
    /* Primary Colors */
    --mhh-teal-900: #062e33;
    --mhh-teal-800: #0a4a52;
    --mhh-teal-700: #00565E;
    --mhh-teal-600: #005f73;
    --mhh-teal-500: #007d86;
    --mhh-teal-400: #0891a2;
    --mhh-teal-300: #22d3ee;
    --mhh-teal-200: #67e8f9;
    --mhh-teal-100: #a5f3fc;
    --mhh-teal-50: #f0fdfa;

    /* Accent Colors */
    --mhh-salmon: #ef8673;
    --mhh-salmon-light: #f4a5a0;
    --mhh-salmon-dark: #e06b5a;

    /* Neutral Colors (add only those not already present) */
    --mhh-gray-50: #f8fafc;
    --mhh-gray-100: #f1f5f9;
    --mhh-gray-300: #cbd5e1;
    --mhh-gray-400: #94a3b8;
    --mhh-gray-500: #64748b;
    --mhh-gray-600: #475569;
    --mhh-gray-900: #0f172a;

    /* Semantic Colors */
    --mhh-success: #10b981;
    --mhh-success-light: #34d399;
    --mhh-warning: #f59e0b;
    --mhh-warning-light: #fbbf24;
    --mhh-error: #ef4444;
    --mhh-error-light: #f87171;
    --mhh-info: var(--mhh-teal-500);

    /* Missing mid and neutral alias */
    --mhh-teal-550: #006a76;
    --mhh-silver: #9aa3af;

    /* Base Colors */
    --mhh-black: #000000;

    /* Enhanced Shadows */
    --mhh-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --mhh-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --mhh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --mhh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --mhh-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border Radius */
    --mhh-radius-sm: 6px;
    --mhh-radius: 8px;
    --mhh-radius-md: 12px;
    --mhh-radius-lg: 16px;
    --mhh-radius-xl: 20px;

    /* Transitions */
    --mhh-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --mhh-transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout Colors */
    --mhh-bg: var(--mhh-white);
    --mhh-fg: var(--mhh-gray-900);
    --mhh-surface: var(--mhh-gray-50);
    --mhh-border: var(--mhh-gray-200);
}

/* Home Page Styles */

/* Override container constraints for full-width sections */
.container {
    max-width: unset !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* About Section */
.about-section {
    padding: 3rem 4rem;
}

.about-grid {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
}

.about-image {
    background: var(--mhh-gray-200);
    border-radius: var(--mhh-radius);
    overflow: hidden;
    box-shadow: var(--mhh-shadow-sm);
    width: 35%;
    display: flex;
    align-items: stretch;
    height: 600px;
}

.about-image img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.about-content {
    background: var(--mhh-surface);
    border: 1px solid var(--mhh-gray-200);
    border-radius: var(--mhh-radius);
    padding: 2rem;
    width: 65%;
    box-shadow: var(--mhh-shadow);
    height: 600px;
    overflow-y: auto;
}

.about-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mhh-gray-700);
}

.about-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-title-main {
    color: var(--mhh-gray-800);
}

.about-title-accent {
    background: linear-gradient(135deg, var(--mhh-teal-600), var(--mhh-teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--mhh-gray-700);
    line-height: 1.7;
    font-size: 17px;
}

.about-content p:nth-child(n+4) {
    margin-top: 1rem;
}

.about-button {
    margin-top: 1.5rem;
    align-self: flex-start;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--mhh-salmon);
    background: var(--mhh-salmon);
    color: var(--mhh-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--mhh-radius-sm);
    transition: var(--mhh-transition);
    display: inline-block;
}

.about-button:hover {
    background: var(--mhh-salmon-dark);
    color: var(--mhh-white);
    border-color: var(--mhh-salmon-dark);
}

@media (max-width: 992px) {
    .about-section {
        padding: 2rem 2rem;
    }

    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content {
        order: 2;
        width: 100%;
        padding: 1.5rem;
    }

    .about-image {
        order: 1;
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 1.5rem 1rem;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-content {
        padding: 1rem;
        height: auto;
        overflow-y: visible;
    }

    .about-image {
        height: auto;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1rem 0.5rem;
    }

    .about-grid {
        gap: 1rem;
    }

    .about-content {
        padding: 0.75rem;
    }

    .about-image {
        height: 400px;
    }

    .about-title {
        font-size: 1.25rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .about-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
/* Removed obsolete 'Who We Are' section styles */

/* What We Do Section Title */
.what-we-do-title {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.what-we-do-description {
    text-align: left;
    color: var(--mhh-gray-200);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 95%;
    margin: 0 auto 1rem;
}

.what-we-do-description:last-of-type {
    margin-bottom: 3rem;
}

/* What We Do Real Images */
.what-we-do-real-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--mhh-radius);
    transition: var(--mhh-transition);
    box-shadow: var(--mhh-shadow);
}

.what-we-do-real-image:hover {
    transform: scale(1.05);
    box-shadow: var(--mhh-shadow-lg);
}

.what-we-do-title-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mhh-gray-200);
}

.what-we-do-title-accent {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--mhh-teal-300), var(--mhh-teal-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Track in What We Do Section */
.what-we-do-section .services-marquee {
    margin-top: 3rem;
}

.what-we-do-section .services-track {
    margin-top: 2rem;
}

/* New Who We Are Section (modern, variable-driven) */
.who-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--mhh-teal-900) 0%, var(--mhh-teal-800) 50%, var(--mhh-teal-700) 100%);
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: conic-gradient(from 180deg, var(--mhh-teal-100), var(--mhh-teal-300), var(--mhh-salmon-light), var(--mhh-teal-100));
    filter: blur(80px);
    opacity: 0.25;
    border-radius: 50%;
    pointer-events: none;
}

.who-section::after {
    content: '';
    position: absolute;
    right: -160px;
    bottom: -160px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle at 30% 30%, var(--mhh-teal-50) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Set to 100% width */
    text-align: center;
    /* Center-align content */
    gap: 3rem;
    align-items: center;
}

.who-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: center;

}

.who-title-main {
    color: var(--mhh-teal-100);
}

.who-title-accent {
    background: linear-gradient(135deg, var(--mhh-teal-100) 0%, var(--mhh-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-description {
    color: var(--mhh-gray-200);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin: 0 0 1.5rem 0;
}

.who-button {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border-radius: var(--mhh-radius);
    background: var(--mhh-salmon);
    color: var(--mhh-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--mhh-transition);
}

.who-button:hover {
    background: var(--mhh-salmon-dark);
    transform: translateY(-1px);
}

.who-media {
    position: relative;
}

@media (max-width: 992px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-media {
        order: -1;
    }

    .who-image {
        height: 320px;
    }
}

/* Services Offered Section */
.services-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--mhh-surface) 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--mhh-teal-600), var(--mhh-teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    text-align: center;
    color: var(--mhh-gray-600);
    margin: .5rem 0 2rem;
}

.services-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.services-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    /* slower marquee for better readability */
    animation: marquee 40s linear infinite;
    justify-content: space-between;
    /* Ensure proper spacing for 3 cards */
}

.service-card {
    display: grid;
    justify-items: center;

    text-decoration: none;
    color: var(--mhh-gray-800);
    min-width: calc(30vw - 1rem);
    /* Increased width */
    max-width: 300px;
    /* Adjusted max width */
}

.service-card h3 {
    font-size: 1.5rem;
    /* Increased heading font size */
    font-weight: bold;
}

.service-card p {
    font-size: 1.2rem;
    /* Increased paragraph font size */
}

.service-image {
    width: 230px;
    /* Further increased image width */
    height: 230px;
    /* Further increased image height */
    border-radius: var(--mhh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--mhh-surface);
    border: 2px solid var(--mhh-gray-200);
    box-shadow: var(--mhh-shadow);
    transition: var(--mhh-transition);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--mhh-radius);
}

.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: var(--mhh-shadow-lg);
}

.service-label {
    font-weight: 600;
    color: var(--mhh-gray-700);
    font-size: 1.2rem;
    /* Increased font size for service label */
    text-align: center;
}

/* Small vertical spacing for marquee labels and descriptions */
.services-marquee .service-label {
    margin: 0.25rem 0;
}

.services-marquee .service-description {
    margin: 0.15rem 0 0.35rem 0;
    color: var(--mhh-gray-600);
}

/* Service meta (duration / cost) highlighting */
.service-meta {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    color: var(--mhh-teal-700);
    background: color-mix(in srgb, var(--mhh-teal-100) 85%, white);
    border: 1px solid var(--mhh-teal-200);
    font-weight: 600;
    margin-top: 0.25rem;
}

.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



@keyframes rock {
    0% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

.services-marquee:hover .services-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Hide gradient on mobile for better visibility */
@media (max-width: 768px) {
    .services-marquee {
        mask-image: none;
    }
}

/* ===================== */
/* Home Upcoming Events  */
/* ===================== */
.home-events-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--mhh-surface) 0%, var(--color-background) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.home-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-events-title {
    margin: 0 0 2rem 0;
    display: flex;
    gap: .5rem;
    align-items: baseline;
    justify-content: center;
}

.home-events-title-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mhh-gray-900);
}

.home-events-title-accent {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--mhh-teal-600), var(--mhh-teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.home-event-card {
    display: flex;
    width: 100%;
    background: var(--mhh-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2, 44, 51, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--mhh-gray-100);
}

.home-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(2, 44, 51, 0.12);
}

.home-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--mhh-gray-50);
    padding: 1.25rem 1rem;
    min-width: 96px;
    border-right: 1px solid var(--mhh-gray-200);
}

.home-event-date .date-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mhh-gray-700);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-event-date .date-day {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--mhh-gray-800);
    line-height: 1;
}

.home-event-date.lifetime-event .date-month {
    color: var(--mhh-teal-600);
    font-weight: 700;
}

.home-event-date.lifetime-event .date-day {
    color: var(--mhh-teal-600);
    font-size: 2.5rem;
}

.home-event-image {
    position: relative;
    width: 240px;
    min-height: 120px;
    max-height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    border-right: 1px solid var(--mhh-gray-100);
    display: flex;
    align-items: stretch;
}

.home-event-image img {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 200px;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.home-event-card:hover .home-event-image img {
    transform: scale(1.05);
}

.home-event-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    height: 100%;
    background: var(--mhh-gray-100);
    color: var(--mhh-gray-400);
    font-size: 2rem;
}

/* Countdown Timer */
.countdown-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--mhh-white);
    padding: 0.5rem;
    text-align: center;
    transition: background 0.3s ease;
}

/* Urgent state for events starting soon (< 1 hour) */
.countdown-timer.urgent {
    background: rgba(220, 38, 38, 0.9);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.timer-display span {
    background: var(--mhh-gray-800);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-timer.urgent .timer-display span {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.timer-labels {
    font-size: 0.7rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Event Started / Live Now Badge */
.event-started-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--mhh-white);
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: slideUp 0.5s ease-out;
}

.event-started-badge i {
    animation: blink 1.5s ease-in-out infinite;
    color: #fff;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.home-event-details {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mhh-gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.home-event-description {
    color: var(--mhh-gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.home-event-time {
    color: var(--mhh-gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-event-time i {
    color: var(--mhh-teal-600);
    font-size: 0.85rem;
}

.home-event-time.lifetime-time {
    color: var(--mhh-teal-600);
    font-weight: 600;
}

/* Multi-day event date range styling for home page */
.home-event-date-range {
    color: var(--mhh-gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    line-height: 1.6;
}

.home-event-date-range i {
    color: var(--mhh-teal-600);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.home-event-date-range .date-separator {
    color: var(--mhh-teal-600);
    font-weight: 700;
    margin: 0 0.25rem;
    font-size: 1.1rem;
}

/* Multi-day event time range styling for home page */
.home-event-time-range {
    color: var(--mhh-gray-600);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-left: 1.5rem;
}

.home-event-time-range i {
    color: var(--mhh-teal-600);
    font-size: 0.85rem;
}

.home-event-time-range .time-separator {
    color: var(--mhh-gray-500);
    margin: 0 0.2rem;
}

/* Wrapper for multi-day events date+time */
.home-event-datetime-wrapper {
    margin-bottom: 0.5rem;
}

.home-event-date-range .event-time-inline {
    color: var(--mhh-gray-600);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.15rem 0.5rem;
    background: var(--mhh-gray-50);
    border-radius: 4px;
    margin-left: 0.25rem;
}

.home-event-description-extended {
    color: var(--mhh-gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* CTA spacing for events section */
.home-events-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .home-events-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .home-event-card {
        flex-direction: column;
    }

    .home-event-date {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--mhh-gray-100);
    }

    .home-event-image {
        width: 100%;
        height: 200px;
        border-right: none;
    }

    .home-event-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .home-event-date {
        min-width: auto;
        padding: 1rem 0.5rem;
    }

    .home-event-date .date-day {
        font-size: 1.5rem;
    }

    .home-event-title {
        font-size: 1.2rem;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--mhh-teal-900) 0%, var(--mhh-teal-800) 100%);
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: conic-gradient(from 180deg, var(--mhh-teal-100), var(--mhh-teal-300), var(--mhh-salmon-light), var(--mhh-teal-100));
    filter: blur(60px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.what-we-do-section::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 70% 30%, var(--mhh-teal-50) 0%, transparent 60%);
    filter: blur(40px);
    opacity: 0.2;
    pointer-events: none;
}

.what-we-do-container {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.what-we-do-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--mhh-white);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.5px;
}


.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .what-we-do-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .what-we-do-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .what-we-do-card {
        padding: 1.5rem;
    }
}

/* ===================== */
/* CTA Banner Section    */
/* ===================== */
.cta-banner {
    background: var(--mhh-salmon);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1200px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner-button {
    background: white;
    color: var(--mhh-salmon);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--mhh-gray-50);
}

.cta-banner-heading {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.cta-banner-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-pattern-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
}

.cta-pattern-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 0 100% 0 0;
}

@media (max-width: 768px) {
    .cta-banner {
        margin: 1rem;
        padding: 3rem 1.5rem;
    }

    .cta-banner-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 1200px) {
    .service-image {
        width: 220px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .service-image {
        width: 220px;
        height: 170px;
    }
}

@media (max-width: 480px) {
    .service-image {
        width: 220px;
        height: 170px;
    }
}