/**
 * MyTheme Builder - Frontend Styles
 * Styles for rendered builder content on the frontend
 */

/* Section */
.mtc-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.mtc-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mtc-section-inner.full-width {
    max-width: none;
    padding: 0;
}

.mtc-section-inner.boxed {
    max-width: 1200px;
    padding: 0 20px;
}

.mtc-wrap.full-width {
    max-width: none;
}

.mtc-wrap.boxed {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.mtc-wrap-inner {
    width: 100%;
}

/* Wrap / Columns */
.mtc-wrap {
    width: 100%;
}

/* The actual grid container is .mtc-wrap-content */
.mtc-wrap-content {
    display: grid;
    gap: 20px;
    width: 100%;
}

.mtc-wrap.mtc-columns-1 .mtc-wrap-content { grid-template-columns: 1fr; }
.mtc-wrap.mtc-columns-2 .mtc-wrap-content { grid-template-columns: repeat(2, 1fr); }
.mtc-wrap.mtc-columns-3 .mtc-wrap-content { grid-template-columns: repeat(3, 1fr); }
.mtc-wrap.mtc-columns-4 .mtc-wrap-content { grid-template-columns: repeat(4, 1fr); }
.mtc-wrap.mtc-columns-5 .mtc-wrap-content { grid-template-columns: repeat(5, 1fr); }
.mtc-wrap.mtc-columns-6 .mtc-wrap-content { grid-template-columns: repeat(6, 1fr); }

.mtc-column {
    min-width: 0; /* Prevents grid overflow */
}

/* Column width support - auto width columns take only needed space */
.mtc-wrap .mtc-column[style*="width: auto"] {
    width: auto;
    max-width: 100%;
}

/* Content-sized column helpers */
.mtc-column.mtc-col-content .mtc-menu-wrapper,
.mtc-column.mtc-col-content .mtc-menu-container,
.mtc-column.mtc-col-content .mtc-image,
.mtc-column.mtc-col-content .mtc-button-wrapper {
    width: auto !important;
    max-width: none !important;
    display: inline-flex !important;
    align-items: center;
}

.mtc-column.mtc-col-content .mtc-menu {
    justify-content: flex-start;
}

/* Logo / image overrides for content-sized columns */
.mtc-column.mtc-col-content .mtc-logo-wrapper img,
.mtc-column.mtc-col-content .mtc-image img {
    width: auto !important;
    max-height: 60px !important;
    height: auto !important;
    display: block !important;
}

/* Menu styles */
.mtc-menu-wrapper {
    width: 100%;
    position: relative;
}

.mtc-menu-container {
    width: 100%;
}

.mtc-menu,
.mtc-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.mtc-menu.mtc-menu-horizontal,
.mtc-menu.mtc-menu-horizontal ul {
    flex-direction: row;
}

.mtc-menu.mtc-menu-vertical,
.mtc-menu.mtc-menu-vertical ul {
    flex-direction: column;
}

.mtc-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mtc-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.mtc-menu a:hover {
    opacity: 0.8;
}

/* Hamburger Menu Button */
.mtc-menu-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mtc-menu-hamburger:hover {
    opacity: 0.8;
}

.mtc-menu-hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.mtc-menu-hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mtc-menu-hamburger.active .mtc-menu-hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mtc-menu-hamburger.active .mtc-menu-hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mtc-menu-hamburger.active .mtc-menu-hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop: Show menu items, hide hamburger (above 1024px) */
/* Tablet/Mobile: Show hamburger, hide menu items (below 1024px) */
/* BUT: Always show menus in builder for editing */

/* Desktop - Show menu, hide hamburger */
@media (min-width: 1025px) {
    body:not(.mtc-builder-body) .mtc-menu-wrapper:not(.mtc-menu-always-visible) .mtc-menu {
        display: flex !important;
    }
    
    body:not(.mtc-builder-body) .mtc-menu-wrapper:not(.mtc-menu-always-visible) .mtc-menu-hamburger {
        display: none !important;
    }
}

/* Tablet and Mobile - Hide menu, show hamburger (below 1024px) */
@media (max-width: 1024px) {
    body:not(.mtc-builder-body) .mtc-menu-wrapper:not(.mtc-menu-always-visible) .mtc-menu {
        display: none !important;
    }
    
    body:not(.mtc-builder-body) .mtc-menu-wrapper:not(.mtc-menu-always-visible) .mtc-menu-hamburger {
        display: flex !important;
    }
}

/* Always visible menu - show menu items, hide hamburger (all devices) */
body:not(.mtc-builder-body) .mtc-menu-wrapper.mtc-menu-always-visible .mtc-menu {
    display: flex !important;
}

body:not(.mtc-builder-body) .mtc-menu-wrapper.mtc-menu-always-visible .mtc-menu-hamburger {
    display: none !important;
}

/* Mobile Menu Overlay */
.mtc-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mtc-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mtc-mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mtc-mobile-menu-panel.active {
    right: 0;
}

.mtc-mobile-menu-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.mtc-mobile-menu-panel-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #2d3436;
}

.mtc-mobile-menu-panel-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #2d3436;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.mtc-mobile-menu-panel-close:hover {
    background: #e0e0e0;
    color: #00b894;
}

.mtc-mobile-menu-panel-content {
    padding: 20px;
}

.mtc-mobile-menu-panel .mtc-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mtc-mobile-menu-panel .mtc-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.mtc-mobile-menu-panel .mtc-menu li:last-child {
    border-bottom: none;
}

.mtc-mobile-menu-panel .mtc-menu a {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    color: #2d3436;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mtc-mobile-menu-panel .mtc-menu a:hover {
    color: #00b894;
    opacity: 1;
}

/* Submenu in mobile panel */
.mtc-mobile-menu-panel .mtc-menu .sub-menu {
    display: none;
    padding-left: 20px;
    margin-top: 0;
    background: #f8f9fa;
}

.mtc-mobile-menu-panel .mtc-menu .sub-menu.active {
    display: block;
}

.mtc-mobile-menu-panel .mtc-menu .menu-item-has-children > a::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mtc-mobile-menu-panel .mtc-menu .menu-item-has-children.active > a::after {
    content: '−';
    transform: rotate(0deg);
}

/* Body lock when menu is open */
body.mtc-menu-open {
    overflow: hidden;
}

/* Header layout specific styles */
.mtc-section[data-section-type="header"] .mtc-wrap {
    align-items: center;
}

.mtc-section[data-section-type="header"] .mtc-column {
    display: flex;
    align-items: center;
}

.mtc-section[data-section-type="header"] .mtc-menu-wrapper {
    display: flex;
    justify-content: flex-end;
}

.mtc-section[data-section-type="header"] .mtc-logo-wrapper {
    display: flex;
    align-items: center;
}

/* WordPress default menu classes compatibility */
.menu.mtc-menu,
.menu.mtc-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

/* Hide on mobile */
.mtc-hide-mobile {
    display: block;
}

/* Hide on tablet */
.mtc-hide-tablet {
    display: block;
}

/* Hide on desktop */
.mtc-hide-desktop {
    display: block;
}

/* ==========================================================================
   Responsive Styles - Tablet and Mobile
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .mtc-section-inner {
        padding: 0 15px;
    }
    
    /* Responsive column adjustments for tablet */
    .mtc-wrap.mtc-columns-2 .mtc-wrap-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mtc-wrap.mtc-columns-3 .mtc-wrap-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mtc-wrap.mtc-columns-4 .mtc-wrap-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mtc-wrap.mtc-columns-5 .mtc-wrap-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mtc-wrap.mtc-columns-6 .mtc-wrap-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Adjust gap for better spacing on tablet */
    .mtc-wrap-content {
        gap: 15px;
    }
    
    /* Header layout adjustments for tablet */
    .mtc-section[data-section-type="header"] .mtc-wrap.mtc-columns-2 .mtc-wrap-content {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .mtc-section[data-section-type="header"] .mtc-menu-wrapper {
        justify-content: flex-end;
    }
    
    .mtc-section[data-section-type="header"] .mtc-menu.mtc-menu-horizontal {
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    
    /* Logo adjustments for tablet */
    .mtc-section[data-section-type="header"] .mtc-logo-wrapper img {
        max-height: 45px;
        width: auto;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    .mtc-section-inner {
        padding: 0 15px;
    }
    
    /* Mobile: All columns stack to single column */
    .mtc-wrap.mtc-columns-2 .mtc-wrap-content,
    .mtc-wrap.mtc-columns-3 .mtc-wrap-content,
    .mtc-wrap.mtc-columns-4 .mtc-wrap-content,
    .mtc-wrap.mtc-columns-5 .mtc-wrap-content,
    .mtc-wrap.mtc-columns-6 .mtc-wrap-content {
        grid-template-columns: 1fr !important;
    }
    
    /* Ensure columns take full width on mobile */
    .mtc-wrap .mtc-column {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Adjust gap for better spacing on mobile */
    .mtc-wrap-content {
        gap: 15px;
    }
    
    /* Mobile menu styles are handled by the main media query above */
    
    /* Mobile menu panel full width on small screens */
    .mtc-mobile-menu-panel {
        max-width: 100%;
    }
    
    /* Menu wrapper adjustments */
    .mtc-menu-wrapper {
        width: 100%;
    }
    
    .mtc-menu-container {
        width: 100%;
    }
    
    /* Header layout adjustments for mobile */
    .mtc-section[data-section-type="header"] .mtc-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .mtc-section[data-section-type="header"] .mtc-column {
        width: 100%;
        justify-content: space-between;
    }
    
    .mtc-section[data-section-type="header"] .mtc-menu-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
    
    .mtc-section[data-section-type="header"] .mtc-menu.mtc-menu-horizontal {
        width: 100%;
        flex-direction: column;
    }
    
    /* Logo adjustments for mobile */
    .mtc-section[data-section-type="header"] .mtc-logo-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
    
    .mtc-section[data-section-type="header"] .mtc-logo-wrapper img {
        max-height: 40px;
        width: auto;
    }
    
    /* Stack header elements vertically on mobile */
    .mtc-section[data-section-type="header"] .mtc-wrap.mtc-columns-2 .mtc-wrap-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mtc-section[data-section-type="header"] .mtc-wrap.mtc-columns-2 .mtc-wrap-content > .mtc-column:first-child {
        order: 1;
    }
    
    .mtc-section[data-section-type="header"] .mtc-wrap.mtc-columns-2 .mtc-wrap-content > .mtc-column:last-child {
        order: 2;
    }
}

/* ==========================================================================
   Header Templates - Modern Header 1
   ========================================================================== */
.mtc-header-modern-1 {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e0e0e0;
}

.mtc-header-modern-1 .mtc-logo-wrapper {
    display: flex;
    align-items: center;
}

.mtc-header-modern-1 .mtc-logo-wrapper img {
    max-height: 50px;
    width: auto;
    height: auto;
}

.mtc-header-modern-1 .mtc-menu-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.mtc-header-modern-1 .mtc-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.mtc-header-modern-1 .mtc-search-toggle {
    transition: all 0.3s;
}

.mtc-header-modern-1 .mtc-search-toggle:hover {
    color: #00b894;
    transform: scale(1.1);
}

.mtc-header-modern-1 .mtc-header-cta .mtc-button {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Modern Header 1 - Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .mtc-header-modern-1 .mtc-wrap.mtc-columns-3 .mtc-wrap-content {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    
    .mtc-header-modern-1 .mtc-logo-wrapper img {
        max-height: 45px;
    }
    
    .mtc-header-modern-1 .mtc-header-actions {
        gap: 10px;
    }
    
    .mtc-header-modern-1 .mtc-header-cta .mtc-button {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Modern Header 1 - Mobile */
@media (max-width: 768px) {
    .mtc-header-modern-1 .mtc-wrap.mtc-columns-3 .mtc-wrap-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mtc-header-modern-1 .mtc-logo-wrapper {
        justify-content: center;
        order: 1;
    }
    
    .mtc-header-modern-1 .mtc-logo-wrapper img {
        max-height: 40px;
    }
    
    .mtc-header-modern-1 .mtc-menu-wrapper {
        order: 3;
        width: 100%;
    }
    
    .mtc-header-modern-1 .mtc-header-actions {
        order: 2;
        justify-content: center;
        width: 100%;
    }
    
    .mtc-header-modern-1 .mtc-header-cta {
        flex: 1;
    }
    
    .mtc-header-modern-1 .mtc-header-cta .mtc-button {
        width: 100%;
        padding: 10px 20px;
    }
}

/* ==========================================================================
   Header Templates - Centered Header 1
   ========================================================================== */
.mtc-header-centered-1 {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e0e0e0;
}

.mtc-header-centered-1 .mtc-header-top-row {
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.mtc-header-centered-1 .mtc-header-contact {
    font-size: 13px;
}

.mtc-header-centered-1 .mtc-header-contact > div {
    white-space: nowrap;
}

.mtc-header-centered-1 .mtc-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mtc-header-centered-1 .mtc-logo-wrapper img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.mtc-header-centered-1 .mtc-header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mtc-header-centered-1 .mtc-header-social a {
    transition: all 0.3s;
}

.mtc-header-centered-1 .mtc-header-social a:hover {
    background: #00b894 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.mtc-header-centered-1 .mtc-header-menu-row {
    display: flex;
    justify-content: center;
}

.mtc-header-centered-1 .mtc-menu-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Centered Header 1 - Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .mtc-header-centered-1 .mtc-header-top-row .mtc-wrap.mtc-columns-3 .mtc-wrap-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 15px;
    }
    
    .mtc-header-centered-1 .mtc-header-contact {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .mtc-header-centered-1 .mtc-logo-wrapper img {
        max-height: 50px;
    }
    
    .mtc-header-centered-1 .mtc-header-social {
        gap: 8px;
    }
    
    .mtc-header-centered-1 .mtc-header-social a {
        width: 32px;
        height: 32px;
    }
}

/* Centered Header 1 - Mobile */
@media (max-width: 768px) {
    .mtc-header-centered-1 .mtc-header-top-row .mtc-wrap.mtc-columns-3 .mtc-wrap-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mtc-header-centered-1 .mtc-header-contact {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .mtc-header-centered-1 .mtc-header-contact > div {
        justify-content: center;
    }
    
    .mtc-header-centered-1 .mtc-logo-wrapper {
        order: 2;
    }
    
    .mtc-header-centered-1 .mtc-logo-wrapper img {
        max-height: 45px;
    }
    
    .mtc-header-centered-1 .mtc-header-social {
        order: 3;
        justify-content: center;
        width: 100%;
    }
    
    .mtc-header-centered-1 .mtc-header-menu-row {
        margin-top: 10px;
    }
    
    .mtc-header-centered-1 .mtc-menu-wrapper {
        width: 100%;
    }
}

/* Heading */
.mtc-heading {
    margin: 0 0 20px;
}

/* Text */
.mtc-text {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Button */
.mtc-button-wrapper {
    margin-bottom: 20px;
}

.mtc-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.mtc-button-primary {
    background: #00b894;
    color: #fff;
    border-color: #00b894;
}

.mtc-button-primary:hover {
    background: #00a383;
    border-color: #00a383;
}

.mtc-button-secondary {
    background: #2d3436;
    color: #fff;
    border-color: #2d3436;
}

.mtc-button-secondary:hover {
    background: #1e2324;
    border-color: #1e2324;
}

.mtc-button-outline {
    background: transparent;
    color: #00b894;
    border-color: #00b894;
}

.mtc-button-outline:hover {
    background: #00b894;
    color: #fff;
}

.mtc-button-small {
    padding: 8px 20px;
    font-size: 13px;
}

.mtc-button-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Image */
.mtc-image {
    margin-bottom: 20px;
}

.mtc-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all images are responsive */
.mtc-column img,
.mtc-wrap img,
.mtc-section img {
    max-width: 100%;
    height: auto;
}

/* Divider */
.mtc-divider {
    margin: 20px 0;
}

.mtc-divider hr {
    margin: 0 auto;
}

/* Spacer */
.mtc-spacer {
    display: block;
}

/* Icon */
.mtc-icon {
    margin-bottom: 20px;
}

/* Icon Box */
.mtc-icon-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 20px;
}

.mtc-icon-box-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00b894;
}

.mtc-icon-box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mtc-icon-box-content {
    color: #636e72;
}

/* List */
.mtc-list {
    margin-bottom: 20px;
}

.mtc-list ul,
.mtc-list ol {
    margin: 0;
    padding-left: 20px;
}

.mtc-list li {
    margin-bottom: 10px;
}

/* Accordion */
.mtc-accordion {
    margin-bottom: 20px;
}

.mtc-accordion-item {
    border: 1px solid #dfe6e9;
    margin-bottom: -1px;
}

.mtc-accordion-header {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mtc-accordion-header:hover {
    background: #f1f2f3;
}

.mtc-accordion-content {
    padding: 20px;
    display: none;
}

.mtc-accordion-item.active .mtc-accordion-content {
    display: block;
}

.mtc-accordion-icon {
    font-size: 20px;
    font-weight: 300;
    color: #00b894;
    transition: transform 0.3s;
}

.mtc-accordion-item.active .mtc-accordion-icon {
    transform: rotate(45deg);
}

/* Make accordion header a reset button style and ensure content animates correctly */
.mtc-accordion .mtc-accordion-header {
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mtc-accordion .mtc-accordion-title {
    font-weight: 600;
    color: #333;
}

.mtc-accordion .mtc-accordion-content {
    padding: 15px 20px;
    display: none;
    background: #fff;
    overflow: hidden;
}

/* Builder canvas specific (keeps visuals consistent inside editor) */
.mtc-canvas-content .mtc-accordion .mtc-accordion-header {
    background: #ffffff;
}

/* Tabs */
.mtc-tabs {
    margin-bottom: 20px;
}

.mtc-tabs-nav {
    display: flex;
    border-bottom: 2px solid #dfe6e9;
    margin-bottom: 20px;
}

.mtc-tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-weight: 500;
    color: #636e72;
}

.mtc-tab-button:hover,
.mtc-tab-button.active {
    color: #00b894;
    border-bottom-color: #00b894;
}

.mtc-tab-content {
    display: none;
}

.mtc-tab-content.active {
    display: block;
}

/* Blockquote */
.mtc-blockquote {
    margin: 20px 0;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #00b894;
}

.mtc-blockquote-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2d3436;
}

.mtc-blockquote-author {
    color: #636e72;
    font-weight: 500;
}

/* Counter */
.mtc-counter {
    text-align: center;
    margin-bottom: 20px;
}

.mtc-counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #00b894;
    line-height: 1;
    margin-bottom: 10px;
}

.mtc-counter-title {
    color: #636e72;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Countdown */
.mtc-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mtc-countdown-item {
    text-align: center;
    min-width: 80px;
}

.mtc-countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
}

.mtc-countdown-label {
    font-size: 12px;
    color: #636e72;
    text-transform: uppercase;
}

/* Progress Bar */
.mtc-progress-bar {
    margin-bottom: 20px;
}

.mtc-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mtc-progress-track {
    height: 10px;
    background: #dfe6e9;
    border-radius: 5px;
    overflow: hidden;
}

.mtc-progress-fill {
    height: 100%;
    background: #00b894;
    border-radius: 5px;
    transition: width 1s ease;
}

/* Pricing Table */
.mtc-pricing-table {
    background: #fff;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mtc-pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mtc-pricing-table.featured {
    border-color: #00b894;
    transform: scale(1.05);
}

.mtc-pricing-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mtc-pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 5px;
}

.mtc-pricing-period {
    color: #636e72;
    margin-bottom: 30px;
}

.mtc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.mtc-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f2f3;
}

/* Testimonial */
.mtc-testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-testimonial-content {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2d3436;
}

.mtc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mtc-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mtc-testimonial-name {
    font-weight: 600;
    color: #2d3436;
}

.mtc-testimonial-title {
    color: #636e72;
    font-size: 14px;
}

/* Team Member */
.mtc-team-member {
    text-align: center;
    margin-bottom: 20px;
}

.mtc-team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.mtc-team-position {
    color: #636e72;
    margin-bottom: 15px;
}

.mtc-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mtc-team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f3;
    border-radius: 50%;
    color: #636e72;
    transition: all 0.3s;
}

.mtc-team-social a:hover {
    background: #00b894;
    color: #fff;
}

/* Clients / Logo Grid */
.mtc-clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.mtc-client-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.mtc-client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.mtc-client-logo img {
    max-width: 100%;
    height: auto;
}

/* Video */
.mtc-video {
    position: relative;
    margin-bottom: 20px;
}

.mtc-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.mtc-video-wrapper iframe,
.mtc-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery */
.mtc-gallery {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.mtc-gallery-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-gallery-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.mtc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-gallery-item:hover img {
    transform: scale(1.05);
}

/* Slider */
.mtc-slider {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

/* Slider Styles */
.mtc-slider-style-full-width {
    width: 100%;
}

.mtc-slider-style-boxed {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mtc-slider-style-contained {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.mtc-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* Slider Track - for slide transition */
.mtc-slider-transition-slide .mtc-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.mtc-slider-transition-fade .mtc-slider-wrapper {
    display: block;
}

.mtc-slider-transition-fade .mtc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity var(--transition-speed, 500ms) ease;
}

.mtc-slider-transition-fade .mtc-slide.active {
    opacity: 1;
    position: relative;
}

.mtc-slider-transition-zoom .mtc-slider-wrapper {
    display: block;
}

.mtc-slider-transition-zoom .mtc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity var(--transition-speed, 500ms) ease, transform var(--transition-speed, 500ms) ease;
}

.mtc-slider-transition-zoom .mtc-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.mtc-slider-transition-fade-zoom .mtc-slider-wrapper {
    display: block;
}

.mtc-slider-transition-fade-zoom .mtc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity var(--transition-speed, 500ms) ease, transform var(--transition-speed, 500ms) ease;
}

.mtc-slider-transition-fade-zoom .mtc-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

/* Slide */
.mtc-slide {
    flex: 0 0 100%;
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
}

.mtc-slider-transition-slide .mtc-slide {
    display: block;
}

.mtc-slide.active {
    display: block;
}

.mtc-slide img,
.mtc-slide video,
.mtc-slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Overlay Styles */
.mtc-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.mtc-overlay-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.mtc-overlay-solid {
    background: rgba(0, 0, 0, 0.6);
}

.mtc-overlay-light {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
}

/* Content */
.mtc-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    color: #fff;
    z-index: 3;
    pointer-events: none;
}

.mtc-slide-content * {
    pointer-events: auto;
}

.mtc-slider-align-center .mtc-slide-content {
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.mtc-slider-align-right .mtc-slide-content {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
}

.mtc-slider-vertical-top .mtc-slide-content {
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 40px;
}

.mtc-slider-vertical-center .mtc-slide-content {
    justify-content: center;
}

.mtc-slider-vertical-bottom .mtc-slide-content {
    justify-content: flex-end;
    padding-top: 40px;
    padding-bottom: 80px;
}

.mtc-slide-content h2 {
    line-height: 1.2;
    margin-bottom: 15px;
}

.mtc-slide-content p {
    margin: 0;
    line-height: 1.6;
}

/* Buttons */
.mtc-slide-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.mtc-slide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mtc-button-outline {
    background: transparent !important;
    border: 2px solid;
}

.mtc-button-ghost {
    background: transparent !important;
    border: none !important;
}

/* Navigation Arrows */
.mtc-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.mtc-slider-nav button {
    pointer-events: all;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 24px;
    color: var(--arrow-color, #2d3436);
    background: var(--arrow-bg, rgba(255, 255, 255, 0.9));
    width: var(--arrow-size, 50px);
    height: var(--arrow-size, 50px);
}

.mtc-nav-default button {
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mtc-nav-square button {
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mtc-nav-minimal button {
    background: transparent;
    box-shadow: none;
    font-size: 32px;
}

.mtc-slider-nav button:hover {
    transform: scale(1.1);
    background: var(--arrow-bg, rgba(255, 255, 255, 1));
}

.mtc-slider-nav .mtc-slider-prev {
    left: 20px;
}

.mtc-slider-nav .mtc-slider-next {
    right: 20px;
}

/* Dots Navigation */
.mtc-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    z-index: 10;
}

.mtc-dots-bottom {
    position: relative;
    margin-top: 20px;
}

.mtc-dots-bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
    justify-content: flex-start;
}

.mtc-dots-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    justify-content: flex-end;
}

.mtc-dots-inside {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.mtc-slider-dot {
    width: var(--dots-size, 10px);
    height: var(--dots-size, 10px);
    border-radius: 50%;
    background: var(--dots-color, #ffffff);
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    padding: 0;
}

.mtc-slider-dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.mtc-slider-dot.active {
    background: var(--dots-active-color, #00b894);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .mtc-slider {
        min-height: var(--slider-height-mobile, 400px) !important;
    }
    
    .mtc-slide {
        min-height: var(--slider-height-mobile, 400px) !important;
    }
    
    .mtc-slide-content {
        padding: 40px 20px;
    }
    
    .mtc-slider-nav {
        padding: 0 10px;
    }
    
    .mtc-slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .mtc-dots-bottom-left,
    .mtc-dots-bottom-right {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        justify-content: center;
    }
}

/* Before/After */
.mtc-before-after {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.mtc-before-image,
.mtc-after-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mtc-before-image {
    z-index: 2;
}

.mtc-after-image {
    z-index: 1;
}

.mtc-before-image img,
.mtc-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mtc-ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 5;
}

.mtc-before-image .mtc-ba-label {
    left: 20px;
}

.mtc-after-image .mtc-ba-label {
    right: 20px;
}

.mtc-before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    cursor: ew-resize;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
}

.mtc-before-after-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #00b894;
}

.mtc-before-after-handle::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00b894;
    font-size: 20px;
    font-weight: bold;
}

/* Blog Posts Grid */
.mtc-blog-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-blog-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-blog-grid-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-blog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mtc-blog-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mtc-blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-blog-item:hover .mtc-blog-thumbnail img {
    transform: scale(1.05);
}

.mtc-blog-content {
    padding: 20px;
}

.mtc-blog-meta {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 10px;
}

.mtc-blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mtc-blog-title a {
    color: #2d3436;
    text-decoration: none;
}

.mtc-blog-title a:hover {
    color: #00b894;
}

.mtc-blog-excerpt {
    color: #636e72;
    font-size: 14px;
    line-height: 1.6;
}

/* Portfolio Grid */
.mtc-portfolio-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.mtc-portfolio-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-portfolio-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-portfolio-grid-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mtc-portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.mtc-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 184, 148, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mtc-portfolio-item:hover .mtc-portfolio-overlay {
    opacity: 1;
}

.mtc-portfolio-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.mtc-portfolio-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Shop Products Grid */
.mtc-products-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-products-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-products-grid-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-product-item {
    text-align: center;
}

.mtc-product-thumbnail {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.mtc-product-thumbnail img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.mtc-product-actions {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.mtc-product-item:hover .mtc-product-actions {
    opacity: 1;
}

.mtc-product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.mtc-product-price {
    color: #00b894;
    font-weight: 600;
}

.mtc-product-price del {
    color: #b2bec3;
    font-weight: 400;
    margin-right: 5px;
}

/* Map */
.mtc-map {
    margin-bottom: 20px;
}

.mtc-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Contact Form */
.mtc-contact-form {
    margin-bottom: 20px;
}

.mtc-form-group {
    margin-bottom: 20px;
}

.mtc-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.mtc-form-input,
.mtc-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.mtc-form-input:focus,
.mtc-form-textarea:focus {
    outline: none;
    border-color: #00b894;
}

.mtc-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Social Icons */
.mtc-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mtc-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f3;
    border-radius: 50%;
    color: #636e72;
    text-decoration: none;
    transition: all 0.3s;
}

.mtc-social-icon:hover {
    background: #00b894;
    color: #fff;
}

/* Code Block */
.mtc-code-block {
    background: #2d3436;
    color: #dfe6e9;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.mtc-code-block pre {
    margin: 0;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.5;
}

/* Divider Basic */
.mtc-divider-basic {
    margin: 20px 0;
}

.mtc-divider-basic hr {
    margin: 0 auto;
    border: none;
}

/* Fancy Divider */
.mtc-fancy-divider {
    margin: 30px 0;
    text-align: center;
}

.mtc-fancy-divider hr {
    margin: 0 auto;
    border: none;
}

/* Placeholder */
.mtc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dfe6e9;
    border-radius: 4px;
    color: #636e72;
    font-size: 14px;
}

/* Plain Text */
.mtc-plain-text {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Column Text */
.mtc-column-text {
    margin-bottom: 20px;
    line-height: 1.7;
    column-gap: 20px;
}

/* List Basic */
.mtc-list-basic {
    margin-bottom: 20px;
}

.mtc-list-basic ul,
.mtc-list-basic ol {
    margin: 0;
    padding-left: 20px;
}

.mtc-list-basic li {
    margin-bottom: 8px;
}

/* HTML */
.mtc-html {
    margin-bottom: 20px;
}

/* Breadcrumbs */
.mtc-breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list a {
    color: #636e72;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: #00b894;
}

.breadcrumb-list span {
    color: #2d3436;
}

/* Call to Action */
.mtc-call-to-action {
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.mtc-call-to-action h3 {
    margin-bottom: 15px;
    font-size: 28px;
}

.mtc-call-to-action p {
    margin-bottom: 20px;
    font-size: 16px;
}

.mtc-cta-button {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.mtc-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Read More */
.mtc-read-more-link,
.mtc-read-more-button {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mtc-read-more-link {
    color: #00b894;
}

.mtc-read-more-link:hover {
    color: #00a383;
}

.mtc-read-more-button {
    padding: 10px 25px;
    background: #00b894;
    color: #fff;
    border-radius: 4px;
}

.mtc-read-more-button:hover {
    background: #00a383;
    color: #fff;
}

/* Fancy Heading */
.mtc-fancy-heading {
    margin-bottom: 20px;
    position: relative;
}

.mtc-fancy-heading-underline::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00b894;
    margin-top: 10px;
}

.mtc-fancy-heading-gradient {
    background: linear-gradient(135deg, #00b894 0%, #0984e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icon Box Basic */
.mtc-icon-box-basic {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.mtc-icon-box-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.mtc-icon-box-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mtc-icon-box-description {
    color: #636e72;
    line-height: 1.6;
}

/* FAQ */
.mtc-faq {
    margin-bottom: 20px;
}

.mtc-faq-item {
    border: 1px solid #dfe6e9;
    margin-bottom: -1px;
    border-radius: 4px;
    overflow: hidden;
}

.mtc-faq-question {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.mtc-faq-question:hover {
    background: #f1f2f3;
}

.mtc-faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.mtc-faq-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #00b894;
    transition: transform 0.3s;
}

.mtc-faq-item.active .mtc-faq-toggle {
    transform: rotate(45deg);
}

.mtc-faq-answer {
    padding: 20px;
    background: #fff;
    line-height: 1.7;
}

.mtc-faq-item.active .mtc-faq-answer {
    display: block;
}

/* Feature Box */
.mtc-feature-box {
    display: block;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.mtc-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mtc-feature-icon {
    font-size: 40px;
    color: #00b894;
    margin-bottom: 15px;
    display: block;
}

.mtc-feature-box h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-feature-box p {
    color: #636e72;
    margin: 0;
}

/* Feature List */
.mtc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.mtc-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f2f3;
}

.mtc-feature-list li:last-child {
    border-bottom: none;
}

.mtc-feature-list .mtc-feature-icon {
    font-size: 20px;
    color: #00b894;
    margin: 0;
}

/* Info Box */
.mtc-info-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mtc-info-box-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.mtc-info-box-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.mtc-info-box-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.mtc-info-box-error {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.mtc-info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mtc-info-box-info .mtc-info-icon {
    color: #2196f3;
}

.mtc-info-box-success .mtc-info-icon {
    color: #4caf50;
}

.mtc-info-box-warning .mtc-info-icon {
    color: #ff9800;
}

.mtc-info-box-error .mtc-info-icon {
    color: #f44336;
}

.mtc-info-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.mtc-info-content p {
    margin: 0;
    color: #636e72;
}

/* Toggle */
.mtc-toggle {
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.mtc-toggle-header {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.mtc-toggle-header:hover {
    background: #f1f2f3;
}

.mtc-toggle-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.mtc-toggle-icon {
    font-size: 20px;
    font-weight: 300;
    color: #00b894;
    transition: transform 0.3s;
}

.mtc-toggle.active .mtc-toggle-icon {
    transform: rotate(45deg);
}

.mtc-toggle-content {
    padding: 20px;
    background: #fff;
    line-height: 1.7;
}

/* Quick Fact */
.mtc-quick-fact {
    text-align: center;
    padding: 30px;
    margin-bottom: 20px;
}

.mtc-quick-fact-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.mtc-quick-fact-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.mtc-quick-fact-label {
    color: #636e72;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Share */
.mtc-share {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mtc-share-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f3;
    border-radius: 50%;
    color: #636e72;
    text-decoration: none;
    transition: all 0.3s;
}

.mtc-share-link:hover {
    background: #00b894;
    color: #fff;
    transform: translateY(-2px);
}

/* Progress Bars */
.mtc-progress-bars {
    margin-bottom: 20px;
}

.mtc-progress-bar-item {
    margin-bottom: 20px;
}

.mtc-progress-bar-item:last-child {
    margin-bottom: 0;
}

.mtc-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.mtc-progress-bar-wrapper {
    height: 10px;
    background: #dfe6e9;
    border-radius: 5px;
    overflow: hidden;
}

.mtc-progress-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease;
}

/* Pricing Item */
.mtc-pricing-item {
    background: #fff;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.mtc-pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mtc-pricing-item.mtc-pricing-featured {
    border-color: #00b894;
    border-width: 2px;
    transform: scale(1.05);
}

.mtc-pricing-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mtc-pricing-price {
    margin-bottom: 10px;
}

.mtc-price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #00b894;
}

.mtc-price-period {
    color: #636e72;
    font-size: 14px;
}

.mtc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.mtc-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f2f3;
}

.mtc-pricing-features li:last-child {
    border-bottom: none;
}

.mtc-pricing-button {
    display: inline-block;
    padding: 12px 30px;
    background: #00b894;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.mtc-pricing-button:hover {
    background: #00a383;
    color: #fff;
}

/* Article Box */
.mtc-article-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.mtc-article-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mtc-article-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mtc-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-article-box:hover .mtc-article-image img {
    transform: scale(1.05);
}

.mtc-article-content {
    padding: 20px;
}

.mtc-article-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-article-content h3 a {
    color: #2d3436;
    text-decoration: none;
}

.mtc-article-content h3 a:hover {
    color: #00b894;
}

.mtc-article-content p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Banner Box */
.mtc-banner-box {
    position: relative;
    padding: 80px 40px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.mtc-banner-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.mtc-banner-content {
    position: relative;
    z-index: 1;
}

.mtc-banner-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.mtc-banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
}

.mtc-banner-button {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #2d3436;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.mtc-banner-button:hover {
    background: #00b894;
    color: #fff;
}

/* Contact Box */
.mtc-contact-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-contact-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.mtc-contact-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mtc-contact-box p:last-child {
    margin-bottom: 0;
}

.mtc-contact-box .dashicons {
    color: #00b894;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.mtc-contact-box a {
    color: #2d3436;
    text-decoration: none;
}

.mtc-contact-box a:hover {
    color: #00b894;
}

/* Flat Box */
.mtc-flat-box {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-flat-box-icon {
    font-size: 40px;
    color: #00b894;
    margin-bottom: 15px;
    display: block;
}

.mtc-flat-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.mtc-flat-box p {
    color: #636e72;
    margin: 0;
    line-height: 1.6;
}

/* Helper */
.mtc-helper {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #636e72;
    background: #f8f9fa;
}

.mtc-helper h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.mtc-helper p {
    margin: 0;
    color: #636e72;
    line-height: 1.6;
}

/* Hover Box */
.mtc-hover-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-hover-box-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mtc-hover-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mtc-hover-box:hover .mtc-hover-box-image img {
    transform: scale(1.1);
}

.mtc-hover-box-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 184, 148, 0.95);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mtc-hover-box:hover .mtc-hover-box-content {
    opacity: 1;
}

.mtc-hover-box-content h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.mtc-hover-box-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.mtc-hover-box-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.mtc-hover-box-link:hover {
    color: #fff;
}

/* Hover Color */
.mtc-hover-color {
    transition: color 0.3s;
    cursor: pointer;
}

/* How It Works */
.mtc-how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.mtc-step-number {
    width: 60px;
    height: 60px;
    background: #00b894;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.mtc-step-icon {
    font-size: 40px;
    color: #00b894;
    margin-bottom: 15px;
    display: block;
}

.mtc-step h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-step p {
    color: #636e72;
    margin: 0;
    line-height: 1.6;
}

/* Hotspot */
.mtc-hotspot {
    position: relative;
    margin-bottom: 20px;
}

.mtc-hotspot img {
    width: 100%;
    height: auto;
    display: block;
}

.mtc-hotspot-point {
    position: absolute;
    cursor: pointer;
}

.mtc-hotspot-marker {
    width: 20px;
    height: 20px;
    background: #00b894;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Basic animation keyframes (used by section animation options) */
@keyframes mtc-fadeIn {
    from { opacity: 0; transform: translateY(0); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes mtc-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes mtc-zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes mtc-slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes mtc-slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.mtc-hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mtc-hotspot-point:hover .mtc-hotspot-tooltip {
    opacity: 1;
}

.mtc-hotspot-tooltip h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.mtc-hotspot-tooltip p {
    margin: 0;
    color: #636e72;
    font-size: 14px;
}

/* Image Gallery */
.mtc-image-gallery {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.mtc-gallery-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-gallery-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.mtc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-gallery-item:hover img {
    transform: scale(1.1);
}

.mtc-gallery-item a {
    display: block;
}

/* Photo Box */
.mtc-photo-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-photo-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.mtc-photo-box:hover img {
    transform: scale(1.1);
}

.mtc-photo-box-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 184, 148, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mtc-photo-box:hover .mtc-photo-box-overlay {
    opacity: 1;
}

.mtc-photo-box-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

/* Clients Slider */
.mtc-clients-slider {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.mtc-client-slide {
    flex: 0 0 auto;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.mtc-client-slide:hover {
    opacity: 1;
    filter: grayscale(0);
}

.mtc-client-slide img {
    max-width: 150px;
    height: auto;
}

/* Blog News */
.mtc-blog-news {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-news-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dfe6e9;
}

.mtc-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mtc-news-thumbnail {
    flex: 0 0 200px;
    overflow: hidden;
    border-radius: 8px;
}

.mtc-news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-news-item:hover .mtc-news-thumbnail img {
    transform: scale(1.05);
}

.mtc-news-content {
    flex: 1;
}

.mtc-news-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.mtc-news-content h3 a {
    color: #2d3436;
    text-decoration: none;
}

.mtc-news-content h3 a:hover {
    color: #00b894;
}

.mtc-news-meta {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 10px;
}

.mtc-news-excerpt {
    color: #636e72;
    line-height: 1.6;
}

/* Blog Teaser */
.mtc-blog-teaser {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-blog-teaser-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.mtc-teaser-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mtc-teaser-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mtc-teaser-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block;
}

.mtc-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-teaser-item:hover .mtc-teaser-image img {
    transform: scale(1.05);
}

.mtc-teaser-content {
    padding: 20px;
}

.mtc-teaser-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-teaser-content h3 a {
    color: #2d3436;
    text-decoration: none;
}

.mtc-teaser-content h3 a:hover {
    color: #00b894;
}

.mtc-teaser-content p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Grid */
.mtc-portfolio-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.mtc-portfolio-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-portfolio-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-portfolio-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Portfolio Photo */
.mtc-portfolio-photo {
    margin-bottom: 20px;
}

.mtc-portfolio-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Portfolio Slider */
.mtc-portfolio-slider {
    margin-bottom: 20px;
}

.mtc-portfolio-slide {
    position: relative;
}

.mtc-portfolio-slide-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.mtc-portfolio-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-portfolio-slide-content {
    padding: 20px 0;
    text-align: center;
}

.mtc-portfolio-slide-content h3 {
    margin-bottom: 5px;
}

.mtc-portfolio-slide-content h3 a {
    color: #2d3436;
    text-decoration: none;
}

.mtc-portfolio-slide-content h3 a:hover {
    color: #00b894;
}

/* Shop Categories */
.mtc-shop-categories {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-shop-categories-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-shop-categories-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-shop-categories-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-shop-category-item {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mtc-shop-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mtc-shop-category-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mtc-shop-category-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.mtc-shop-category-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
}

.mtc-shop-category-item p {
    padding: 0 20px 20px;
    color: #636e72;
    margin: 0;
}

/* Payment Methods */
.mtc-payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mtc-payment-method {
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.mtc-payment-method:hover {
    opacity: 1;
    filter: grayscale(0);
}

.mtc-payment-method img {
    max-width: 80px;
    height: auto;
}

/* Map Basic */
.mtc-map-basic {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Map Advanced */
.mtc-map-advanced {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Opening Hours */
.mtc-opening-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #dfe6e9;
}

.mtc-hours-item:last-child {
    border-bottom: none;
}

.mtc-hours-day {
    font-weight: 500;
}

.mtc-hours-time {
    color: #636e72;
}

/* Our Team */
.mtc-our-team {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.mtc-team-2 { grid-template-columns: repeat(2, 1fr); }
.mtc-team-3 { grid-template-columns: repeat(3, 1fr); }
.mtc-team-4 { grid-template-columns: repeat(4, 1fr); }

.mtc-team-member {
    text-align: center;
}

.mtc-team-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.mtc-team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-team-member:hover .mtc-team-image img {
    transform: scale(1.05);
}

.mtc-team-member h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.mtc-team-position {
    color: #636e72;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Our Team List */
.mtc-our-team-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.mtc-team-member-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #dfe6e9;
    align-items: center;
}

.mtc-team-member-item:last-child {
    border-bottom: none;
}

.mtc-team-member-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mtc-team-member-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.mtc-team-member-info p {
    color: #636e72;
    margin: 0;
    font-size: 14px;
}

/* Offer Slider Full */
.mtc-offer-slider-full {
    margin-bottom: 20px;
}

.mtc-offer-slide {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.mtc-offer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: #fff;
}

.mtc-offer-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

.mtc-offer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Offer Slider Thumb */
.mtc-offer-slider-thumb {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 20px;
    margin-bottom: 20px;
}

.mtc-offer-main {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.mtc-offer-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-offer-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mtc-offer-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.mtc-offer-thumb:hover,
.mtc-offer-thumb.active {
    opacity: 1;
    border-color: #00b894;
}

.mtc-offer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Promo Box */
.mtc-promo-box {
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.mtc-promo-box h3 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #fff;
}

.mtc-promo-box p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #fff;
}

.mtc-promo-button {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #2d3436;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.mtc-promo-button:hover {
    background: #f1f2f3;
    color: #2d3436;
    transform: translateY(-2px);
}

/* Sliding Box */
.mtc-sliding-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-sliding-box-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mtc-sliding-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mtc-sliding-box:hover .mtc-sliding-box-image img {
    transform: scale(1.1);
}

.mtc-sliding-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 184, 148, 0.95);
    color: #fff;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.mtc-sliding-box:hover .mtc-sliding-box-content {
    transform: translateY(0);
}

.mtc-sliding-box-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

.mtc-sliding-box-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.mtc-sliding-box-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

/* Story Box */
.mtc-story-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.mtc-story-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mtc-story-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mtc-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-story-box:hover .mtc-story-image img {
    transform: scale(1.05);
}

.mtc-story-content {
    padding: 20px;
}

.mtc-story-date {
    display: block;
    font-size: 13px;
    color: #636e72;
    margin-bottom: 10px;
}

.mtc-story-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-story-content p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Tag Cloud */
.mtc-tag-cloud {
    margin-bottom: 20px;
}

.mtc-tag-cloud a {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #636e72;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px;
    font-size: 13px;
    transition: all 0.3s;
}

.mtc-tag-cloud a:hover {
    background: #00b894;
    color: #fff;
}

/* Testimonials List */
.mtc-testimonials-list {
    margin-bottom: 20px;
}

.mtc-testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-testimonial-item:last-child {
    margin-bottom: 0;
}

.mtc-testimonial-content {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2d3436;
    line-height: 1.7;
}

.mtc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mtc-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.mtc-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-testimonial-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.mtc-testimonial-info p {
    margin: 0;
    color: #636e72;
    font-size: 14px;
}

/* Table of Contents */
.mtc-table-of-contents {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mtc-table-of-contents h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.mtc-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mtc-toc-list li {
    margin-bottom: 8px;
}

.mtc-toc-list a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s;
}

.mtc-toc-list a:hover {
    color: #00b894;
}

/* Timeline */
.mtc-timeline {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.mtc-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dfe6e9;
}

.mtc-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.mtc-timeline-item:last-child {
    margin-bottom: 0;
}

.mtc-timeline-marker {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #00b894;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mtc-timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.mtc-timeline-date {
    display: block;
    font-size: 13px;
    color: #636e72;
    margin-bottom: 10px;
    font-weight: 500;
}

.mtc-timeline-content h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-timeline-content p {
    color: #636e72;
    margin: 0;
    line-height: 1.6;
}

/* Trailer Box */
.mtc-trailer-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.mtc-trailer-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mtc-trailer-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mtc-trailer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mtc-trailer-box:hover .mtc-trailer-image img {
    transform: scale(1.05);
}

.mtc-trailer-content {
    padding: 20px;
}

.mtc-trailer-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.mtc-trailer-content p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mtc-trailer-link {
    color: #00b894;
    text-decoration: none;
    font-weight: 500;
}

.mtc-trailer-link:hover {
    color: #00a383;
    text-decoration: underline;
}

/* Visual Editor */
.mtc-visual-editor {
    margin-bottom: 20px;
}

/* Zoom Box */
.mtc-zoom-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: zoom-in;
}

.mtc-zoom-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.mtc-zoom-box:hover img {
    transform: scale(1.1);
}

/* Lottie */
.mtc-lottie {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Countdown Basic */
.mtc-countdown-basic {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Content WP */
.mtc-content-wp {
    margin-bottom: 20px;
}

/* Lightbox */
.mtc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mtc-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.mtc-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
}

.mtc-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.mtc-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #2d3436;
    transition: all 0.3s;
}

.mtc-lightbox-close:hover {
    background: #00b894;
    color: #fff;
}

body.mtc-lightbox-open {
    overflow: hidden;
}

/* Search Results */
.mtc-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mtc-search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mtc-search-results-list li {
    border-bottom: 1px solid #f1f2f3;
}

.mtc-search-results-list li:last-child {
    border-bottom: none;
}

.mtc-search-results-list a {
    display: block;
    padding: 12px 15px;
    color: #2d3436;
    text-decoration: none;
    transition: background 0.3s;
}

.mtc-search-results-list a:hover {
    background: #f8f9fa;
    color: #00b894;
}

/* ==========================================================================
   Additional Responsive Styles for Components
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .mtc-blog-grid-2,
    .mtc-portfolio-grid-2,
    .mtc-products-grid-2,
    .mtc-gallery-2,
    .mtc-shop-categories-2,
    .mtc-team-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mtc-blog-grid-3,
    .mtc-blog-grid-4,
    .mtc-portfolio-grid-3,
    .mtc-portfolio-grid-4,
    .mtc-products-grid-3,
    .mtc-products-grid-4,
    .mtc-gallery-3,
    .mtc-gallery-4,
    .mtc-shop-categories-3,
    .mtc-shop-categories-4,
    .mtc-team-3,
    .mtc-team-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mtc-banner-content h2 {
        font-size: 32px;
    }
    
    .mtc-banner-content p {
        font-size: 16px;
    }
    
    .mtc-pricing-table,
    .mtc-pricing-item {
        margin-bottom: 20px;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    .mtc-blog-grid-2,
    .mtc-blog-grid-3,
    .mtc-blog-grid-4,
    .mtc-portfolio-grid-2,
    .mtc-portfolio-grid-3,
    .mtc-portfolio-grid-4,
    .mtc-products-grid-2,
    .mtc-products-grid-3,
    .mtc-products-grid-4,
    .mtc-gallery-2,
    .mtc-gallery-3,
    .mtc-gallery-4,
    .mtc-image-gallery,
    .mtc-shop-categories-2,
    .mtc-shop-categories-3,
    .mtc-shop-categories-4,
    .mtc-team-2,
    .mtc-team-3,
    .mtc-team-4,
    .mtc-how-it-works {
        grid-template-columns: 1fr;
    }
    
    .mtc-countdown,
    .mtc-countdown-basic {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .mtc-countdown-item {
        min-width: 60px;
    }
    
    .mtc-countdown-number {
        font-size: 28px;
    }
    
    .mtc-pricing-table.featured,
    .mtc-pricing-item.mtc-pricing-featured {
        transform: none;
    }
    
    .mtc-banner-box {
        padding: 50px 20px;
    }
    
    .mtc-banner-content h2 {
        font-size: 24px;
    }
    
    .mtc-banner-content p {
        font-size: 14px;
    }
    
    .mtc-news-item {
        flex-direction: column;
    }
    
    .mtc-news-thumbnail {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .mtc-offer-slider-thumb {
        grid-template-columns: 1fr;
    }
    
    .mtc-offer-thumbs {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .mtc-offer-thumb {
        flex: 0 0 100px;
    }
    
    /* Button adjustments */
    .mtc-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mtc-button-large {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    /* Heading adjustments */
    .mtc-heading h1 {
        font-size: 28px;
    }
    
    .mtc-heading h2 {
        font-size: 24px;
    }
    
    .mtc-heading h3 {
        font-size: 20px;
    }
    
    /* Icon box adjustments */
    .mtc-icon-box {
        padding: 20px;
    }
    
    .mtc-icon-box-icon {
        font-size: 36px;
    }
    
    /* Testimonial adjustments */
    .mtc-testimonial {
        padding: 30px 20px;
    }
    
    .mtc-testimonial-content {
        font-size: 16px;
    }
    
    /* Slider adjustments */
    .mtc-slider-content h2 {
        font-size: 24px;
    }
    
    .mtc-slider-content p {
        font-size: 14px;
    }
    
    .mtc-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Section padding adjustments */
    .mtc-section {
        padding: 40px 0;
    }
    
    /* Wrap gap adjustments */
    .mtc-wrap {
        gap: 15px;
    }
    
    /* Image adjustments */
    .mtc-image img,
    .mtc-column img,
    .mtc-wrap img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    /* Ensure all media elements are responsive */
    .mtc-column video,
    .mtc-column iframe,
    .mtc-wrap video,
    .mtc-wrap iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Social icons adjustments */
    .mtc-social-icons {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .mtc-social-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Contact form adjustments */
    .mtc-form-input,
    .mtc-form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Call to action adjustments */
    .mtc-call-to-action {
        padding: 30px 20px;
    }
    
    .mtc-call-to-action h3 {
        font-size: 24px;
    }
    
    .mtc-call-to-action p {
        font-size: 14px;
    }
    
    /* Promo box adjustments */
    .mtc-promo-box {
        padding: 30px 20px;
    }
    
    .mtc-promo-box h3 {
        font-size: 24px;
    }
    
    .mtc-promo-box p {
        font-size: 14px;
    }
    
    /* Hide on mobile utility */
    .mtc-hide-mobile {
        display: none !important;
    }
}

/* Tablet visibility utilities */
@media (min-width: 768px) and (max-width: 1024px) {
    .mtc-hide-tablet {
        display: none !important;
    }
}

/* Desktop visibility utilities */
@media (min-width: 1025px) {
    .mtc-hide-desktop {
        display: none !important;
    }
}

