:root {
    --primary-color:    #6B4FA0;   /* purple */
    --secondary-color:  #9B8EC4;   /* light purple */
    --accent-color:     #4A9B6F;   /* green */
    --light-bg:         #F5F4F8;   /* purple tinted light bg */
    --white:            #FFFFFF;
    --text-dark:        #1E1B2E;   /* deep purple-dark */
    --text-gray:        #6B7280;   /* neutral grey */
    --border-light:     #E0DCF0;   /* purple tinted border */

    /* Extended palette for charts / badges / panels */
    --purple-dark:      #4A3070;
    --purple-mid:       #7C5BB5;
    --purple-light:     #C4B4E4;
    --grey-dark:        #374151;
    --grey-mid:         #9CA3AF;
    --grey-light:       #F3F4F6;
    --green-dark:       #2D7A50;
    --green-mid:        #4A9B6F;
    --green-light:      #A7D7BC;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	color: var(--text-dark);
	background-color: var(--white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
}

/* Navigation */
.navbar {
	padding: 1rem 0;
    transition: var(--transition);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: -0.5px;
}

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 15px !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

/* ========================================
   HERO SLIDER - FIXED VERSION
   ======================================== */
.hero-slider {
    position: relative;
    margin-top: 0;
    height: 100vh;
    min-height: 600px;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.2) 0%, rgba(102, 126, 234, 0.5) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
    bottom: auto;
}

.carousel-caption h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    margin-bottom: 20px;
}

.carousel-caption p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto 30px;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.7;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(102, 126, 234, 0.8);
    transform: scale(1.1);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition);
    z-index: -1;
}

.btn-custom:hover::before {
    left: 0;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styling */
.section-padding {
	padding: 60px 0;
}

.section-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	position: relative;
	display: inline-block;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-gray);
	margin-bottom: 3rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
}

.title-underline {
	width: 80px;
	height: 4px;
	background: var(--accent-color);
	margin: 1.5rem auto 3rem;
	border-radius: 2px;
}

/* About Section */
.about-section {
	background: var(--light-bg);
}

.about-content {
	font-size: 1.1rem;
	line-height: 1.9;
	color: var(--text-gray);
}

.about-image {
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.stats-box {
	background: var(--white);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	margin: 1rem 0;
}

.stats-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stats-label {
	font-size: 1rem;
	color: var(--text-gray);
	font-weight: 500;
}

/* Divisions Section */
.divisions-section {
	background: var(--white);
}

.division-card {
	background: var(--white);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	border: 2px solid var(--border-light);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.division-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.division-card:hover::before {
	transform: scaleX(1);
}

.division-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	border-color: var(--secondary-color);
}

.division-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--white);
	transition: all 0.4s ease;
}

.division-card:hover .division-icon {
	transform: rotate(360deg) scale(1.1);
	background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.division-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.division-description {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.division-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.division-link:hover {
	color: var(--accent-color);
	gap: 1rem;
}

/* Services/Features Section */
.features-section {
	background: linear-gradient(135deg, #F8FAFC 0%, #E8F3FA 100%);
}

.feature-item {
	text-align: center;
	padding: 2rem;
	transition: all 0.3s ease;
}

.feature-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
	color: var(--accent-color);
	transform: scale(1.1);
}

.feature-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.feature-text {
	color: var(--text-gray);
	line-height: 1.7;
}

/* Multi-Platform Capabilities */
.platform-section {
	background: var(--white);
}

.platform-card {
	background: var(--light-bg);
	border-radius: 15px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.platform-card:hover {
	background: var(--white);
	border-left-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transform: translateX(10px);
}

.platform-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.platform-title {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.platform-description {
	color: var(--text-gray);
	line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
	background: var(--light-bg);
}

.testimonial-card {
	background: var(--white);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.quote-icon {
	font-size: 3rem;
	color: var(--secondary-color);
	opacity: 0.3;
	position: absolute;
	top: 2rem;
	left: 2rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-gray);
	margin: 2rem 0;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 600;
}

.author-info h5 {
	margin: 0;
	color: var(--primary-color);
	font-size: 1.1rem;
}

.author-info p {
	margin: 0;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.rating {
	color: #FFB800;
	margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
	background: var(--white);
}

.why-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.why-item:hover {
	background: var(--light-bg);
}

.why-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	flex-shrink: 0;
}

.why-content h4 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.why-content p {
	color: var(--text-gray);
	margin: 0;
	line-height: 1.7;
}

/* Contact Section */
.contact-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: var(--white);
}

.contact-info {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 20px;
	margin-bottom: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-details h4 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.contact-details p {
	margin: 0;
	opacity: 0.9;
}

.contact-form {
	background: var(--white);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.form-control {
	padding: 1rem;
	border: 2px solid var(--border-light);
	border-radius: 10px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(44, 95, 141, 0.1);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	background: var(--primary-color);
	color: var(--white);
	padding: 1rem 3rem;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: var(--accent-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(232, 168, 124, 0.3);
}

/* Footer */
.footer {
	background: #1E293B;
	color: var(--white);
	padding: 4rem 0 2rem;
}

.footer h5 {
	margin-bottom: 1.5rem;
	color: var(--white);
	font-size: 1.3rem;
}

.footer ul {
	list-style: none;
	padding: 0;
}

.footer ul li {
	margin-bottom: 0.8rem;
}

.footer ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer ul li a:hover {
	color: var(--accent-color);
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent-color);
	color: var(--white);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 3rem;
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
	.carousel-caption h1 {
		font-size: 3rem;
	}
	
	.carousel-caption {
		left: 5%;
		right: 5%;
		max-width: 90%;
	}
	
	.section-title {
		font-size: 2.5rem;
	}
	
	.navbar-nav .nav-link {
		margin: 0.5rem 0;
	}
}

@media (max-width: 767px) {
	.carousel-caption h1 {
		font-size: 2.2rem;
	}
	
	.carousel-caption p {
		font-size: 1.1rem;
	}
	
	.section-padding {
		padding: 60px 0;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.btn-primary-custom,
	.btn-outline-custom {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}
	
	.stats-number {
		font-size: 2.5rem;
	}
	
	.division-card {
		margin-bottom: 2rem;
	}
	
	.contact-form,
	.contact-info {
		padding: 2rem;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fadeInUp {
	animation: fadeInUp 0.8s ease-out;
}
/* ── Hero image full screen, no white gap ── */

.hero-slider .carousel-item img {
    min-height      : 100vh;
    object-fit      : cover;
    object-position : center;
    display         : block;
}

/* ── Caption — centered on all screens ── */
.hero-slider .carousel-caption {
    position  : absolute;
    top       : 50%;
    left      : 50%;
    transform : translate(-50%, -50%);
    bottom    : auto;
    right     : auto;
    width     : 90%;
    max-width : 900px;
    text-align: center;
    padding   : 0;
}

/* ── Buttons — stacked, centered ── */
.hero-buttons {
    display        : flex;
    flex-direction : column;
    align-items    : center;
    gap            : 12px;
}

/* ── Desktop — side by side ── */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction  : row;
        justify-content : center;
        flex-wrap       : wrap;
        gap             : 16px;
    }
}

/* ── Mobile fixes ── */
@media (max-width: 767px) {

    .hero-slider .carousel-caption h1 {
        font-size : 1.8rem !important;
    }

    .hero-slider .carousel-caption .lead {
        font-size    : 1rem !important;
        margin-bottom: 20px !important;
    }

    .hero-slider .carousel-caption {
        width : 88%;
    }

    .hero-buttons .btn {
        width     : 100%;
        max-width : 280px;
    }
}

/* ── Stop horizontal scroll on mobile ── */
body {
    overflow-x  : hidden;
    max-width   : 100vw;
}

.carousel-inner {
    touch-action: pan-y;
}
/* ============================================================
   MORANITY MULTIMEDIA GROUP - INNER PAGE STYLES
   Appended styles — original CSS untouched above
   ============================================================ */

/* ── Inner Hero ── */
.mmg-inner-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 80px;
}

.mmg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(107,79,160,0.70) 100%);
    z-index: 1;
}

.mmg-inner-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.mmg-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.mmg-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.mmg-breadcrumb a:hover { color: #fff; }

.mmg-breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}

.mmg-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.mmg-hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.88);
    max-width: 650px;
    margin: 0 auto 0.5rem;
    line-height: 1.7;
}

/* ── Tag / Badge ── */
.mmg-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Intro Section ── */
.mmg-intro {
    background: var(--light-bg);
}

.mmg-body-text {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.mmg-highlight-box {
    position: relative;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(107,79,160,0.08);
}

.mmg-highlight-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

.mmg-quote-icon {
    position: absolute;
    top: 1rem;
    left: 0.8rem;
    font-size: 1.4rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.mmg-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(107,79,160,0.16);
}

.mmg-intro-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mmg-intro-image:hover img {
    transform: scale(1.04);
}

.mmg-intro-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
}

.mmg-intro-badge i { font-size: 1.2rem; }

/* ── Services Section ── */
.mmg-services-section {
    background: var(--white);
}

.mmg-service-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--border-light);
    box-shadow: 0 8px 36px rgba(107,79,160,0.07);
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mmg-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(107,79,160,0.14);
    border-color: var(--secondary-color);
}

.mmg-service-card--wide {
    flex-direction: column;
}

.mmg-service-card--wide .row {
    flex-direction: row;
}

.mmg-service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 2rem 2rem 0;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(107,79,160,0.25);
    transition: transform 0.3s ease;
}

.mmg-service-card:hover .mmg-service-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.mmg-service-card--wide .mmg-service-icon-wrap {
    margin: 0 auto;
}

.mmg-service-body {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
}

.mmg-service-body h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.mmg-service-body p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.mmg-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmg-service-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mmg-service-list li i {
    color: var(--accent-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mmg-mini-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.mmg-mini-feature i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Background Support Section ── */
.mmg-support-section {
    background: var(--light-bg);
}

.mmg-support-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(107,79,160,0.14);
}

.mmg-support-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mmg-support-visual:hover img {
    transform: scale(1.04);
}

.mmg-support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(107,79,160,0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.mmg-support-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(107,79,160,0.12);
}

.mmg-support-item > i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mmg-support-item h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.mmg-support-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ── Who We Work With ── */
.mmg-who-section {
    background: var(--white);
}

.mmg-who-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 2rem 1rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    background: var(--white);
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
}

.mmg-who-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(107,79,160,0.22);
}

.mmg-who-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: color 0.35s ease;
}

.mmg-who-card:hover i { color: #fff; }

.mmg-who-card span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.35s ease;
}

.mmg-who-card:hover span { color: #fff; }

/* ── CTA Section ── */
.mmg-cta-section {
    background: var(--light-bg);
}

.mmg-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    box-shadow: 0 20px 60px rgba(107,79,160,0.3);
    color: #fff;
}

.mmg-cta-box h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.mmg-cta-box p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .mmg-hero-title { font-size: 2.6rem; }
    .mmg-cta-box { padding: 2.5rem 2rem; }
    .mmg-intro-image img { height: 360px; }
    .mmg-support-visual img { height: 380px; }
}

@media (max-width: 767px) {
    .mmg-inner-hero { height: 55vh; min-height: 360px; }
    .mmg-hero-title { font-size: 2rem; }
    .mmg-hero-subtitle { font-size: 1rem; }
    .mmg-service-card--wide .row { flex-direction: column; }
    .mmg-service-icon-wrap { margin: 2rem auto 0; }
    .mmg-cta-box { padding: 2rem 1.5rem; text-align: center; }
    .mmg-cta-box h2 { font-size: 1.7rem; }
    .mmg-intro-image img { height: 280px; }
    .mmg-support-visual img { height: 280px; }
}

/* ============================================================
   FITSICALITY — FITNESS / WELLNESS INNER PAGE
   Only genuinely new styles — everything else reuses existing classes
   ============================================================ */

/* Inner hero — new background image only, structure reuses .mmg-inner-hero pattern */
.fit-inner-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.fit-inner-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(74,48,112,0.72) 100%);
    z-index: 1;
}

.fit-inner-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Quote callout block */
.fit-callout {
    position: relative;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    padding: 1.4rem 1.4rem 1.4rem 2.4rem;
    margin-top: 1.2rem;
    box-shadow: 0 4px 20px rgba(107,79,160,0.08);
}

.fit-callout p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

.fit-quote-icon {
    position: absolute;
    top: 0.9rem;
    left: 0.7rem;
    font-size: 1.1rem;
    color: var(--accent-color);
    opacity: 0.5;
}

/* Pillar bullet list inside division-card */
.fit-pillar-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

.fit-pillar-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 3px 0 3px 16px;
    position: relative;
}

.fit-pillar-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Ghost outline link for CTA */
.fit-cta-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 11px 26px;
    border-radius: 50px;
    gap: 8px;
    transition: all 0.3s ease;
}

.fit-cta-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

@media (max-width: 767px) {
    .fit-inner-hero { height: 55vh; min-height: 360px; }
}
/* ============================================================
   BUSINESS PARTNERSHIPS INNER PAGE
   Only 2 new rules — hero background image differs from other pages
   ============================================================ */

.biz-inner-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.biz-inner-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(74,48,112,0.72) 100%);
    z-index: 1;
}

.biz-inner-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

@media (max-width: 767px) {
    .biz-inner-hero { height: 55vh; min-height: 360px; }
}
.blog-card {
    border-radius: 14px !important;
    transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
}
.blog-card-img {
    transition: transform .4s;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}
/* ── Blog Sidebar ── */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.sidebar-widget-divider {
    height: 3px;
    width: 40px;
    background: var(--primary-color, #0d6efd);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

/* Sidebar Post Item */
.sidebar-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-post:last-of-type {
    border-bottom: none;
}

.sidebar-post-img {
    flex-shrink: 0;
    width: 75px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post:hover .sidebar-post-img img {
    transform: scale(1.05);
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color, #0d6efd);
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.3s;
}

.sidebar-post-title:hover { color: var(--primary-color, #0d6efd); }

.sidebar-post-date {
    font-size: 0.75rem;
    color: #999;
    margin: 0.3rem 0 0;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-categories li:last-child { border-bottom: none; }

.sidebar-categories li a {
    display: block;
    padding: 0.6rem 0;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-categories li a:hover {
    color: var(--primary-color, #0d6efd);
    padding-left: 5px;
}

/* Blog Content Styling */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-content p {
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: #444;
}

.blog-content ul, .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.blog-content ul li, .blog-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}