/*
Theme Name: Nova - Child
Version: 587
Description: A child theme of DMM by Almina
Template: mts_schema
Text Domain: schema
*/

/* Carousel */
@import url("../mts_schema/style.css");

/* general */

/* New */
.top-bar * {
    color: inherit !important;
}

.home .header-spacer {
    display: none;
}

#header .logo-wrap {
    float: none;
}

.logo-wrap {
    margin: 0px !important;
}

.logo-wrap img {
    max-width: 300px;
    display: block;
}

:root {
    --text-dark: #13253e;
    --text-light: #5a6b7c;
    --white: #ffffff;
    --light-bg: #f4f7fa;
    --shadow: 0 10px 30px rgba(19, 37, 62, 0.08);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
html .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    color: #fff;
    text-align: center;
}

html .btn-primary {
    color: var(--white);
    background: var(--aColor);
    box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sColor), var(--pColor));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 97, 163, 0.4);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--pColor);
}

/* Top Bar */
.top-bar {
    background-color: var(--sColor);
    color: var(--white);
    padding: 8px 0;
    font-size: 1.1rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.contact-info i {
    color: var(--aColor);
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sColor);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--pColor);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    margin: 0px;
    padding: 0px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

/* Nav link hover effect */
.nav-menu > li > a:not(.btn)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--aColor);
    transition: width 0.3s;
}

.nav-menu > li > a:not(.btn):hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--pColor);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 1100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--pColor);
    padding-left: 25px;
}

/* Dropdown arrow rotation */
.dropdown > a i {
    transition: transform 0.3s;
}
.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--sColor);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(var(--sColor), var(--pColor));
    background-size: cover;
    background-position: center;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero h2 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    font-weight: 300;
    margin-top: 15px;
}

/* Services Grid - Modern Image Cards */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--sColor);
}
.subtitle,
.section-header .subtitle {
    display: block;
    color: var(--aColor);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Modern Image Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 37, 62, 0.15);
}

.service-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(19, 37, 62, 0.4), transparent);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--sColor);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-link {
    color: var(--pColor);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    /* Simple yet impactful background pattern - Modern Dot Grid */
    background-color: #f0f4f8;
    background-image: radial-gradient(rgba(50, 97, 163, 0.15) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Removing gap for seamless look, or keep small gap for card look */
    align-items: stretch; /* CRITICAL: Forces equal height for image and text */
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Round corners for children */
}

.about-img {
    position: relative;
    height: 100%;
    min-height: 450px; /* Ensure height on mobile */
}

.about-img img {
    width: 100%;
    height: 100% !important; /* Stretch to fill container */
    object-fit: cover; /* Crop to fit */
    display: block;
    object-position: 82% 50%;
}

.about-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.about-text h4 {
    color: var(--aColor);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-text h2 {
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--pColor);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    margin: 30px 0;
    padding: 0px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.check-list i {
    color: var(--aColor);
    background: rgba(14, 151, 125, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--sColor); /* Dark Navy BG */
    color: var(--white);
    text-align: center;
}

.testimonials h2 {
    color: var(--white);
}
.testimonials p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05); /* Glassmorphism effect */
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.testimonial-card i.quote-icon {
    font-size: 2rem;
    color: var(--aColor);
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.client-info .testimonialname {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.client-info span {
    color: var(--aColor);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Section & Form */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info-panel {
    background-color: var(--pColor);
    color: var(--white);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info-panel h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.4rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-top: -5px;
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-panel {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--sColor);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--pColor);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(50, 97, 163, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
footer {
    background-color: var(--sColor);
    color: #bdc3c7;
    padding: 80px 0 20px;
}

.footer-content {
    /* display: flex; */
    /* gap: 50px; */
    margin-bottom: 60px;
    align-items: flex-start;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--aColor);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #a0aec0;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--aColor);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    color: var(--white);
}

.social-links a:hover {
    background: var(--pColor);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
        box-shadow: none;
        background: transparent;
    }
    .about-content > div {
        border-radius: var(--radius);
    }
    .about-img {
        height: 300px;
        min-height: 0;
        margin-bottom: 20px;
    }
    .about-text {
        padding: 30px;
        box-shadow: var(--shadow);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 20px;
    }
    .top-bar .container {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    .contact-info {
        display: none;
    }
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 104px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
        overflow-y: auto;
        padding: 0px;
        height: calc(100vh - 104px);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Dropdown styles */
    .nav-menu {
        gap: 0;
    }
    .nav-menu > li {
        width: 100%;
        text-align: left;
    }
    .nav-menu > li > a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    .nav-menu > li > a:not(.btn)::after {
        display: none;
    } /* Remove hover underline on mobile */

    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        width: 100%;
        padding: 0;
        background-color: #f9f9f9;
        display: block; /* Show default for now on mobile */
    }

    .dropdown-menu a {
        padding-left: 30px;
        font-size: 0.85rem;
    }
}

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

/**/

.info-item a {
    color: #fff;
}

ul#menu-main-menu .btn a {
    color: #fff !important;
}

header.hero > video {
    height: 100% !important;
    width: 100% !important;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    opacity: 0.2;
}

html #blog div#page {
    padding: 0px !important;
}

header {
    float: none;
}

.mobile_cta_buttons.hide-d.mobile-btn {
    padding: 20px;
    text-align: center;
    @media (min-width: 881px) {
        display: none;
    }
}

.mobile_cta_buttons.hide-d.mobile-btn p a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
}

.dm-flex.footer-content h3 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.dm-flex.footer-content a {
    color: #fff;
}

.dm-flex.footer-content p {
    margin-bottom: 10px;
}

footer#site-footer {
    margin: 0px;
    color: #fff;
}

.dm-flex.footer-content .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    color: var(--white);
}

footer#site-footer h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--aColor);
}

.footer-bottom p {
    margin: 0px 0px 5px;
}

.footer-bottom * {
    color: #fff;
}

.footer-bottom a {
    font-weight: bold;
}

.sub-footer .container {
    width: 100%;
}

span.hiddenRest {
    display: none;
    padding-left: 5px;
}

p.testimonial-text span.read_more {
    font-weight: bold;
}

@media (max-width: 880px) {
    div.header-social-icons {
        background: transparent;
    }

    ul#menu-main-menu .btn {
        padding: 0px;
        border-radius: 0px;
    }
    .top-bar {
        display: none;
    }

    #logo {
        margin: 0px;
    }

    .logo-wrap img {
        max-width: 250px;
        margin: 0px auto;
        margin-left: 0px !important;
        display: block;
    }

    html div.header-social-icons {
        background: transparent;
        float: none;
    }

    a.sticks {
        border: 0px;
        background: var(--aColor);
    }

    a.sticks + a {
        background: var(--sColor);
    }
}

section.cta-classic {
    text-align: center;
}

.cta-carrier {
    padding: 15vh 0px;
    text-align: center;
    background: #000000a6;
}

.cta-content {
    max-width: 1300px;
    margin: auto;
}

.cta-content * {
    color: #fff;
}

.cta-content h2 {
    font-size: 45px;
}

section.cta-classic {
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
}

.contact-form-panel li input {
    height: 40px;
    border-radius: 20px;
}

.contact-form-panel #field_2_6 input {
    height: auto;
}

.contact-form-panel li textarea {
    border-radius: 20px;
}

html .mobile-menu-active .main-container {
    left: 0px;
}

.trigger-menu {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: var(--pColor);
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.nav-menu > li {
    position: relative;
}

@media (min-width: 881px) {
    #menu-main-menu li .sub-menu li a {
        padding: 10px;
    }
    #menu-main-menu li .sub-menu .sub-menu {
        top: 0px;
        left: 100% !important;
    }
    .trigger-menu {
        display: none;
    }
    #menu-main-menu li .sub-menu {
        position: absolute;
        left: 0px;
        top: 100%;
        background: #fff;
        padding: 0px;
        margin: 0px;
        width: 200px;
        box-shadow: 0px 1px 10px #0000000d;
        left: 0px !important;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-main-menu li {
        position: relative;
    }
    #menu-main-menu li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 880px) {
    .sub-menu {
        background: var(--pColor);
        padding: 10px 20px;
        list-style: none;
        display: none;
    }
    .sub-menu * {
        color: #fff !important;
    }
}

#logo {
    margin: 0px;
}

#logo img {
    display: block;
    max-width: 150px;
}

.header-spacer {
    display: none;
}

.credit-pricing-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
}

.credit-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.credit-price-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    transition: all 0.25s ease;
}

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

.credit-services {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 28px;
}

.credit-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1;
    font-size: 16px;
    line-height: 1.5;
}

.credit-service-item:last-child {
    border-bottom: 0;
}

.credit-service-item:before {
    content: "✓";
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .credit-pricing-grid {
        grid-template-columns: 1fr;
    }

    .credit-price-card {
        padding: 17px 18px;
        font-size: 16px;
    }

    .credit-services {
        padding: 20px;
    }
}

.membership-packages {
    padding: 60px 20px;
}

.membership-packages .membership-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.membership-packages h4 {
    margin: 0 0 30px;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
}

.membership-packages .membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.membership-packages .membership-card {
    position: relative;
    padding: 32px 24px 26px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}

.membership-packages .membership-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #222;
}

.membership-packages .membership-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.membership-packages .membership-card a {
    display: inline-block;
    margin-bottom: 20px;
    padding: 13px 22px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.membership-packages .membership-card a:hover {
    background: #444;
    transform: translateY(-2px);
}

.membership-packages .membership-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.55;
    color: #222;
}

@media (max-width: 1000px) {
    .membership-packages .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .membership-packages {
        padding: 40px 15px;
    }

    .membership-packages h4 {
        font-size: 27px;
    }

    .membership-packages .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-packages .membership-card {
        padding: 28px 20px 24px;
    }
}

.staff-grid-container .staff-image {
    max-width: 300px;
    margin: 0px auto 20px;
    height: 400px !important;
}

.dm-service-section:nth-child(even) {
    background: #f5f3ee !important;
}

.page-id-378 .dm-service-section .dm-flex {
    align-items: normal;
}

.navbar .container {
    max-width: 1400px;
    width: 1400px;
}

/* ================================
   START HERE
================================ */

.dm-start-here {
    padding: 70px 20px;
    background: #f5f7f6;
}

.dm-start-here-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.dm-start-here-content {
    flex: 1;
    padding: 65px;
}

.dm-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.dm-start-here h2,
.dm-help-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    color: #222;
}

.dm-start-here p {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.75;
    color: #666;
}

.dm-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 26px;
    background: #222;
    color: #fff !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dm-start-btn span {
    font-size: 21px;
    transition: transform 0.3s ease;
}

.dm-start-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

.dm-start-btn:hover span {
    transform: translateX(5px);
}

.dm-start-here-accent {
    width: 33%;
    min-height: 330px;
    padding: 45px;
    background: #222;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dm-start-here-accent span {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.dm-start-here-accent strong {
    max-width: 220px;
    font-size: 30px;
    line-height: 1.15;
}

/* ================================
   WHAT WE HELP WITH
================================ */

.dm-help-section {
    padding: 90px 20px;
    background: #fff;
}

.dm-help-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dm-help-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.dm-help-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #777;
}

.dm-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.dm-help-card {
    min-height: 155px;
    padding: 28px;
    background: #7a9b8e;
    border: 1px solid #e8e9e8;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.dm-help-card:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    bottom: -50px;
    background: #222;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.dm-help-card span {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #aaa;
}

.dm-help-card h3 {
    position: relative;
    z-index: 2;
    margin: 35px 0 0;
    font-size: 23px;
    line-height: 1.2;
    color: #fff;
    transition: color 0.3s ease;
    text-align: center;
}

.dm-help-card:hover {
    background: #f5f3ee;
    border-color: #222;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dm-help-card:hover h3 {
    color: #123524;
}

.dm-help-card:hover span {
    color: rgba(255, 255, 255, 0.55);
}

.dm-help-card:hover:after {
    opacity: 0.08;
    transform: scale(2.5);
}

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

@media (max-width: 900px) {
    .dm-start-here-inner {
        flex-direction: column;
    }

    .dm-start-here-content {
        padding: 45px 35px;
    }

    .dm-start-here-accent {
        width: 100%;
        min-height: auto;
        padding: 30px 35px;
        flex-direction: row;
        align-items: center;
    }

    .dm-start-here-accent strong {
        font-size: 23px;
        text-align: right;
    }

    .dm-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dm-start-here,
    .dm-help-section {
        padding: 55px 15px;
    }

    .dm-start-here-content {
        padding: 38px 25px;
    }

    .dm-start-here h2,
    .dm-help-heading h2 {
        font-size: 36px;
    }

    .dm-start-here p,
    .dm-help-heading p {
        font-size: 16px;
    }

    .dm-help-grid {
        grid-template-columns: 1fr;
    }

    .dm-help-card {
        min-height: 120px;
    }

    .dm-help-card h3 {
        margin-top: 25px;
    }
}

.dm-start-here-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.dm-start-here-content {
    width: 60%;
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dm-start-here-image {
    width: 40%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.dm-start-here-image img {
    position: absolute;
    width: 100%;
    height: 100% !important;
    inset: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.dm-start-here-inner:hover .dm-start-here-image img {
    transform: scale(1.04);
}

/* TABLET / MOBILE */

@media (max-width: 900px) {
    .dm-start-here-inner {
        flex-direction: column;
    }

    .dm-start-here-content {
        width: 100%;
        padding: 45px 35px;
    }

    .dm-start-here-image {
        width: 100%;
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .dm-start-here-content {
        padding: 38px 25px;
    }

    .dm-start-here-image {
        min-height: 280px;
    }
}

.dm-start-here-content a.btn {
    width: 50%;
}

.dm-help-card span {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mpsi-section {
    padding: 90px 20px;
    background: #f6f7f5;
}

.mpsi-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP AREA */

.mpsi-header {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 65px;
}

.mpsi-logo {
    background: #fff;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    border-radius: 6px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.mpsi-logo img {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
}

.mpsi-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.mpsi-intro h2 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 600;
}

.mpsi-intro p {
    max-width: 780px;
    margin: 0 0 15px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* HOW WE HELP */

.mpsi-help {
    padding-top: 55px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.mpsi-help > h3 {
    margin: 0 0 30px;
    font-size: 32px;
    text-align: center;
}

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

.mpsi-card {
    position: relative;
    padding: 38px 32px 35px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mpsi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.mpsi-number {
    display: block;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.45;
}

.mpsi-card h4 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
}

.mpsi-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* BUTTONS */

.mpsi-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.mpsi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 14px 27px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #222;
    transition: all 0.25s ease;
}

.mpsi-btn span {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.mpsi-btn:hover span {
    transform: translateX(4px);
}

.mpsi-btn-primary {
    background: #222;
    color: #fff;
}

.mpsi-btn-primary:hover {
    background: transparent;
    color: #222;
}

.mpsi-btn-secondary {
    background: transparent;
    color: #222;
}

.mpsi-btn-secondary:hover {
    background: #222;
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .mpsi-section {
        padding: 65px 20px;
    }

    .mpsi-header {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mpsi-logo {
        min-height: 190px;
    }

    .mpsi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mpsi-section {
        padding: 50px 15px;
    }

    .mpsi-logo {
        padding: 30px;
    }

    .mpsi-intro h2 {
        font-size: 34px;
    }

    .mpsi-card {
        padding: 30px 25px;
    }

    .mpsi-actions {
        flex-direction: column;
    }

    .mpsi-btn {
        width: 100%;
    }
}

.reveal-right.active ul > li {
    color: var(--text-light) !important;
}

.about-img img {
    object-position: 50% 50% !important;
}
section#about h3 {
    font-size: 20px !important;
}

/* Scoped to .mmd-stay-section so it won't leak into the rest of the page.
     No font-family is declared anywhere below — text inherits the
     site's existing fonts. Palette: #c8a96b (gold) + white. */

.mmd-stay-section {
    font-family: inherit;
    background: #ffffff;
    color: #2b2b2b;
    padding: 64px 20px;
    box-sizing: border-box;
}
.mmd-stay-section * {
    box-sizing: border-box;
    font-family: inherit;
}
.mmd-container {
    max-width: 1180px;
    margin: 0 auto;
}

/* Header */
.mmd-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}
.mmd-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 20px;
    line-height: 1.15;
}
.mmd-tm {
    font-size: 0.45em;
    vertical-align: super;
}
.mmd-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #b3894f;
    margin: 0 0 20px;
    line-height: 1.5;
}
.mmd-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* Core Pillars */
.mmd-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}
.mmd-pillar-card {
    background: #ffffff;
    border: 1px solid #ece2cf;
    border-radius: 12px;
    padding: 28px 20px 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(200, 169, 107, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mmd-icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #c8a96b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a96b;
}
.mmd-icon-circle svg {
    width: 30px;
    height: 30px;
}
.mmd-pillar-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c8a96b;
    margin: 0 0 16px;
}
.mmd-pillar-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}
.mmd-pillar-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}
.mmd-pillar-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8a96b;
}

/* Generic placeholder block for images */
.mmd-placeholder {
    background: repeating-linear-gradient(45deg, #f4ecdd, #f4ecdd 10px, #ffffff 10px, #ffffff 20px);
    border: 1px dashed #c8a96b;
    color: #b3894f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    margin-top: auto;
}

/* Pillar-card images bleed to the edges of the card (the card's
     overflow:hidden + border-radius clips them into rounded bottom
     corners automatically). Covers both the placeholder div and a
     real <img> dropped in its place. */
.mmd-pillar-card .mmd-placeholder,
.mmd-pillar-card > img {
    display: block;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    height: 160px !important;
    margin-top: auto;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    object-fit: cover;
}

/* Why Majestic MD */
.mmd-why {
    background: #faf6ee;
    border-radius: 16px;
    padding: 48px 32px;
    margin-bottom: 72px;
}
.mmd-why-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 40px;
}
.mmd-why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.mmd-why-item {
    text-align: center;
    padding: 0 8px;
}
.mmd-why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    color: #c8a96b;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mmd-why-icon svg {
    width: 100%;
    height: 100%;
}
.mmd-why-heading {
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 8px;
    line-height: 1.35;
}
.mmd-why-copy {
    font-size: 13px;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

/* Explore Our Programs */
.mmd-programs-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 36px;
}
.mmd-programs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.mmd-program-card {
    text-align: left;
}
.mmd-program-img {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 14px;
    margin-top: 0;
    object-fit: cover;
}
.mmd-program-heading {
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 6px;
}
.mmd-program-copy {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
    .mmd-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .mmd-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mmd-programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .mmd-stay-section {
        padding: 48px 16px;
    }
    .mmd-pillars {
        grid-template-columns: 1fr;
    }
    .mmd-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mmd-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mmd-why {
        padding: 36px 20px;
    }
}

/* Scoped to .mms- prefix so it won't clash with theme styles */
.mms-intro,
.mms-packages {
    font-family: inherit; /* no new fonts — inherits the theme's body font */
    box-sizing: border-box;
}
.mms-intro *,
.mms-packages * {
    box-sizing: border-box;
}

.mms-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 72px 24px;
}

/* ---- Intro / credits section ---- */
.mms-intro {
    background: #ffffff;
    color: #1a1a1a;
}
.mms-eyebrow {
    color: #c8a96b;
    font-size: 15px;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
}
.mms-heading {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1a1a1a;
    max-width: 20ch;
}
.mms-heading--dark {
    color: #1a1a1a;
}
.mms-lede {
    font-size: 19px;
    line-height: 1.6;
    color: #4a4438;
    max-width: 62ch;
    margin: 0 0 48px;
}

.mms-how {
    border-top: 1px solid rgba(200, 169, 107, 0.5);
    padding-top: 32px;
    margin-bottom: 40px;
}
.mms-how h3 {
    font-size: 22px;
    color: #a3823f;
    margin: 0 0 20px;
}
.mms-steps {
    display: grid;
    gap: 16px;
    padding-left: 22px;
    margin: 0;
    color: #4a4438;
    font-size: 16px;
    line-height: 1.6;
}
.mms-steps li {
    padding-left: 6px;
}
.mms-steps li::marker {
    color: #c8a96b;
    font-weight: 700;
}

.mms-rate-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    background: #c8a96b;
    color: #1a1a1a;
    padding: 18px 24px;
    margin-bottom: 48px;
}
.mms-rate-strip__label {
    font-size: 14px;
    letter-spacing: 0.03em;
}
.mms-rate-strip__value {
    font-size: 20px;
    font-weight: 700;
}

.mms-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(200, 169, 107, 0.25);
    margin-bottom: 56px;
}
.mms-service {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
}
.mms-service img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.mms-service__body {
    padding: 18px 20px 24px;
}
.mms-service__credit {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #c8a96b;
    border: 1px solid #c8a96b;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.mms-service h4 {
    font-size: 17px;
    line-height: 1.35;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}
.mms-service h4 small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #b8b0a0;
    margin-top: 4px;
}

.mms-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c8a96b;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    padding: 16px 32px;
    transition: background-color 0.2s ease;
}
.mms-cta:hover {
    background: #b8975a;
}
.mms-cta svg {
    width: 16px;
    height: 16px;
    fill: #1a1a1a;
}

/* ---- Membership packages section ---- */
.mms-packages {
    background: #ffffff;
    color: #1a1a1a;
}
.mms-packages .mms-heading {
    margin-bottom: 40px;
}

.mms-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mms-package {
    position: relative;
    border: 1px solid #e3d9c3;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.mms-package--featured {
    border-color: #c8a96b;
    border-width: 2px;
}
.mms-package__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #c8a96b;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 4px 14px;
    margin: 0;
}
.mms-package__rate {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 0;
    color: #1a1a1a;
}
.mms-package__per {
    font-size: 15px;
    color: #7a6f5b;
    margin: 0 0 16px;
}
.mms-package__btn {
    display: inline-block;
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 16px;
    transition: background-color 0.2s ease;
}
.mms-package__btn:hover {
    background: #c8a96b;
    color: #1a1a1a;
}

.mms-scroll-top {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.mms-scroll-top svg {
    width: 40px;
    height: 40px;
    fill: #c8a96b;
    transition: fill 0.2s ease;
}
.mms-scroll-top:hover svg {
    fill: #1a1a1a;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .mms-services {
        grid-template-columns: repeat(2, 1fr);
    }
    .mms-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .mms-container {
        padding: 48px 16px;
    }
    .mms-services {
        grid-template-columns: 1fr;
    }
    .mms-package-grid {
        grid-template-columns: 1fr;
    }
    .mms-rate-strip {
        flex-direction: column;
        gap: 2px;
    }
}
