/*
Theme Name: MMG Travel
Theme URI: https://mmg-travel.local
Author: MMG Travel
Author URI: https://mmg-travel.local
Description: Child theme of Twenty Twenty-Five for MMG Travel. Customize styles and templates here without modifying the parent theme.
Template: twentytwentyfive
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mmg-travel
*/

:root {
	--mmg-orange: #f17029;
	--mmg-orange-soft: #f6a26f;
	--mmg-orange-dark: #c95a1a;
	--mmg-green: #8ec14a;
	--mmg-red: #e72041;
	--mmg-yellow: #fcd116;
	--mmg-ink: #0f1217;
	--mmg-ink-soft: #475467;
	--mmg-bg: #f6f7f8;
	--mmg-white: #ffffff;
	--mmg-border: #d9dee6;
	--mmg-contact-bg: #1a1e26;
	--mmg-contact-card: #252b36;
	--mmg-input-bg: rgba(255, 255, 255, 0.06);
	--mmg-input-border: rgba(255, 255, 255, 0.2);
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
}

body {
	background: var(--mmg-bg);
	color: var(--mmg-ink);
}

.mmg-home {
	font-family: "Inter", "Segoe UI", system-ui, sans-serif;
	line-height: 1.5;
	max-width: 100%;
	overflow-x: hidden;
}

.mmg-container {
	width: min(1200px, 92%);
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Topbar */
.mmg-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	z-index: 20;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.mmg-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.mmg-brand img {
	width: 168px;
	height: auto;
	display: block;
}

.mmg-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.mmg-nav a {
	color: var(--mmg-white);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
}

.mmg-nav a:hover {
	color: var(--mmg-orange-soft);
}

/* Hamburger toggle — hidden on desktop */
.mmg-nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	color: var(--mmg-white);
	width: 44px;
	height: 44px;
	padding: 0;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	border-radius: 8px;
	transition: background 0.2s;
}

.mmg-nav-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mmg-nav-toggle[aria-expanded="true"] .mmg-nav-toggle-open {
	display: none;
}

.mmg-nav-toggle[aria-expanded="true"] .mmg-nav-toggle-close {
	display: inline-flex !important;
}

.mmg-nav-toggle-close {
	display: none;
}

/* Hero: full-bleed image + centered title + search bar at bottom */
.mmg-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--mmg-ink);
	background-size: cover;
	background-position: center;
	color: var(--mmg-white);
	padding: 6rem 0 0;
}

.mmg-hero-inner {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 2rem 0;
}

.mmg-hero-content {
	text-align: center;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

.mmg-hero h1 {
	margin: 0;
	font-size: clamp(3rem, 10vw, 5.5rem);
	letter-spacing: -0.03em;
	line-height: 1;
	font-weight: 700;
}

.mmg-hero-tagline {
	margin-top: 1.25rem;
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	opacity: 0.95;
	line-height: 1.4;
}

/* Hero search bar: orange bar, white text, Explore button */
.mmg-hero-search-bar {
	background: rgba(241, 112, 41, 0.95);
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mmg-hero-search-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1rem;
}

.mmg-hero-search-field {
	flex: 1;
	min-width: 140px;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.mmg-hero-search-field label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.mmg-hero-search-field input {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	color: var(--mmg-white);
	font-size: 0.95rem;
}

.mmg-hero-search-field input::placeholder {
	color: rgba(255, 255, 255, 0.85);
}

.mmg-hero-search-field input:focus {
	outline: none;
	border-color: var(--mmg-white);
	background: rgba(255, 255, 255, 0.25);
}

.mmg-hero-search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mmg-white);
	color: var(--mmg-ink);
	padding: 0.85rem 1.75rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mmg-hero-search-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Section defaults */
.mmg-section {
	padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.mmg-section-white {
	background: var(--mmg-white);
}

.mmg-section-soft {
	background: #eef2f6;
}

.mmg-section-head {
	margin-bottom: 2rem;
}

.mmg-label {
	color: var(--mmg-orange);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.78rem;
	margin-bottom: 0.45rem;
}

.mmg-section h2 {
	margin: 0;
	font-size: clamp(1.7rem, 4.2vw, 3rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
}

/* Going Places + vibe section */
.mmg-going-places-head {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.mmg-badges {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
}

.mmg-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.95rem;
	color: var(--mmg-ink);
	font-weight: 600;
}

.mmg-badge-icon {
	color: var(--mmg-orange);
	font-size: 1.1rem;
}

.mmg-going-places-title {
	margin: 0;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-align: center;
	font-weight: 500;
}

.mmg-going-places-highlight {
	position: relative;
	display: inline-block;
	font-style: normal;
}

.mmg-going-places-line {
	width: 200px;
	height: 1px;
	margin: 1.5rem auto 4rem;
	background: repeating-linear-gradient(90deg, var(--mmg-ink-soft) 0, var(--mmg-ink-soft) 4px, transparent 4px, transparent 8px);
	position: relative;
}

.mmg-going-places-line::after {
	content: '';
	position: absolute;
	right: -10px;
	top: -6px;
	width: 14px;
	height: 14px;
	border: 2px solid var(--mmg-ink-soft);
	border-radius: 50%;
	background: var(--mmg-white);
}

.mmg-going-places-line::before {
	content: '';
	position: absolute;
	right: -6px;
	top: -2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mmg-ink-soft);
}

.mmg-vibe-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 4rem;
	align-items: end;
}

.mmg-vibe-content {
	padding-bottom: 2rem;
}

.mmg-vibe-content .mmg-label {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--mmg-border);
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
	font-size: 0.75rem;
	color: var(--mmg-ink);
	margin-bottom: 1.5rem;
	background: transparent;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 500;
}

.mmg-vibe-content .mmg-label::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--mmg-orange);
	border-radius: 50%;
	margin-right: 0.4rem;
}

.mmg-vibe-heading {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3vw, 2.5rem);
	line-height: 1.1;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.mmg-vibe-text {
	margin: 0 0 2rem;
	color: var(--mmg-ink-soft);
	font-size: 1rem;
	line-height: 1.6;
	max-width: 280px;
}

.mmg-vibe-cards {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 1.5rem;
	align-items: end;
}

.mmg-vibe-card {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	height: max-content;
}

.mmg-vibe-card:nth-child(1) img {
	height: 380px;
	width: 280px;
}
.mmg-vibe-card:nth-child(2) img {
	height: 280px;
	width: 200px;
}
.mmg-vibe-card:nth-child(3) img {
	height: 200px;
	width: 160px;
}

.mmg-vibe-card img {
	width: 100%;
	object-fit: cover;
	display: block;
}

.mmg-vibe-card-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 1.25rem 1rem;
	background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.mmg-vibe-card-caption strong {
	font-size: 1.05rem;
	color: var(--mmg-white);
	font-weight: 600;
}

.mmg-vibe-card-caption span {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.8);
}

/* Pick the Place */
.mmg-pick-head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	align-items: end;
	margin-bottom: 2.5rem;
}

.mmg-pick-head-left {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.mmg-label-outlined {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--mmg-border);
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
	font-size: 0.75rem;
	color: var(--mmg-ink);
	align-self: flex-start;
	background: var(--mmg-white);
}

.mmg-label-outlined::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--mmg-orange);
	border-radius: 50%;
	margin-right: 0.4rem;
}

.mmg-pick-title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: -0.02em;
	font-weight: 700;
}

.mmg-pick-subtitle {
	margin: 0;
	color: var(--mmg-ink-soft);
	font-size: 1.05rem;
	max-width: 420px;
	line-height: 1.5;
	justify-self: end;
	text-align: right;
}

.mmg-pick-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1rem;
	margin-bottom: 2rem;
}

.mmg-pick-field {
	flex: 1;
	min-width: 140px;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.mmg-pick-field label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--mmg-ink-soft);
	font-weight: 600;
}

.mmg-pick-field input,
.mmg-pick-field select {
	background: var(--mmg-white);
	border: 1px solid var(--mmg-border);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	color: var(--mmg-ink);
	font-size: 0.95rem;
}

.mmg-pick-field input:focus,
.mmg-pick-field select:focus {
	outline: none;
	border-color: var(--mmg-orange);
}

.mmg-pick-btn {
	flex-shrink: 0;
}

.mmg-dest-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.mmg-dest-card {
	background: var(--mmg-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--mmg-border);
}

.mmg-dest-card-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.mmg-dest-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mmg-dest-rating {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--mmg-orange);
	color: var(--mmg-white);
	padding: 0.35rem 0.6rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
}

.mmg-dest-card-body {
	padding: 1.25rem;
}

.mmg-dest-card-body h3 {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.mmg-dest-location {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	color: var(--mmg-ink-soft);
}

.mmg-dest-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	font-size: 0.85rem;
	color: var(--mmg-ink-soft);
	margin-bottom: 0.5rem;
}

.mmg-dest-price {
	color: var(--mmg-orange);
	font-weight: 700;
}

.mmg-dest-details {
	margin: 0;
	font-size: 0.85rem;
	color: var(--mmg-ink-soft);
}

/* B2B pillars */
.mmg-pillars {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.mmg-card {
	background: var(--mmg-white);
	border: 1px solid var(--mmg-border);
	border-radius: 20px;
	padding: 1.35rem;
	box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
}

.mmg-card h3 {
	margin: 0 0 0.45rem;
	font-size: 1.1rem;
}

.mmg-card p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--mmg-ink-soft);
}

.mmg-dedicated-line {
	margin-top: 1.3rem;
	padding: 1rem 1.15rem;
	background: linear-gradient(100deg, rgba(241, 112, 41, 0.12), rgba(241, 112, 41, 0.03));
	border-left: 4px solid var(--mmg-orange);
	border-radius: 12px;
	font-weight: 600;
}

/* B2C service cards with images */
.mmg-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.mmg-service-card {
	background: var(--mmg-white);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--mmg-border);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.mmg-service-media {
	height: 220px;
	overflow: hidden;
}

.mmg-service-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mmg-service-card-content {
	padding: 1.25rem;
}

.mmg-service-card-content h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
}

.mmg-service-card-content p {
	margin: 0;
	font-size: 0.94rem;
	color: var(--mmg-ink-soft);
	line-height: 1.5;
}

/* Support — icons + typography */
.mmg-support-section .mmg-section-head .mmg-label {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.mmg-support-main-title {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem) !important;
	line-height: 1.25;
	margin-bottom: 0.5rem;
}

.mmg-support-layout {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 2rem;
}

.mmg-support-box {
	background: var(--mmg-white);
	border: 1px solid var(--mmg-border);
	border-radius: 18px;
	padding: 1.5rem;
}

.mmg-support-box-title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--mmg-ink);
}

.mmg-support-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.mmg-support-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--mmg-ink-soft);
}

.mmg-support-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 10px;
	background: rgba(241, 112, 41, 0.12);
	color: var(--mmg-orange);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

.mmg-flow {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.mmg-step {
	background: var(--mmg-white);
	border: 1px solid var(--mmg-border);
	border-radius: 16px;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.mmg-step-num {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--mmg-orange);
	color: var(--mmg-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.mmg-step-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--mmg-ink);
}

/* Team */
.mmg-founders {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.mmg-person-card,
.mmg-role-card,
.mmg-proof-card {
	background: var(--mmg-white);
	border: 1px solid var(--mmg-border);
	border-radius: 18px;
	padding: 1.25rem;
}

.mmg-avatar {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	color: var(--mmg-white);
	font-weight: 700;
	background: linear-gradient(140deg, var(--mmg-orange), var(--mmg-orange-dark));
}

.mmg-person-card h3 {
	margin: 0.8rem 0 0.3rem;
}

.mmg-role {
	margin: 0 0 0.5rem;
	color: var(--mmg-ink-soft);
	font-weight: 600;
}

.mmg-team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.mmg-role-card h3,
.mmg-proof-card h3 {
	margin-top: 0;
}

.mmg-proof-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

/* Partner logos slider — infinite smooth scroll, no dots */
.mmg-logos-slider {
	margin-top: 1.5rem;
	padding-bottom: 1rem;
	overflow: hidden;
}

.mmg-logos-slider .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear;
}

.mmg-logo-slide {
	height: 64px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mmg-white);
	border: 1px solid var(--mmg-border);
	border-radius: 12px;
	padding: 0.6rem 1rem;
	box-sizing: border-box;
}

.mmg-logo-slide img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	max-height: 36px;
}

/* Footer */
.mmg-footer {
	background: var(--mmg-ink);
	color: rgba(255, 255, 255, 0.85);
	padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 2.5rem);
}

.mmg-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2rem;
}

.mmg-footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	max-width: 360px;
}

.mmg-footer-logo {
	display: block;
}

.mmg-footer-logo img {
	height: 36px;
	width: auto;
	display: block;
	opacity: 0.95;
}

.mmg-footer-logo:hover img {
	opacity: 1;
}

.mmg-footer-tagline {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.mmg-footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
}

.mmg-footer-nav a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.2s;
}

.mmg-footer-nav a:hover {
	color: var(--mmg-orange);
}

.mmg-footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	max-width: 360px;
}

.mmg-footer-copy {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Contact: dark card, rounded inputs (reference form style) */
.mmg-section-contact {
	background: var(--mmg-contact-bg);
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.mmg-contact-inner {
	display: flex;
	justify-content: center;
}

.mmg-contact-card {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	background: var(--mmg-contact-card);
	border-radius: 24px;
	padding: clamp(2rem, 4vw, 3rem);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mmg-contact-title {
	color: var(--mmg-white);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	margin: 0 0 0.35rem;
	font-weight: 700;
}

.mmg-contact-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	margin: 0 0 1.25rem;
}

.mmg-form-notice {
	padding: 0.85rem 1rem;
	border-radius: 10px;
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
	font-weight: 500;
}

.mmg-form-notice--success {
	background: rgba(142, 193, 74, 0.2);
	color: #b8d96a;
	border: 1px solid rgba(142, 193, 74, 0.4);
}

.mmg-form-notice--error {
	background: rgba(231, 32, 65, 0.15);
	color: #f08090;
	border: 1px solid rgba(231, 32, 65, 0.35);
}

.mmg-tabs {
	display: inline-flex;
	border: 1px solid var(--mmg-input-border);
	border-radius: 14px;
	padding: 0.25rem;
	margin-bottom: 1.5rem;
	gap: 0.25rem;
}

.mmg-tab {
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.6rem 1.1rem;
	border-radius: 10px;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 500;
	transition: background 0.2s, color 0.2s;
}

.mmg-tab.is-active {
	background: var(--mmg-orange);
	color: var(--mmg-white);
}

.mmg-form.mmg-form-card {
	display: none;
}

.mmg-form.mmg-form-card.is-active {
	display: block;
}

.mmg-contact-form-card {
	max-width: 100%;
	box-sizing: border-box;
}

.mmg-form-card-icon {
	width: 56px;
	height: 56px;
	margin: 0 0 1rem;
	background: rgba(241, 112, 41, 0.2);
	border-radius: 14px;
	color: var(--mmg-orange);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.mmg-form-card-title {
	color: var(--mmg-white);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	margin: 0 0 0.35rem;
	font-weight: 700;
}

.mmg-form-card-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	margin: 0 0 1.25rem;
}

.mmg-form-option-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.mmg-form-option-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--mmg-input-border);
	border-radius: 14px;
	background: var(--mmg-input-bg);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	min-width: 0;
}

.mmg-form-option-row:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.25);
}

.mmg-form-option-row.is-selected,
.mmg-form-option-row:has(.mmg-form-option-input:checked) {
	background: rgba(241, 112, 41, 0.12);
	border-color: var(--mmg-orange);
}

.mmg-form-option-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mmg-form-option-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--mmg-orange);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
}

.mmg-form-option-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.mmg-form-option-title {
	color: var(--mmg-white);
	font-size: 1rem;
	font-weight: 600;
}

.mmg-form-option-desc {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.85rem;
}

.mmg-form-option-arrow {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.75rem;
	flex-shrink: 0;
}

.mmg-form-fields {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}

.mmg-form-row label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.mmg-form-row input,
.mmg-form-row select,
.mmg-form-row textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	background: var(--mmg-input-bg);
	border: 1px solid var(--mmg-input-border);
	border-radius: 10px;
	color: var(--mmg-white);
	font-size: 0.95rem;
	transition: border-color 0.2s, background 0.2s;
}

.mmg-form-row input::placeholder,
.mmg-form-row textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.mmg-form-row input:focus,
.mmg-form-row textarea:focus {
	outline: none;
	border-color: var(--mmg-orange);
	background: rgba(255, 255, 255, 0.08);
}

.mmg-form-row-double {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.mmg-input-with-icon .mmg-input-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--mmg-input-bg);
	border: 1px solid var(--mmg-input-border);
	border-radius: 10px;
	padding: 0 14px;
}

.mmg-input-with-icon .mmg-input-wrap:focus-within {
	border-color: var(--mmg-orange);
	background: rgba(255, 255, 255, 0.08);
}

.mmg-input-icon {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
}

.mmg-input-with-icon input {
	border: 0;
	background: transparent;
	padding: 12px 0;
}

.mmg-form-row-full {
	grid-column: 1 / -1;
}

.mmg-form-actions {
	margin-top: 0.5rem;
}

.mmg-btn-with-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.mmg-required {
	color: var(--mmg-orange);
}

.mmg-form-message {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--mmg-green);
	min-height: 1.5em;
}

.mmg-contact-next-steps {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin: 1.25rem 0 0;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.mmg-contact-next-steps i {
	color: var(--mmg-orange);
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.mmg-form-card .mmg-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.mmg-form-card .mmg-input-wrap label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.mmg-form-row-2 {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem;
	width: 100%;
}

.mmg-form-card .mmg-form-grid .mmg-input-wrap {
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.mmg-form-card .mmg-form-grid .mmg-input-wrap input,
.mmg-form-card .mmg-form-grid .mmg-input-wrap textarea {
	box-sizing: border-box;
	max-width: 100%;
}

.mmg-form-card input,
.mmg-form-card textarea {
	width: 100%;
	border: 1px solid var(--mmg-input-border);
	border-radius: 10px;
	background: var(--mmg-input-bg);
	color: var(--mmg-white);
	padding: 0.9rem 1rem;
	font-size: 0.95rem;
	transition: border-color 0.2s, outline 0.2s;
}

.mmg-form-card input::placeholder,
.mmg-form-card textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.mmg-form-card input:focus,
.mmg-form-card textarea:focus {
	outline: none;
	border-color: var(--mmg-orange);
	background: rgba(255,255,255,0.1);
}

.mmg-form-card textarea {
	resize: vertical;
	min-height: 120px;
}

/* Send button — primary orange, full width */
.mmg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.5rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.mmg-btn-primary {
	background: var(--mmg-orange);
	color: var(--mmg-white);
}

.mmg-btn-primary:hover {
	background: var(--mmg-orange-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(241, 112, 41, 0.35);
}

.mmg-btn-block {
	width: 100%;
	margin-top: 0.5rem;
}

.mmg-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255,255,255,0.8);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	cursor: pointer;
}

.mmg-checkbox a {
	color: var(--mmg-white);
	text-decoration: underline;
}

.mmg-checkbox input {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 4px;
	border: 1px solid var(--mmg-input-border);
	background: var(--mmg-input-bg);
	accent-color: var(--mmg-orange);
}

/* Responsive */
@media (max-width: 1080px) {
	.mmg-pillars,
	.mmg-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mmg-dest-cards {
		grid-template-columns: 1fr;
	}
	.mmg-service-grid,
	.mmg-proof-cards {
		grid-template-columns: 1fr;
	}
	.mmg-support-layout {
		grid-template-columns: 1fr;
	}
	.mmg-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mmg-vibe-grid {
		grid-template-columns: 1fr;
	}
	.mmg-vibe-cards {
		grid-template-columns: 1fr 1fr;
	}
	.mmg-vibe-card:nth-child(3) {
		display: none;
	}
	.mmg-pick-head {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.mmg-container {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
		box-sizing: border-box;
	}
	.mmg-topbar-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 0;
	}
	.mmg-nav-toggle {
		display: flex;
		position: relative;
		z-index: 21;
	}
	.mmg-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 18;
		background: var(--mmg-ink);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
		padding: 5rem 1.5rem 2rem;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}
	.mmg-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.mmg-nav a {
		display: block;
		padding: 0.75rem 0;
		font-size: 1.1rem;
		white-space: nowrap;
		color: var(--mmg-white);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		width: 100%;
	}
	.mmg-nav a:hover {
		color: var(--mmg-orange-soft);
	}
	.mmg-brand {
		position: relative;
		z-index: 21;
	}
	.mmg-brand img {
		width: 140px;
	}
	.mmg-hero {
		min-height: auto;
		padding-top: 7rem;
		padding-bottom: 0;
	}
	.mmg-hero-search-inner {
		flex-direction: column;
	}
	.mmg-hero-search-field {
		min-width: 100%;
	}
	.mmg-hero-search-btn {
		width: 100%;
	}
	.mmg-founders,
	.mmg-pillars,
	.mmg-team-grid,
	.mmg-form-card .mmg-form-grid {
		grid-template-columns: 1fr;
	}
	.mmg-pick-filters {
		flex-direction: column;
	}
	.mmg-pick-field {
		min-width: 100%;
	}
	.mmg-form-row-2,
	.mmg-form-row-double {
		grid-template-columns: 1fr;
	}
	.mmg-form-option-row {
		padding: 12px 14px;
	}
	.mmg-form-option-icon {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}
	.mmg-vibe-cards {
		grid-template-columns: 1fr;
	}
	.mmg-vibe-card:nth-child(1) {
		grid-column: 1 / -1;
	}
	.mmg-vibe-card:nth-child(2) {
		display: none;
	}
	.mmg-vibe-card:nth-child(3) {
		display: none;
	}
	.mmg-vibe-card:nth-child(1) img {
		height: 260px;
		width: 100%;
	}
	.mmg-service-media {
		height: 200px;
	}
}
