@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --2d6-primary: #ea580c;
    --2d6-secondary: #c2410c;
    --2d6-accent: #2563eb;
    --2d6-background: #fff7ed;
    --2d6-text: #431407;
    --2d6-muted: #fb923c;
    --2d6-light-gray: #f8f8f8;
    --2d6-dark-gray: #333;
    --2d6-border-color: #e0e0e0;
    --2d6-transition-speed: 0.3s;
    --2d6-border-radius: 8px;
}

/* Base Reset & Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--2d6-text);
    background-color: var(--2d6-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    background-color: var(--2d6-primary);
    color: var(--2d6-background);
}

::selection {
    background-color: var(--2d6-primary);
    color: var(--2d6-background);
}

a {
    color: var(--2d6-primary);
    text-decoration: none;
    transition: color var(--2d6-transition-speed) ease;
}

a:hover {
    color: var(--2d6-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--2d6-text);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75em;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
}

p {
    margin-bottom: 1em;
    font-size: 1.1rem;
}

ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

/* Utility Classes */
.mx-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mx-flex {
    display: flex;
    gap: 1rem;
}

.mx-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mx-text-center {
    text-align: center;
}

.mx-section-padding {
    padding: 5rem 0;
}

.mx-section-padding-large {
    padding: 8rem 0;
}

.mx-bg-light {
    background-color: var(--2d6-light-gray);
}

.mx-bg-primary {
    background-color: var(--2d6-primary);
    color: #fff;
}

.mx-bg-primary h1, .mx-bg-primary h2, .mx-bg-primary h3, .mx-bg-primary h4, .mx-bg-primary p {
    color: #fff;
}

.mx-rounded-full {
    border-radius: 9999px;
}

.mx-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--2d6-border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--2d6-transition-speed) ease, transform var(--2d6-transition-speed) ease, box-shadow var(--2d6-transition-speed) ease;
    text-decoration: none;
    border: none;
}

.mx-btn-primary {
    background-image: linear-gradient(to right, var(--2d6-primary) 0%, var(--2d6-secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mx-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.1);
    transition: transform var(--2d6-transition-speed) ease;
    transform: translateX(-100%);
    z-index: -1;
}

.mx-btn-primary:hover::after {
    transform: translateX(0%);
}

.mx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

.mx-btn-secondary {
    background-color: var(--2d6-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.mx-btn-secondary:hover {
    background-color: #1e5ddb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

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

.mx-btn-outline:hover {
    background-color: var(--2d6-primary);
    color: white;
    transform: translateY(-2px);
}

.mx-btn:focus {
    outline: 2px solid var(--2d6-accent);
    outline-offset: 3px;
}

/* Header & Navigation */
.mx-header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

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

.mx-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--2d6-primary);
    display: flex;
    align-items: center;
}

.mx-logo img {
    height: 40px;
    margin-right: 10px;
}

.mx-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-nav-menu li {
    margin-left: 2rem;
}

.mx-nav-menu a {
    color: var(--2d6-text);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.mx-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--2d6-primary);
    transition: width var(--2d6-transition-speed) ease;
}

.mx-nav-menu a:hover::after {
    width: 100%;
}

.mx-hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--2d6-primary);
    border: none;
    background: transparent;
    padding: 0;
}

/* Mobile Menu */
.mx-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px; /* Hidden off-screen */
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right var(--2d6-transition-speed) ease-in-out;
    z-index: 1001;
    padding-top: 6rem;
    padding-left: 1.5rem;
}

.mx-mobile-nav.is-active {
    right: 0;
}

.mx-mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mx-mobile-nav li {
    margin-bottom: 1.5rem;
}

.mx-mobile-nav a {
    color: var(--2d6-text);
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
}

.mx-mobile-nav .mx-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--2d6-primary);
    cursor: pointer;
}

/* Hero Section */
.mx-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-color: var(--2d6-primary);
}

.mx-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.85) 0%, rgba(194, 65, 12, 0.85) 100%), url('https://loremflickr.com/1400/800/diy%2Ccraft/all?lock=264533988') center/cover no-repeat;
    z-index: -2;
}

.mx-hero-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--2d6-muted);
    opacity: 0.2;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-animation 15s infinite alternate;
    z-index: -1;
}

@keyframes blob-animation {
    0% { transform: scale(1) translate(0, 0); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: scale(1.05) translate(5%, -5%); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { transform: scale(1) translate(0, 0); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.mx-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.mx-hero-content h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.mx-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Sections */
.mx-section {
    padding: 5rem 0;
    position: relative;
}

.mx-section:nth-of-type(even) {
    background-color: var(--2d6-light-gray);
}

.mx-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mx-section-header p {
    font-size: 1.2rem;
    color: var(--2d6-dark-gray);
}

/* Feature Cards */
.mx-card {
    background-color: #fff;
    border-radius: var(--2d6-border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform var(--2d6-transition-speed) ease, box-shadow var(--2d6-transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mx-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mx-card-icon {
    font-size: 3rem;
    color: var(--2d6-primary);
    margin-bottom: 1rem;
}

.mx-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--2d6-border-radius);
    margin-bottom: 1.5rem;
}

.mx-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.mx-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--2d6-dark-gray);
}

/* Testimonial Cards */
.mx-testimonial-card {
    background-color: #fff;
    border-radius: var(--2d6-border-radius);
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
}

.mx-testimonial-card::before {
    content: '“';
    font-size: 6rem;
    color: var(--2d6-muted);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.mx-testimonial-quote {
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--2d6-text);
}

.mx-testimonial-author {
    font-weight: 700;
    color: var(--2d6-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.mx-testimonial-role {
    font-size: 0.9rem;
    color: var(--2d6-dark-gray);
}

/* Benefits Circles */
.mx-benefit-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mx-benefit-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--2d6-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    border: 5px solid var(--2d6-secondary);
}

.mx-benefit-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.mx-benefit-item p {
    font-size: 1rem;
    color: var(--2d6-dark-gray);
}

/* FAQ Section */
.mx-faq-item {
    background-color: #fff;
    border-radius: var(--2d6-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mx-faq-q {
    padding: 1.2rem 1.8rem;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--2d6-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fcfcfc;
    transition: background-color var(--2d6-transition-speed) ease;
}

.mx-faq-q:hover {
    background-color: #f5f5f5;
}

.mx-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--2d6-primary);
    transition: transform var(--2d6-transition-speed) ease;
}

.mx-faq-item.active .mx-faq-q::after {
    content: '-';
    transform: rotate(180deg);
}

.mx-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--2d6-transition-speed) ease-in-out;
    padding: 0 1.8rem;
}

.mx-faq-item.active .mx-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding-bottom: 1.5rem;
}

.mx-faq-a p {
    padding-top: 1rem;
    font-size: 1rem;
    color: var(--2d6-dark-gray);
}

/* Trust Badges */
.mx-trust-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(234, 88, 12, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    color: var(--2d6-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color var(--2d6-transition-speed) ease;
}

.mx-trust-badge:hover {
    background-color: rgba(234, 88, 12, 0.2);
}

.mx-trust-badge i {
    color: var(--2d6-primary);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* Forms */
.mx-form-group {
    margin-bottom: 1.5rem;
}

.mx-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--2d6-text);
}

.mx-form-group input[type='text'],
.mx-form-group input[type='email'],
.mx-form-group input[type='tel'],
.mx-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--2d6-border-color);
    border-radius: var(--2d6-border-radius);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--2d6-text);
    background-color: #fff;
    transition: border-color var(--2d6-transition-speed) ease, box-shadow var(--2d6-transition-speed) ease;
}

.mx-form-group input:focus,
.mx-form-group textarea:focus {
    border-color: var(--2d6-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.mx-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.mx-form-message.mx-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: var(--2d6-border-radius);
    margin-top: 1.5rem;
    display: none;
}

.mx-form-message.mx-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: var(--2d6-border-radius);
    margin-top: 1.5rem;
    display: none;
}

.mx-form-message.mx-loading {
    background-color: #ffeeba;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 1rem;
    border-radius: var(--2d6-border-radius);
    margin-top: 1.5rem;
    display: none;
}

/* Footer */
.mx-footer {
    background-color: var(--2d6-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    text-align: center;
}

.mx-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mx-footer-col h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.mx-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mx-footer-col ul li {
    margin-bottom: 0.8rem;
}

.mx-footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--2d6-transition-speed) ease;
}

.mx-footer-col ul li a:hover {
    color: var(--2d6-primary);
}

.mx-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mx-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    transition: color var(--2d6-transition-speed) ease, transform var(--2d6-transition-speed) ease;
}

.mx-social-icons a:hover {
    color: var(--2d6-primary);
    transform: translateY(-3px);
}

.mx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.mx-footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.mx-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mx-animate.mx-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Visual Separators (example: section alternating backgrounds) */
.mx-section:nth-of-type(odd) {
    background-color: var(--2d6-background);
}

.mx-section:nth-of-type(even) {
    background-color: var(--2d6-light-gray);
}

/* Contact Page Specific */
.mx-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.mx-contact-info h3 {
    margin-bottom: 1.5rem;
}

.mx-contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.mx-contact-info i {
    color: var(--2d6-primary);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 25px;
}

.mx-contact-form-wrapper {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--2d6-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Privacy & Terms Pages */
.mx-legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--2d6-primary);
}

.mx-legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--2d6-secondary);
}

.mx-legal-content p, .mx-legal-content ul, .mx-legal-content ol {
    margin-bottom: 1.2em;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mx-nav-menu {
        display: none;
    }

    .mx-hamburger {
        display: block;
    }

    .mx-navbar .mx-btn-primary {
        display: none; /* Hide CTA button in header for smaller screens */
    }

    .mx-hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .mx-hero-content p {
        font-size: 1.1rem;
    }

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

    .mx-contact-grid {
        grid-template-columns: 1fr;
    }

    .mx-footer-content {
        grid-template-columns: 1fr;
    }

    .mx-footer-col {
        text-align: center;
    }

    .mx-footer-col ul {
        text-align: center;
        padding: 0;
    }

    .mx-footer-col ul li {
        display: inline-block;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .mx-section-padding {
        padding: 3rem 0;
    }

    .mx-section-padding-large {
        padding: 5rem 0;
    }

    h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .mx-hero {
        min-height: 60vh;
    }

    .mx-hero-content p {
        font-size: 1rem;
    }

    .mx-card {
        padding: 1.5rem;
    }

    .mx-testimonial-card {
        padding: 2rem 1.5rem;
    }

    .mx-benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .mx-faq-q {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .mx-faq-a p {
        padding-top: 0.8rem;
    }

    .mx-mobile-nav {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .mx-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    p {
        font-size: 0.95rem;
    }

    .mx-btn {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }

    .mx-hero-content {
        padding: 1rem;
    }

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

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

    .mx-trust-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin: 0.3rem;
    }

    .mx-trust-badge i {
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }

    .mx-footer-col ul li {
        display: block;
        margin: 0.5rem 0;
    }

    .mx-social-icons {
        gap: 1rem;
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

@keyframes mxFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.mx-animate { opacity: 0; }
.mx-animate.mx-visible { animation: mxFadeInUp 0.6s ease forwards; }