/* ============================================
   MCCOLLAM MARINE - MASTER STYLESHEET
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f8f9fb;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(74, 144, 226, 0.2);
    color: #1a202c;
}

/* ============================================
   2. ANIMATED BACKGROUND
   ============================================ */
.mm-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #e8f1f8 100%);
}

.mm-animated-bg::before,
.mm-animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: mm-float 20s ease-in-out infinite;
}

.mm-animated-bg::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: -5s;
}

.mm-animated-bg::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 107, 166, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

@keyframes mm-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-80px, 80px) scale(0.9); }
}

/* ============================================
   3. HERO SECTIONS
   ============================================ */
.mm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.mm-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.88) 0%, rgba(26, 77, 122, 0.78) 50%, rgba(46, 107, 166, 0.82) 100%);
    z-index: 0;
}

.mm-hero-image.mm-has-bg {
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.88) 0%, rgba(26, 77, 122, 0.78) 50%, rgba(46, 107, 166, 0.82) 100%),
                url('https://mccollammarine.com/wp-content/uploads/2026/01/Untitled-design-3.png') center/cover no-repeat;
}

.mm-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 144, 226, 0.3) 0%, transparent 60%);
    animation: mm-pulse-glow 8s ease-in-out infinite;
}

@keyframes mm-pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.mm-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 100%;
    padding: 60px 40px;
    animation: mm-fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mm-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mm-hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mm-hero .mm-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.mm-hero .mm-tagline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    opacity: 0.92;
    font-weight: 300;
    margin-bottom: 45px;
    max-width: 100%;
    line-height: 1.8;
    padding: 0 20px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.mm-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: mm-bounce 2s infinite;
    cursor: pointer;
}

@keyframes mm-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

.mm-scroll-indicator svg {
    width: 35px;
    height: 35px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    opacity: 0.9;
}

/* ============================================
   4. BUTTONS & CTAs
   ============================================ */
.mm-cta {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #1a4d7a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    margin: 0 10px 15px 10px;
    position: relative;
    overflow: hidden;
}

.mm-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
    transition: left 0.5s ease;
}

.mm-cta:hover::before {
    left: 100%;
}

.mm-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.mm-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mm-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.mm-cta-button {
    display: inline-block;
    padding: 22px 65px;
    background: linear-gradient(135deg, #4a90e2 0%, #2e6ba6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 45px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.mm-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.mm-cta-button:hover::before {
    left: 100%;
}

.mm-cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.4);
}

/* ============================================
   5. CONTAINERS & SECTIONS
   ============================================ */
.mm-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.mm-section {
    padding: 120px 40px;
    background: transparent;
    position: relative;
}

.mm-section-alt {
    background: rgba(255, 255, 255, 0.4);
}

.mm-section-dark {
    padding: 120px 40px;
    background: linear-gradient(135deg, #0a2342 0%, #1a4d7a 40%, #2e6ba6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mm-section-dark::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: mm-float 25s ease-in-out infinite;
}

.mm-section-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: mm-float 30s ease-in-out infinite reverse;
}

.mm-section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a4d7a 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.2;
}

.mm-section-dark .mm-section-title {
    background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mm-section-subtitle {
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #4a5568;
    max-width: 100%;
    margin: 0 auto 70px;
    line-height: 1.7;
    padding: 0 20px;
}

.mm-section-dark .mm-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   6. GRID LAYOUTS
   ============================================ */
.mm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.mm-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mm-grid-dense {
    gap: 25px;
}

/* ============================================
   7. CARDS
   ============================================ */
.mm-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 55px 40px;
    border-radius: 25px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.mm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(46, 107, 166, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mm-card:hover::before {
    opacity: 1;
}

.mm-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.4);
}

.mm-card-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 12px rgba(74, 144, 226, 0.3));
    animation: mm-float-icon 3s ease-in-out infinite;
}

@keyframes mm-float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mm-card:hover .mm-card-icon {
    animation: none;
    transform: scale(1.15) rotate(8deg) translateY(-5px);
}

.mm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 800;
    text-align: center;
}

.mm-card p {
    color: #4a5568;
    line-height: 1.8;
    text-align: center;
    font-size: 1.05rem;
}

/* ============================================
   8. FEATURE BOXES
   ============================================ */
.mm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.mm-feature {
    text-align: center;
    padding: 45px 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.mm-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.mm-feature:hover::before {
    left: 100%;
}

.mm-feature:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.mm-feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.mm-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.mm-feature p {
    opacity: 0.95;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   9. INFO ITEMS (Contact Page)
   ============================================ */
.mm-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.mm-info-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mm-info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
}

.mm-info-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(74, 144, 226, 0.3));
}

.mm-info-item h3,
.mm-info-item h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 800;
}

.mm-info-item p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.mm-info-item a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mm-info-item a:hover {
    color: #2e6ba6;
}

/* ============================================
   10. FORM SECTION
   ============================================ */
.mm-form-section {
    padding: 100px 40px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.mm-form-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a4d7a 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
}

.mm-form-section > p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.mm-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   11. FOOTER
   ============================================ */
.mm-footer {
    padding: 40px 40px;
    background: #1a202c;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.mm-footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   12. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .mm-container {
        padding: 0 30px;
    }

    .mm-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .mm-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mm-hero {
        min-height: 90vh;
    }

    .mm-hero-content {
        padding: 40px 20px;
    }

    .mm-container {
        padding: 0 20px;
    }

    .mm-section,
    .mm-section-dark,
    .mm-form-section {
        padding: 80px 20px;
    }

    .mm-grid,
    .mm-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mm-card {
        padding: 45px 30px;
        border-radius: 20px;
    }

    .mm-feature {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .mm-info-item {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .mm-cta {
        display: block;
        margin: 10px auto;
        max-width: 320px;
    }

    .mm-cta-button {
        padding: 18px 50px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .mm-card-icon {
        font-size: 4rem;
    }

    .mm-feature-icon,
    .mm-info-icon {
        font-size: 3.5rem;
    }
}

/* ============================================
   13. UTILITY CLASSES
   ============================================ */
.mm-text-center {
    text-align: center;
}

.mm-mt-60 {
    margin-top: 60px;
}

.mm-mb-60 {
    margin-bottom: 60px;
}

.mm-button-group {
    text-align: center;
    margin-top: 60px;
}
/* ============================================
   ABOUT PAGE ENHANCEMENTS
   ============================================ */

/* Stats Grid */
.mm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mm-stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mm-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.25);
    border-color: rgba(74, 144, 226, 0.5);
}

.mm-stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #1a4d7a 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 10px;
}

.mm-stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   EXPERTISE GRID (Replaces Timeline)
   ============================================ */
.mm-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.mm-expertise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mm-expertise-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.mm-expertise-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.mm-expertise-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-align: center;
}

.mm-expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mm-expertise-card li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.mm-expertise-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   SOCIAL FEEDS GRID
   ============================================ */
.mm-social-feeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mm-social-feed-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.mm-social-feed-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.mm-social-feed-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
}

.mm-social-feed-wrapper .fb-page,
.mm-social-feed-wrapper .elfsight-app-9c3e1832-3a17-4cdb-9f3b-8f0a3d1c5e7a {
    width: 100% !important;
}

.mm-social-feed-wrapper iframe {
    border-radius: 0 !important;
}

/* Social Buttons */
.mm-social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.mm-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mm-fb-btn {
    background: #1877f2;
    color: white;
}

.mm-fb-btn:hover {
    background: #0d65d9;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.3);
}

.mm-ig-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.mm-ig-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .mm-social-feeds-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .mm-expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .mm-social-feeds-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mm-social-feed-wrapper {
        min-width: 100%;
    }

    .mm-expertise-grid {
        grid-template-columns: 1fr;
    }

    .mm-expertise-card {
        padding: 30px 25px;
    }

    .mm-social-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mm-social-btn {
        justify-content: center;
    }
}