/*
Theme Name: MGS Clean Pro
Theme URI: https://mgs.com.gr
Author: MGS
Author URI: https://mgs.com.gr
Description: Premium WooCommerce theme for MGS Professional Cleaning Solutions
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mgs-theme
Tags: woocommerce, e-commerce, custom-menu, custom-logo, featured-images
*/

/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */

:root {
    --primary: #0a1628;
    --primary-light: #142850;
    --primary-medium: #1e3a5f;
    --secondary: #c8a951;
    --secondary-light: #e8d48b;
    --accent: #2563eb;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-dark: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px -12px rgba(0,0,0,0.18);
    --shadow-gold: 0 10px 40px -10px rgba(200,169,81,0.3);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 80px;
    --z-sticky: 100;
    --z-fixed: 200;
    --z-overlay: 300;
}

/* ==========================================================================
   1. GLOBAL RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
    line-height: 1.5;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.0625rem; }
h6 { font-size: 0.9375rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

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

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 1rem;
}

p:last-child {
    margin-bottom: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

svg {
    display: inline-block;
    vertical-align: middle;
}

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

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

/* ==========================================================================
   2. LAYOUT
   ========================================================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   3. PRELOADER
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    max-height: 60px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(200, 169, 81, 0.2);
    border-top-color: var(--secondary);
    animation: spin 0.8s linear infinite;
}

.preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================================================
   4. TOP BAR
   ========================================================================== */

.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: calc(var(--z-sticky) + 1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-bar-item a:hover {
    color: var(--secondary);
}

.top-bar-icon {
    font-size: 14px;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--secondary);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0.3;
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    border-radius: 50%;
}

.top-bar-social:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   5. SITE HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    background: var(--surface);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    z-index: var(--z-sticky);
    transition: var(--transition);
}

.site-header.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
}

.site-header.scrolled .header-grid {
    height: 70px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.03);
}

img.site-logo {
    height: clamp(36px, 4vw, 50px);
    width: auto;
}

/* ==========================================================================
   6. DESKTOP NAVIGATION
   ========================================================================== */

.header-nav {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: center;
}

.header-nav .menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
}

.header-nav .menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-nav .menu > li > a {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.header-nav .menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-nav .menu > li > a:hover::after,
.header-nav .menu > li.current-menu-item > a::after,
.header-nav .menu > li.current_page_item > a::after {
    transform: scaleX(1);
}

.header-nav .menu > li > a:hover {
    color: var(--primary);
}

/* Fallback nav-menu class */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
}

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

.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
}

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

.menu-item-has-children > a::before {
    content: none;
}

/* Sub-menus (dropdowns) */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 50;
}

li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.sub-menu li a:hover {
    color: var(--primary);
    background: var(--surface-alt);
    padding-left: 1.5rem;
}

/* Nested sub-menus */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
}

/* ==========================================================================
   7. HEADER ACTIONS
   ========================================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-search {
    position: relative;
}

.header-search .search-form {
    display: flex;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    width: 16px;
    height: 16px;
}

input.search-input {
    width: 280px;
    height: 44px;
    padding: 0 1rem 0 2.75rem;
    background: var(--surface-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

input.search-input::placeholder {
    color: var(--text-muted);
}

input.search-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.1);
    background: var(--surface);
    width: 320px;
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    color: var(--text-primary);
    text-decoration: none;
}

.header-cart:hover {
    background: var(--surface-alt);
    color: var(--primary);
}

.header-cart svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 4px;
}

.header-cta-btn,
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    white-space: nowrap;
}

.header-cta-btn:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 45px -10px rgba(200, 169, 81, 0.45);
    color: var(--primary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   8. MOBILE NAVIGATION
   ========================================================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 85vw);
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: calc(var(--z-overlay) + 2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.25rem;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-close svg {
    width: 18px;
    height: 18px;
}

.mobile-nav-search {
    padding: 1rem 1.5rem;
}

.mobile-nav-search input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: #ffffff;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition-fast);
}

.mobile-nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mobile-nav-search input:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-item > a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav-item > a:hover {
    color: var(--secondary);
    padding-left: 1.75rem;
}

.mobile-nav-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-item-row > a {
    flex: 1;
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav-item-row > a:hover {
    color: var(--secondary);
}

.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    flex-shrink: 0;
}

.submenu-toggle:hover {
    color: var(--secondary);
}

.submenu-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.submenu-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0, 0, 0, 0.15);
}

.mobile-submenu.active {
    max-height: 400px;
}

.mobile-submenu li a {
    display: block;
    padding: 0.6rem 1.5rem 0.6rem 2.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-submenu li a:hover {
    color: var(--secondary);
    padding-left: 2.75rem;
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-contact-link:hover {
    color: var(--secondary);
}

.mobile-contact-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--secondary);
}

/* ==========================================================================
   9. BACK TO TOP
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: var(--z-fixed);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   10. HERO SLIDER (CRITICAL)
   ========================================================================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.15;
    pointer-events: none;
}

.hero-decoration-svg {
    width: 200px;
    height: auto;
}

.hero-slider {
    width: 100%;
    height: calc(100vh - var(--header-height) - 40px);
    min-height: 600px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-bg {
    animation: kenburns 20s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.4) 60%, rgba(10, 22, 40, 0.2) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 700px;
    padding: 0 clamp(2rem, 5vw, 6rem);
    color: #ffffff;
}

.hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: var(--radius-full);
    line-height: 1.4;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.85;
    margin: 0 0 2rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Swiper Overrides */
.hero-slider .swiper-pagination {
    bottom: 2rem !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 32px;
    border-radius: var(--radius-full);
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 18px;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   11. STATS SECTION
   ========================================================================== */

.stats-section {
    background: var(--surface-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ==========================================================================
   12. CLIENTS SECTION
   ========================================================================== */

.clients-section {
    background: var(--surface-alt);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.client-card:hover .client-icon {
    transform: rotate(10deg) scale(1.1);
}

.client-icon svg {
    width: 24px;
    height: 24px;
}

.client-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.client-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}

/* ==========================================================================
   13. CATEGORIES SECTION
   ========================================================================== */

.categories-section {
    /* Default bg */
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: inherit;
}

.category-card--icon {
    padding: 2rem;
    text-align: center;
}

.category-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.category-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.category-card:hover .category-icon-wrap {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
}

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

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.category-card-body {
    padding: 1.25rem;
    text-align: center;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.category-card-body p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
}

/* ==========================================================================
   14. ABOUT SECTION
   ========================================================================== */

.about-section {
    background: var(--surface-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius) 0 0 0;
    z-index: 1;
    pointer-events: none;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
    z-index: 3;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.about-content {
    /* Natural flow */
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.feature-list li i,
.feature-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   15. SERVICES SECTION
   ========================================================================== */

.services-section {
    /* Default bg */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: var(--radius-xl);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    transition: var(--transition);
    margin: 0;
}

/* ==========================================================================
   16. BRANDS SECTION
   ========================================================================== */

.brands-section {
    /* Default bg */
}

.brands-slider {
    /* Swiper container */
    width: 100%;
    padding: 1rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: var(--transition);
}

.brand-logo img {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.5s ease;
}

.brand-logo:hover img {
    filter: grayscale(0) opacity(1);
}

/* ==========================================================================
   17. CTA SECTION
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-medium) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   18. BUTTONS SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    line-height: 1.4;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    box-shadow: 0 14px 45px -10px rgba(200, 169, 81, 0.5);
    color: var(--primary);
}

.btn-glass {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light,
.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover,
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   19. PRE-FOOTER CTA
   ========================================================================== */

.pre-footer-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 3rem 0;
}

.pre-footer-cta .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.pre-footer-cta .cta-text h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 0.25rem;
}

.pre-footer-cta .cta-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9375rem;
}

.pre-footer-cta .cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, var(--primary) 0%, #060e1c 100%);
    color: #ffffff;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.03;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col {
    /* Natural flow */
}

.footer-brand {
    /* Natural flow */
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img,
.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact-list li a:hover {
    color: #ffffff;
}

.footer-contact-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ==========================================================================
   21. PAGE HEADER
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-medium) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2rem 0;
}

.page-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.03;
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ==========================================================================
   22. PROCESS TIMELINE
   ========================================================================== */

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--border), var(--secondary));
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    max-width: 180px;
}

/* ==========================================================================
   23. CONTACT
   ========================================================================== */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.contact-info-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-info-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-form-wrap {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    margin-bottom: 1.5rem;
}

.contact-map-wrap iframe {
    width: 100%;
    min-height: 450px;
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   24. QUOTE FORM
   ========================================================================== */

.quote-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.quote-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.quote-form-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.quote-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quote-icon svg {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   25. FORM FALLBACK STYLING
   ========================================================================== */

.contact-form-fallback label,
.quote-form-fallback label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.contact-form-fallback input[type="text"],
.contact-form-fallback input[type="email"],
.contact-form-fallback input[type="tel"],
.contact-form-fallback input[type="url"],
.contact-form-fallback textarea,
.contact-form-fallback select,
.quote-form-fallback input[type="text"],
.quote-form-fallback input[type="email"],
.quote-form-fallback input[type="tel"],
.quote-form-fallback input[type="url"],
.quote-form-fallback textarea,
.quote-form-fallback select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-form-fallback input:focus,
.contact-form-fallback textarea:focus,
.contact-form-fallback select:focus,
.quote-form-fallback input:focus,
.quote-form-fallback textarea:focus,
.quote-form-fallback select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.1);
    background: var(--surface);
}

.contact-form-fallback textarea,
.quote-form-fallback textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-fallback button[type="submit"],
.quote-form-fallback button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form-fallback button[type="submit"]:hover,
.quote-form-fallback button[type="submit"]:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   26. VALUES GRID
   ========================================================================== */

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

.value-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   27. BLOG
   ========================================================================== */

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

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card-body h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.blog-card-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   28. SEARCH RESULTS
   ========================================================================== */

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.search-results-grid article {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.search-results-grid article:hover {
    box-shadow: var(--shadow-md);
}

.search-results-grid article h2 {
    font-size: 1.25rem;
}

.search-results-grid article h2 a {
    color: var(--primary);
    text-decoration: none;
}

.search-results-grid article h2 a:hover {
    color: var(--secondary);
}

/* ==========================================================================
   29. 404 PAGE
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: clamp(4rem, 10vw, 8rem) 2rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: rgba(10, 22, 40, 0.1);
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.error-floating {
    animation: float 3s ease-in-out infinite;
}

.error-404 h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   30. WOOCOMMERCE BASICS
   ========================================================================== */

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 0;
    margin: 0;
    text-align: center;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition);
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.75rem 1rem 0;
    margin: 0;
}

.woocommerce ul.products li.product .price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    margin: 0;
}

.woocommerce ul.products li.product .price del {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--danger);
    font-weight: 700;
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 2;
    min-width: unset;
    min-height: unset;
    line-height: 1.4;
}

.woocommerce ul.products li.product .button,
.woocommerce .button,
.woocommerce a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin: 0.5rem 1rem 1rem;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce .button:hover,
.woocommerce a.button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: #ffffff;
}

.woocommerce .button.alt,
.woocommerce a.button.alt {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary);
}

.woocommerce .button.alt:hover,
.woocommerce a.button.alt:hover {
    box-shadow: var(--shadow-gold);
}

/* WooCommerce Pagination */
.woocommerce nav.woocommerce-pagination {
    margin-top: 2rem;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: var(--surface);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* WooCommerce Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-top-color: var(--secondary);
    background: var(--surface-alt);
    border-radius: var(--radius);
}

.woocommerce .woocommerce-error {
    border-top-color: var(--danger);
    background: #fef2f2;
    border-radius: var(--radius);
}

/* Single Product */
.woocommerce div.product {
    margin-bottom: 2rem;
}

.woocommerce div.product .product_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.woocommerce div.product p.price {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
}

.woocommerce div.product .woocommerce-product-gallery {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Cart & Checkout basic styling */
.woocommerce table.shop_table {
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--surface-alt);
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.woocommerce table.shop_table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.woocommerce #respond input#submit,
.woocommerce input.button,
.woocommerce button.button {
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce #respond input#submit:hover,
.woocommerce input.button:hover,
.woocommerce button.button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   31. CONTACT FORM 7 OVERRIDE
   ========================================================================== */

.wpcf7 {
    text-align: left;
}

.wpcf7 p {
    margin-bottom: 1rem;
}

.wpcf7 label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.1);
    background: var(--surface);
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.wpcf7 .wpcf7-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.wpcf7-response-output {
    border-radius: var(--radius) !important;
    font-size: 0.875rem;
    padding: 0.75rem 1rem !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: var(--danger);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.wpcf7 .wpcf7-not-valid {
    border-color: var(--danger) !important;
}

/* ==========================================================================
   32. CUSTOM SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--primary);
}

/* ==========================================================================
   33. ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Fade-in utility for scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   34. WORDPRESS CORE ALIGNMENT
   ========================================================================== */

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: var(--radius);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* WordPress post content */
.entry-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style: revert;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--surface-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.entry-content table th,
.entry-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.entry-content table th {
    background: var(--surface-alt);
    font-weight: 600;
}

.entry-content img {
    border-radius: var(--radius);
}

/* WordPress pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination .page-numbers,
.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* WordPress Comments */
.comments-area {
    margin-top: 3rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--surface-alt);
    border-radius: var(--radius);
}

.comment-list .comment .comment-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-list .comment .comment-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.comment-respond {
    margin-top: 2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.1);
    background: var(--surface);
}

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

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.comment-form .submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* WordPress Widgets */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.widget ul li a:hover {
    color: var(--primary);
}

/* ==========================================================================
   35. RESPONSIVE — 1280px
   ========================================================================== */

@media (max-width: 1280px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    input.search-input {
        width: 220px;
    }

    input.search-input:focus {
        width: 260px;
    }
}

/* ==========================================================================
   36. RESPONSIVE — 1024px (Tablet)
   ========================================================================== */

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-cta-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-wrapper::before {
        display: none;
    }

    .about-badge {
        bottom: -10px;
        right: 10px;
    }

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

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pre-footer-cta .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .pre-footer-cta .cta-actions {
        justify-content: center;
    }

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

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

    .hero-slider {
        height: calc(70vh - var(--header-height));
        min-height: 500px;
    }

    .hero-slide-content {
        max-width: 100%;
    }

    .header-grid {
        gap: 0.75rem;
    }

    input.search-input {
        width: 200px;
    }

    input.search-input:focus {
        width: 240px;
    }
}

/* ==========================================================================
   37. RESPONSIVE — 768px (Mobile Landscape)
   ========================================================================== */

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

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        max-width: 300px;
    }

    .top-bar {
        display: none;
    }

    .header-search {
        display: none;
    }

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

    .hero-slider {
        min-height: 500px;
        height: 60vh;
    }

    .hero-slide-content {
        padding: 0 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-grid {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .page-header {
        min-height: 160px;
    }

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

    .quote-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   38. RESPONSIVE — 480px (Mobile Portrait)
   ========================================================================== */

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-slider {
        min-height: 450px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .hero-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-flex;
        gap: 0.5rem;
        align-items: center;
        margin-top: 1rem;
    }

    .badge-number {
        font-size: 1.25rem;
    }

    .mobile-nav {
        width: 100vw;
    }

    .header-grid {
        gap: 0.5rem;
    }

    .header-cart {
        width: 38px;
        height: 38px;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
    }
}

/* ==========================================================================
   39. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slide-bg {
        transition: none !important;
    }

    .preloader-spinner {
        animation: none;
    }

    .preloader-logo {
        animation: none;
    }

    .error-floating {
        animation: none;
    }
}

/* ==========================================================================
   Form UI Improvements
   ========================================================================== */

.form-row {
    margin-bottom: 1.25rem;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 1;
    transition: color 0.3s ease;
}

.input-icon-wrapper.textarea-wrapper i {
    top: 1.25rem;
    transform: none;
}

.input-icon-wrapper input,
.input-icon-wrapper textarea,
.input-icon-wrapper select {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--surface);
    transition: var(--transition-fast);
    outline: none;
}

.input-icon-wrapper input:focus,
.input-icon-wrapper textarea:focus,
.input-icon-wrapper select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.12);
}

.input-icon-wrapper input:focus + i,
.input-icon-wrapper:focus-within i {
    color: var(--secondary);
}

.input-icon-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

.input-icon-wrapper select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* CF7 Override for better UI */
.cf7-styled-wrapper {
    margin-top: 1.5rem;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1.25rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--surface);
    transition: var(--transition-fast);
    outline: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.12);
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.4);
}

.wpcf7 .wpcf7-not-valid-tip {
    color: var(--danger);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.wpcf7 .wpcf7-response-output {
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 0;
    font-size: 0.875rem;
}

/* Page header subtitle */
.page-header-subtitle {
    max-width: 640px;
    margin: 0.75rem auto 0;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0.85;
}

/* Contact card link & meta */
.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card-link:hover {
    gap: 0.625rem;
}

.contact-card-meta {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Full-width submit button on mobile */
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .form-row-half {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   40. PRINT STYLES
   ========================================================================== */

@media print {
    .top-bar,
    .site-header,
    .mobile-nav-overlay,
    .mobile-nav,
    .hero-slider-section,
    .back-to-top,
    .preloader,
    .pre-footer-cta,
    .cta-section,
    .brands-section,
    .site-footer,
    .header-actions,
    .mobile-toggle,
    .swiper-pagination,
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section {
        padding: 1rem 0;
    }

    .page-header {
        background: none !important;
        color: #000;
        min-height: auto;
        padding: 1rem 0;
    }

    .page-header h1 {
        color: #000;
    }

    img {
        max-width: 100% !important;
    }

    .stat-card,
    .service-card,
    .category-card,
    .client-card,
    .value-card,
    .blog-card,
    .contact-info-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* ==========================================================================
   41. UTILITY CLASSES
   ========================================================================== */

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   42. SKIP LINK (Accessibility)
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    top: 0;
}
