/*
 Theme Name:   SMC
 Description:  Avada Child Theme
 Author:       Antigravity
 Template:     Avada
 Version:      1.0.0
 Text Domain:  smc
 */

/* Global Typography */
body {
    font-family: 'Montserrat', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fusion-header,
.smc-main-nav {
    font-family: 'Outfit', sans-serif !important;
}

/* Footer Styling */
/* Footer Styling */
.smc-footer {
    background-color: var(--smc-bg-footer);
    padding: 80px 0 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--smc-text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.smc-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.smc-footer-brand .footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
}

.smc-footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--smc-text-muted);
    margin-bottom: 25px;
}

.smc-social-links {
    display: flex;
    gap: 15px;
}

.smc-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--smc-red);
    /* Official SMC Red */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 16px;
}

.smc-social-links a:hover {
    background: var(--smc-teal);
    /* Official SMC Teal */
}

.smc-footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--smc-teal);
    /* Official SMC Teal */
    font-weight: 700;
}

.smc-footer-column .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smc-footer-column .footer-menu li {
    margin-bottom: 12px;
}

.smc-footer-column .footer-menu li a {
    text-decoration: none;
    color: var(--smc-text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.smc-footer-column .footer-menu li a:hover {
    color: var(--smc-red);
    /* Official SMC Red */
}

.smc-footer-offices .office-address {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.smc-footer-offices .office-address i {
    color: var(--smc-red);
    /* Official SMC Red */
    font-size: 18px;
    margin-top: 3px;
}

.smc-footer-offices .office-address p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--smc-text-main);
    margin: 0;
    font-weight: 500;
}

.smc-footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(50, 43, 107, 0.1);
}

.smc-footer-bottom .smc-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--smc-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--smc-text-muted);
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #A1232A;
    /* Official SMC Red */
}

@media (max-width: 1024px) {
    .smc-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .smc-footer-container {
        grid-template-columns: 1fr;
    }

    .smc-footer-bottom .smc-footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Submenu Styling Fix */
.smc-nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.smc-nav-links ul li {
    position: relative;
}

.smc-nav-links ul li a {
    text-decoration: none;
    color: var(--smc-text-main);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    display: block;
}

.smc-nav-links ul li:hover>a {
    color: #0E7673;
}

/* Dropdown */
.smc-nav-links ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--smc-bg-surface);
    min-width: 240px;
    /* Slightly wider */
    width: max-content;
    /* Ensure it wraps content */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
    /* Higher z-index */
    height: auto;
    /* Ensure it expands */
    overflow: visible;
    /* Prevent cutting off */
}

.smc-nav-links ul li:hover ul.sub-menu {
    display: flex;
}

.smc-nav-links ul li ul.sub-menu li {
    padding: 0 20px;
}

.smc-nav-links ul li ul.sub-menu li a {
    padding: 12px 0;
    border-bottom: 1px solid var(--smc-border-light);
    font-size: 14px;
    color: var(--smc-text-muted);
}

.smc-nav-links ul li ul.sub-menu li:last-child a {
    border-bottom: none;
}

.smc-nav-links ul li ul.sub-menu li a:hover {
    color: #0E7673;
    padding-left: 5px;
    /* Subtle movement */
    transition: all 0.2s;
}

/* =========================================
   SMC Custom Header & Dark Theme Variables
   ========================================= */

:root {
    /* Brand Colors */
    --smc-red: #A1232A;
    --smc-teal: #0E7673;
    --smc-gold: #D48900;

    /* Theme Colors (Light Mode Premium) */
    --smc-bg-body: #F9FAFB;
    /* Clean, modern off-white */
    --smc-bg-header: #ffffff;
    --smc-bg-footer: #F8F9FF;
    --smc-bg-surface: #ffffff;

    --smc-text-main: #1A1A3D;
    --smc-text-muted: #4A4A68;
    --smc-text-light: #ffffff;

    --smc-border-light: rgba(50, 43, 107, 0.08);
    /* Softer border */
    --smc-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);

    /* Typography */
    --smc-font-heading: 'Outfit', sans-serif;
    --smc-font-body: 'Montserrat', sans-serif;
}

/* Dark Theme Overrides (Premium Deep Teal/Charcoal) */
[data-theme="dark"] {
    --smc-bg-body: #0D1316;
    /* Deep rich dark teal/charcoal */
    --smc-bg-header: #151C20;
    --smc-bg-footer: #080C0E;
    --smc-bg-surface: #151C20;

    --smc-text-main: #eef1f5;
    --smc-text-muted: #aab6c0;

    --smc-border-light: rgba(255, 255, 255, 0.08);
    --smc-shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Apply Backgrounds */
body,
#wrapper,
#main,
#boxed-wrapper,
.fusion-body-wrapper,
.fusion-header-wrapper {
    background-color: var(--smc-bg-body) !important;
    color: var(--smc-text-main) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ensure the main container in Avada doesn't override backgrounds */
#main {
    background-color: transparent !important;
}

/* Footer Dark Mode Adaptations */
.smc-footer {
    background-color: var(--smc-bg-footer) !important;
    color: var(--smc-text-main) !important;
    transition: background-color 0.3s ease;
}

.smc-footer-brand p,
.smc-footer-offices .office-address p,
.smc-footer-column .footer-menu li a,
.smc-footer-bottom .smc-footer-container,
.footer-bottom-links a {
    color: var(--smc-text-muted) !important;
}

.smc-footer-column .footer-menu li a:hover,
.footer-bottom-links a:hover {
    color: var(--smc-red) !important;
}

.smc-footer-bottom {
    border-top: 1px solid var(--smc-border-light) !important;
}

/* -------------------------
   Header Styles (Refactored)
   ------------------------- */

.smc-top-bar {
    background-color: var(--smc-red);
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-family: var(--smc-font-body);
    font-size: 13px;
    z-index: 1001;
    position: relative;
}

.smc-top-bar a {
    color: #ffffff;
    text-decoration: underline;
    margin-left: 10px;
    font-weight: 600;
}

.smc-header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--smc-bg-header);
    transition: background-color 0.3s ease;
}

.smc-main-nav {
    background-color: var(--smc-bg-header);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-shadow: var(--smc-shadow-subtle);
    max-width: 1400px;
    margin: 0 auto;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.smc-logo-container img {
    max-height: 45px;
    display: block;
}

/* Navigation Links & Underline Effect */
.smc-nav-links {
    height: 100%;
}

.smc-nav-links ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.smc-nav-links ul>li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.smc-nav-links ul>li>a {
    color: var(--smc-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--smc-font-heading);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

/* Underline Animation */
.smc-nav-links ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--smc-teal);
    transition: width 0.3s ease;
}

.smc-nav-links ul>li:hover>a::after {
    width: 100%;
}

.smc-nav-links ul>li:hover>a {
    color: var(--smc-teal);
}

/* Mega Menu Dropdown */
.smc-nav-links ul li .sub-menu {
    position: fixed;
    left: 0;
    top: 110px;
    /* Adjust based on top bar + header height */
    width: 100vw;
    background: var(--smc-bg-surface);
    box-shadow: var(--smc-shadow-subtle);
    display: none;
    padding: 40px 10%;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid var(--smc-border-light);
    z-index: 999;
    transition: background-color 0.3s ease;
}

.smc-nav-links ul li:hover .sub-menu {
    display: grid;
}

.smc-nav-links .sub-menu li {
    display: block;
    height: auto;
}

.smc-nav-links .sub-menu li a {
    padding: 8px 0;
    font-size: 14px;
    color: var(--smc-text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.smc-nav-links .sub-menu li a:hover {
    color: var(--smc-teal);
}

/* Right Side Actions */
.smc-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.smc-login-link,
.smc-shop-link {
    color: var(--smc-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.smc-login-link:hover,
.smc-shop-link:hover {
    color: var(--smc-teal);
    transform: translateY(-1px);
}

.smc-login-link.logged-in {
    font-weight: 700;
}

.smc-login-link svg,
.smc-shop-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    transition: transform 0.3s ease;
}

.smc-login-link:hover svg,
.smc-shop-link:hover svg {
    transform: scale(1.1);
}

.smc-login-link i,
.smc-shop-link i {
    font-size: 16px;
}

.smc-learning-link,
.smc-instructor-link {
    color: var(--smc-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.smc-learning-link:hover,
.smc-instructor-link:hover {
    color: var(--smc-teal);
    transform: translateY(-2px);
}

.smc-learning-link svg,
.smc-instructor-link svg {
    width: 22px;
    height: 22px;
}

.smc-extra-footer-links {
    margin-top: 20px;
}

.smc-extra-footer-links li a {
    color: var(--smc-teal) !important;
    font-weight: 700 !important;
}

.smc-cta-btn {
    background-color: var(--smc-red);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 109, 67, 0.2);
}

.smc-cta-btn:hover {
    background-color: #8a1e24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 35, 42, 0.3);
}

/* Mobile Menu Toggle */
.smc-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.smc-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--smc-text-main);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.smc-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .smc-mobile-menu {
    background: rgba(13, 19, 22, 0.95);
}

.smc-mobile-menu.active {
    right: 0;
}

/* Header & Close Button */
.smc-mobile-header {
    background: var(--smc-bg-surface);
    padding: 20px 25px 30px;
    border-bottom: 1px solid var(--smc-border-light);
}

.smc-mobile-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.smc-mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--smc-bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--smc-text-main);
    transition: all 0.3s ease;
    border: 1px solid var(--smc-border-light);
}

.smc-mobile-close:hover {
    background: var(--smc-red);
    color: #fff;
    transform: rotate(90deg);
}

/* Profile Card */
.mobile-profile-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--smc-teal);
    object-fit: cover;
}

.profile-text {
    display: flex;
    flex-direction: column;
}

.welcome-text {
    font-size: 12px;
    color: var(--smc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.user-name {
    font-family: var(--smc-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--smc-text-main);
}

.profile-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--smc-bg-body);
    padding: 12px 18px;
    border-radius: 12px;
    color: var(--smc-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--smc-border-light);
    transition: all 0.3s;
}

.profile-link-btn:hover {
    border-color: var(--smc-teal);
    color: var(--smc-teal);
}

.profile-link-btn i {
    width: 16px;
}

/* Auth Buttons (Logged Out) */
.auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.btn-login,
.btn-register {
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-login {
    background: var(--smc-bg-body);
    color: var(--smc-text-main) !important;
    border: 1px solid var(--smc-border-light);
}

.btn-register {
    background: var(--smc-teal);
    color: #fff !important;
}

/* Navigation Scroll Area */
.smc-mobile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 30px 25px;
}

.nav-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--smc-text-muted);
    opacity: 0.6;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.smcmobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smcmobile-links li {
    display: block;
    margin-bottom: 12px;
    opacity: 0;
    /* Hidden initially for animation */
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.smcmobile-links li.slide-in {
    opacity: 1;
    transform: translateY(0);
}

.smcmobile-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: 12px;
    color: var(--smc-text-main);
    text-decoration: none;
    font-family: var(--smc-font-heading);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.smcmobile-links a:hover {
    background: rgba(14, 118, 115, 0.05);
    color: var(--smc-teal);
    padding-left: 18px;
}

.smcmobile-links a .nav-icon {
    width: 20px;
    height: 20px;
    color: var(--smc-text-muted);
    transition: 0.3s;
}

.smcmobile-links a:hover .nav-icon {
    color: var(--smc-teal);
}

/* Footer CTA */
.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--smc-border-light);
    background: var(--smc-bg-surface);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--smc-red) 0%, #8a1e24 100%);
    color: #fff !important;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(161, 35, 42, 0.3);
    transition: all 0.3s;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(161, 35, 42, 0.4);
}


.smc-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1999;
}

.smc-mobile-overlay.active {
    display: block;
}

.mobile-menu-footer a {
    color: var(--smc-text-main) !important;
}

@media (max-width: 1024px) {

    .smc-nav-links,
    .smc-login-link {
        display: none;
    }

    .smc-mobile-toggle {
        display: flex;
    }
}

/* Mobile-First Premium Navigation Overrides */
body.smc-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

.smc-main-nav {
    padding: 0 16px;
    height: 74px;
}

.smc-logo-container img {
    max-height: 40px;
}

.smc-nav-links {
    display: none;
}

.smc-actions {
    gap: 10px;
}

.smc-actions .smc-shop-link,
.smc-actions .smc-login-link,
.smc-actions .smc-learning-link,
.smc-actions .smc-instructor-link {
    display: none;
}

.smc-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--smc-border-light);
    background: var(--smc-bg-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.smc-mobile-toggle:focus-visible,
.smc-mobile-close:focus-visible,
.smc-mobile-overlay:focus-visible {
    outline: 2px solid var(--smc-teal);
    outline-offset: 2px;
}

.smc-mobile-menu {
    width: min(92vw, 420px);
    right: 0;
    transform: translateX(105%);
    border-left: 1px solid var(--smc-border-light);
    background: rgba(255, 255, 255, 0.96);
    background: color-mix(in srgb, var(--smc-bg-surface) 88%, #ffffff 12%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.smc-mobile-menu.active {
    transform: translateX(0);
}

.smc-mobile-overlay {
    display: block;
    opacity: 0;
    visibility: hidden;
    border: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.smc-mobile-menu-open .smc-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.smc-mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 16px;
}

.smc-mobile-search input {
    border: 1px solid var(--smc-border-light);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    background: var(--smc-bg-surface);
    color: var(--smc-text-main);
}

.smc-mobile-search button {
    border: 0;
    border-radius: 12px;
    padding: 0 14px;
    background: linear-gradient(135deg, var(--smc-teal), #0a8d89);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.smc-mobile-quick-tools {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
}

.smc-mobile-tool-link {
    background: var(--smc-bg-surface);
    border: 1px solid var(--smc-border-light);
    border-radius: 12px;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    text-decoration: none;
    color: var(--smc-text-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.smc-mobile-tool-link i {
    width: 18px;
    height: 18px;
}

.smcmobile-links li {
    margin-bottom: 10px;
}

.smcmobile-links li.menu-item-has-children {
    position: relative;
}

.smcmobile-links li > a {
    display: flex;
    align-items: center;
    padding-right: 42px;
}

.smc-submenu-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--smc-border-light);
    background: var(--smc-bg-surface);
    color: var(--smc-text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.smc-submenu-toggle i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.smcmobile-links li.submenu-open .smc-submenu-toggle i {
    transform: rotate(180deg);
}

.smcmobile-links .sub-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 8px 0 0 8px;
    border-left: 2px solid var(--smc-border-light);
}

.smcmobile-links .sub-menu li {
    margin-bottom: 8px;
}

.smcmobile-links .sub-menu a {
    font-size: 14px;
    padding: 10px;
}

.smc-mobile-recent {
    margin-top: 18px;
}

.smc-mobile-recent-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.smc-mobile-recent-list li + li {
    margin-top: 8px;
}

.smc-mobile-recent-list a {
    display: block;
    border: 1px solid var(--smc-border-light);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--smc-text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

@media (min-width: 1025px) {
    .smc-main-nav {
        padding: 0 40px;
        height: 80px;
    }

    .smc-nav-links {
        display: block;
    }

    .smc-actions .smc-shop-link,
    .smc-actions .smc-login-link,
    .smc-actions .smc-learning-link,
    .smc-actions .smc-instructor-link {
        display: inline-flex;
    }

    .smc-mobile-toggle,
    .smc-mobile-menu,
    .smc-mobile-overlay {
        display: none !important;
    }
}

/* ===========================
   Theme Toggle Floating Button
   =========================== */
.smc-theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--smc-bg-surface);
    border: 1px solid var(--smc-border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--smc-text-main);
}

.smc-theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Switching Logic */
.smc-theme-toggle-btn .icon-moon {
    display: none;
}

.smc-theme-toggle-btn .icon-sun {
    display: block;
}

/* When Dark Theme is Active */
[data-theme="dark"] .smc-theme-toggle-btn {
    background-color: #333;
    border-color: #555;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .smc-theme-toggle-btn .icon-sun {
    display: none;
}

[data-theme="dark"] .smc-theme-toggle-btn .icon-moon {
    display: block;
}

/* =========================================
   Premium Inner Page Layouts
   ========================================= */

/* Hero Section */
.smc-page-hero {
    background: linear-gradient(135deg, var(--smc-red) 0%, var(--smc-teal) 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.smc-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.smc-hero-subtitle {
    font-family: var(--smc-font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.smc-page-hero h1 {
    font-family: var(--smc-font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

/* Page Container */
.smc-page-container {
    max-width: 1440px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

/* Typography Helpers */
.smc-heading-lg {
    font-family: var(--smc-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--smc-text-main);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.smc-heading-md {
    font-family: var(--smc-font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--smc-text-main);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.smc-text-body {
    font-family: var(--smc-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--smc-text-muted);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* Cards & Sections */
.smc-card-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.smc-card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.smc-feature-card {
    background: var(--smc-bg-surface);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--smc-shadow-subtle);
    transition: all 0.3s ease;
    border: 1px solid var(--smc-border-light);
}

.smc-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.smc-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(14, 118, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--smc-teal);
    font-size: 24px;
    transition: all 0.3s ease;
}

.smc-feature-card:hover .smc-icon-circle {
    background: var(--smc-teal);
    color: #fff;
}

.smc-icon-circle.red {
    background: rgba(161, 35, 42, 0.1);
    color: var(--smc-red);
}

.smc-feature-card:hover .smc-icon-circle.red {
    background: var(--smc-red);
    color: #fff;
}

/* Image Styling */
.smc-img-rounded {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.smc-img-rounded:hover {
    transform: scale(1.02);
}

/* Inputs & Forms */
.smc-form-section {
    background: var(--smc-bg-footer);
    padding: 60px;
    border-radius: 30px;
    margin-top: 60px;
    text-align: center;
}

.smc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.smc-form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    /* Rounded corners */
    border: 1px solid var(--smc-border-light);
    background: var(--smc-bg-surface);
    color: var(--smc-text-main);
    font-family: var(--smc-font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.smc-form-control:focus {
    border-color: var(--smc-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 118, 115, 0.1);
}

.smc-form-group.full-width {
    grid-column: span 2;
}

.smc-submit-btn {
    background: var(--smc-red);
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-family: var(--smc-font-heading);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(161, 35, 42, 0.3);
}

.smc-submit-btn:hover {
    background: #8e1f25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 35, 42, 0.4);
}

/* Call to Action Bar */
.smc-cta-bar {
    background: var(--smc-bg-surface);
    border-top: 1px solid var(--smc-border-light);
    padding: 60px 0;
    text-align: center;
}

.smc-cta-bar h2 {
    font-family: var(--smc-font-heading);
    color: var(--smc-text-main);
    margin-bottom: 15px;
}

.smc-cta-bar p {
    color: var(--smc-text-muted);
    margin-bottom: 30px;
    font-size: 18px;
}

/* =========================================
   Global Form & Input Styles (Premium)
   ========================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="search"],
textarea,
.form-control {
    width: 100%;
    background: #0E7673 !important;
    /* Premium brand teal */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    font-family: var(--smc-font-body) !important;
    font-size: 16px !important;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
}

/* Adjust padding for contact form with icons */
.smc-contact-page .input-wrapper .form-control {
    padding-left: 55px !important;
}

textarea,
textarea.form-control {
    padding: 18px 20px !important;
    min-height: 120px;
}

/* Placeholder Styling */
input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
    font-weight: 400 !important;
}

/* Focus States */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
.form-control:focus {
    outline: none !important;
    border-color: #ffffff !important;
    background: #0b5e5c !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15) !important;
}

/* ========================================= */

/* Dark Mode Adjustments */
[data-theme="dark"] .smc-page-hero {
    background: linear-gradient(135deg, #2a0b0d 0%, #032423 100%);
    /* Darker gradient */
}

/* Responsive */
@media (max-width: 768px) {

    .smc-card-grid-2,
    .smc-card-grid-3,
    .smc-form-grid {
        grid-template-columns: 1fr;
    }

    .smc-page-hero h1 {
        font-size: 36px;
    }

    .smc-page-container {
        padding: 0 20px;
    }

    .smc-form-section {
        padding: 30px;
    }

    .smc-form-group.full-width {
        grid-column: span 1;
    }
}

/* =========================================
   Articles Page (Premium Redesign)
   ========================================= */

.smc-articles-page {
    background-color: var(--smc-bg-body);
    font-family: var(--smc-font-body);
    padding-bottom: 80px;
}

/* Hero Section */
.smc-articles-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: -60px;
    /* Overlap with content */
    z-index: 1;
}

.smc-articles-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 19, 22, 0.4) 0%, rgba(13, 19, 22, 0.9) 100%);
}

.smc-articles-hero .smc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    background: var(--smc-teal);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--smc-font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-excerpt {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}



/* Filter Bar */
.smc-filter-bar {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.smc-filter-bar .smc-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--smc-border-light);
}

.filter-header h2 {
    font-family: var(--smc-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--smc-text-main);
    margin: 0;
}

.filter-label {
    font-size: 14px;
    color: var(--smc-text-muted);
}

/* Grid Layout */
.smc-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.smc-article-card {
    background: var(--smc-bg-surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--smc-border-light);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.smc-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--smc-teal);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* Aspect Ratio 16:9ish */
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.smc-article-card:hover .card-image img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--smc-text-main);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

[data-theme="dark"] .card-category {
    background: rgba(13, 19, 22, 0.8);
    color: #fff;
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-size: 12px;
    color: var(--smc-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.card-title {
    font-family: var(--smc-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--smc-text-main);
    margin: 0 0 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.smc-article-card:hover .card-title {
    color: var(--smc-teal);
}

.card-excerpt {
    font-size: 15px;
    color: var(--smc-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--smc-teal);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more i {
    width: 16px;
    transition: transform 0.3s;
}

.smc-article-card:hover .read-more i {
    transform: translateX(5px);
}

/* Pagination */
.smc-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.smc-pagination a,
.smc-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--smc-bg-surface);
    color: var(--smc-text-main);
    text-decoration: none;
    border: 1px solid var(--smc-border-light);
    font-weight: 600;
    transition: all 0.3s;
}

.smc-pagination a.next,
.smc-pagination a.prev {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
    gap: 8px;
}

.smc-pagination span.current,
.smc-pagination a:hover {
    background: var(--smc-teal);
    color: #fff;
    border-color: var(--smc-teal);
}

/* Responsive */
@media (max-width: 1024px) {
    .smc-article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .smc-article-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .smc-articles-hero {
        height: auto;
        padding: 100px 0 60px;
    }
}

/* =========================================
   Contact Page (Premium Redesign)
   ========================================= */

.smc-contact-page {
    background-color: var(--smc-bg-body);
    font-family: var(--smc-font-body);
}

/* Contact Hero */
.smc-contact-hero {
    position: relative;
    padding: 120px 0 160px;
    background: linear-gradient(135deg, var(--smc-bg-footer) 0%, var(--smc-bg-body) 100%);
    overflow: hidden;
}

.smc-contact-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 118, 115, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.smc-contact-hero .hero-content {
    max-width: 800px;
}

.smc-contact-hero .hero-badge {
    background: rgba(14, 118, 115, 0.1);
    color: var(--smc-teal);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
}

.smc-contact-hero .hero-title {
    font-family: var(--smc-font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--smc-text-main);
    line-height: 1.1;
    margin-bottom: 25px;
}

.smc-contact-hero .hero-desc {
    font-size: 1.2rem;
    color: var(--smc-text-muted);
    line-height: 1.6;
    max-width: 650px;
}

/* Info Cards Grid */
.main-content {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.smc-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.smc-contact-card {
    background: var(--smc-bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--smc-border-light);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.smc-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--smc-teal);
}

.smc-contact-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--smc-bg-body);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--smc-teal);
    border: 1px solid var(--smc-border-light);
}

.smc-contact-card[data-card="phone"] .card-icon {
    color: var(--smc-red);
}

.smc-contact-card[data-card="location"] .card-icon {
    color: var(--smc-gold);
}

.smc-contact-card .card-label {
    font-family: var(--smc-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--smc-text-main);
}

.smc-contact-card .card-text {
    font-size: 15px;
    color: var(--smc-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.smc-contact-card .card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--smc-text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.smc-contact-card .card-value:hover {
    color: var(--smc-teal);
}

/* Contact Form Card */
.smc-contact-form-section {
    width: 100%;
    margin: 0 auto 100px;
}

.form-card {
    background: var(--smc-bg-surface);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--smc-border-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 45px;
}

.form-title {
    font-family: var(--smc-font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--smc-text-main);
}

.form-subtitle {
    color: var(--smc-text-muted);
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-family: var(--smc-font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--smc-text-main);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    z-index: 2;
}

/* Global Form & Input Styles are applied via the main section above */

.smc-submit-btn {
    width: 100%;
    background: var(--smc-teal);
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(14, 118, 115, 0.2);
}

.smc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(14, 118, 115, 0.3);
    background: #0b5e5c;
}

/* CTA Bar */
.smc-contact-cta {
    background: var(--smc-bg-footer);
    padding: 100px 0;
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--smc-font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--smc-text-main);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Dark Mode Specifics */
[data-theme="dark"] .smc-contact-hero {
    background: linear-gradient(135deg, #0a0f12 0%, #0d1316 100%);
}

[data-theme="dark"] .form-card {
    background: #12191d;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .smc-contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .smc-contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .form-group.full-width {
        grid-column: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .smc-contact-hero {
        padding: 100px 0 140px;
    }

    .form-card {
        padding: 40px 25px;
    }
}

/* ==========================================================================
   Boutique Single Article Styles
   ========================================================================== */

.smc-boutique-article {
    background-color: var(--smc-bg-body);
    overflow: hidden;
}

/* Cinematic Hero */
.smc-article-hero-cinematic {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff !important;
    overflow: hidden;
}

.smc-article-hero-cinematic .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
    z-index: 1;
}

.smc-article-hero-cinematic .hero-gradient-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            transparent 50%,
            var(--smc-bg-body) 100%);
    z-index: 2;
}

.smc-article-hero-cinematic .smc-page-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.smc-article-hero-cinematic .hero-content-inner {
    max-width: 900px;
}

/* Boutique Breadcrumbs */
.smc-boutique-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.smc-boutique-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.smc-boutique-breadcrumbs a:hover {
    color: var(--smc-gold);
}

.smc-boutique-breadcrumbs .breadcrumb-sep {
    width: 14px;
    height: 14px;
    opacity: 0.4;
}

.smc-article-main-title {
    font-family: var(--smc-font-heading) !important;
    font-size: clamp(40px, 5vw, 72px) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -3px !important;
    margin-bottom: 40px !important;
    color: #fff !important;
}

/* Meta Signature */
.smc-article-meta-signature {
    display: flex;
    align-items: center;
    gap: 30px;
}

.smc-article-meta-signature .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.smc-article-meta-signature .author-avatar-proxy {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.smc-article-meta-signature .author-details {
    display: flex;
    flex-direction: column;
}

.smc-article-meta-signature .written-by {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.smc-article-meta-signature .author-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.smc-article-meta-signature .meta-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

.smc-article-meta-signature .publish-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
}

/* Boutique Body Layout */
.smc-article-main-body {
    padding-bottom: 150px;
    position: relative;
    margin-top: -60px;
    /* Overlap with hero mask */
    z-index: 20;
}

.smc-article-layout-grid {
    display: grid !important;
    grid-template-columns: 80px 1fr 340px !important;
    gap: 60px !important;
    align-items: start;
}

/* Sidebar Elements */
.smc-article-sticky-sidebar {
    position: sticky !important;
    top: 120px !important;
    height: fit-content !important;
}

.smc-article-sticky-sidebar.left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smc-article-sticky-sidebar.left .share-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    opacity: 0.3;
    margin-bottom: 20px;
    color: var(--smc-text-main);
}

.smc-article-sticky-sidebar.left .share-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smc-article-sticky-sidebar.left .share-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smc-text-muted);
    transition: all 0.3s;
    border-radius: 50%;
    background: var(--smc-bg-surface);
    border: 1px solid var(--smc-border-light);
}

.smc-article-sticky-sidebar.left .share-link:hover {
    color: var(--smc-teal);
    border-color: var(--smc-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Content Columns */
.smc-article-primary-content {
    max-width: 850px;
}

.smc-entry-content-boutique {
    font-size: 21px;
    line-height: 1.9;
    color: var(--smc-text-main);
    font-weight: 400;
}

.smc-entry-content-boutique p {
    margin-bottom: 35px;
}

.smc-entry-content-boutique h2 {
    font-family: var(--smc-font-heading);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 80px 0 30px;
    line-height: 1.2;
    color: var(--smc-text-main);
}

.smc-entry-content-boutique h3 {
    font-family: var(--smc-font-heading);
    font-size: 30px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--smc-text-main);
}

.smc-entry-content-boutique blockquote {
    padding: 40px;
    background: var(--smc-bg-surface);
    border-left: 5px solid var(--smc-gold);
    border-radius: 0 30px 30px 0;
    font-style: italic;
    font-size: 26px;
    margin: 60px 0;
    color: var(--smc-text-main);
    line-height: 1.6;
}

/* CTA Card Premium */
.cta-card-premium {
    background: var(--smc-bg-surface);
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid var(--smc-border-light);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.cta-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--smc-teal), var(--smc-gold));
}

.cta-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--smc-teal), #1a9c98);
    color: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(14, 118, 115, 0.3);
}

.cta-card-premium h3 {
    font-family: var(--smc-font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--smc-text-main);
}

.cta-card-premium p {
    font-size: 16px;
    color: var(--smc-text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Plan Benefits List */
.smc-plan-benefits-sidebar {
    text-align: left;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--smc-border-light);
}

.smc-plan-benefits-sidebar h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--smc-teal);
    margin-bottom: 20px;
}

.smc-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smc-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--smc-text-muted);
    margin-bottom: 12px;
}

.smc-benefits-list li i {
    color: var(--smc-teal);
    width: 18px;
    height: 18px;
}

/* Tags */
.smc-post-tags {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid var(--smc-border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.smc-post-tags a {
    padding: 10px 22px;
    background: var(--smc-bg-surface);
    border: 1px solid var(--smc-border-light);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--smc-text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.smc-post-tags a:hover {
    border-color: var(--smc-teal);
    color: var(--smc-teal);
    background: rgba(14, 118, 115, 0.05);
    transform: translateY(-4px) scale(1.05);
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .smc-article-layout-grid {
        grid-template-columns: 80px 1fr 300px !important;
        gap: 40px !important;
    }
}

@media (max-width: 1200px) {
    .smc-article-layout-grid {
        grid-template-columns: 1fr 300px !important;
    }

    .smc-article-sticky-sidebar.left {
        display: none;
    }
}

@media (max-width: 900px) {
    .smc-article-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .smc-article-sticky-sidebar.right {
        position: static !important;
        margin-top: 80px;
        max-width: 100% !important;
    }

    .smc-article-hero-cinematic {
        height: auto;
        min-height: 500px;
        padding: 160px 0 100px;
    }

    .smc-article-main-title {
        font-size: 48px !important;
    }
}
