/* ==========================================================================
   Premium Design System: СпецТехКазахстан (Special Machinery)
   ========================================================================== */

:root {
    /* Color Palette */
    --color-primary: #151515;       /* Premium neutral charcoal */
    --color-primary-light: #1e1e1e; /* Lighter charcoal */
    --color-secondary: #c19b4b;     /* Premium gold */
    --color-secondary-hover: #a88137; /* Darker gold for hover */
    --color-accent: #c19b4b;        /* Premium gold */
    --color-bg-light: #f9fafb;      /* Crisp light grey */
    --color-bg-white: #ffffff;      /* Pure white */
    
    /* Text Colors */
    --text-dark: #151515;
    --text-muted: #6b7280;
    --text-light: #f3f4f6;

    /* Status Colors */
    --status-success: #10b981;
    --status-warning: #c19b4b;
    --status-danger: #ef4444;
    --status-info: #c19b4b;

    /* Fonts */
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(21, 21, 21, 0.15), 0 10px 10px -5px rgba(21, 21, 21, 0.04);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Constants */
    --header-height: 80px;
    --container-width: 1280px;
    --border-radius: 0px;
    --border-radius-btn: 12px;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typographic Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    height: var(--header-height);
    background: #151515;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.drawer-logo-img {
    height: 40px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 16px;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    opacity: 0.8;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

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

.phone-link .icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
}

/* Burger Menu Button */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    visibility: visible;
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--color-primary);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: var(--transition-smooth);
}

.mobile-drawer.open .drawer-content {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 36px;
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.8;
}

.drawer-link:hover, .drawer-link.active {
    opacity: 1;
    color: var(--color-secondary);
}

/* ==========================================================================
   Buttons UI Components
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-heading);
    border: 2px solid transparent;
}

.btn-large {
    padding: 9px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(193, 155, 75, 0.3);
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 155, 75, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background-color: #25d366;
    color: var(--color-bg-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.btn-whatsapp-header:hover {
    background-color: #128c7e;
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--color-bg-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-drawer {
    display: block;
    background-color: #25d366;
    color: var(--color-bg-white);
    padding: 12px;
    text-align: center;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.bg-light { background-color: var(--color-bg-light); }
.d-inline-block { display: inline-block; }

/* ==========================================================================
   Hero Section
   ========================================================================== */

.section-hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    /* Default dark overlay */
    background-image: linear-gradient(180deg, rgba(21, 21, 21, 0.85) 0%, rgba(21, 21, 21, 0.95) 100%), url('https://images.unsplash.com/photo-1579684389782-64d84b5e901a?auto=format&fit=crop&w=1600&q=80');
}

.hero-container {
    max-width: 800px;
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-bg-white);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Benefits Block
   ========================================================================== */

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: var(--color-bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
}

.benefit-card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card-desc {
    color: var(--text-muted);
}

/* ==========================================================================
   Categories Block
   ========================================================================== */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.category-card {
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-md);
}

.category-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 40%, rgba(21, 21, 21, 0.9) 100%);
    z-index: 2;
}

.category-info {
    position: relative;
    z-index: 3;
    padding: 24px;
    width: 100%;
}

.category-title {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-card:hover .category-title {
    color: var(--color-secondary);
}

/* ==========================================================================
   Products Grid
   ========================================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-available { background-color: rgba(16, 185, 129, 0.9); color: white; }
.badge-order { background-color: rgba(193, 155, 75, 0.9); color: white; }
.badge-sold { background-color: rgba(239, 68, 68, 0.9); color: white; }

.product-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-specs-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-price-row {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
}

.product-card .btn-outline {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    background: transparent;
}

.product-card .btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-primary) !important;
    border-color: var(--color-secondary);
}


/* ==========================================================================
   Text / About Blocks
   ========================================================================== */
.section-text.has-bg {
    border-radius: 20px;
    border: 1px solid #F28A2E;
    padding: 64px 40px;
    margin-bottom: 40px;
}

.section-text.has-bg .text-content {
    max-width: 680px;
}

@media (max-width: 768px) {
    .section-text.has-bg {
        padding: 32px 20px;
    }
    
    .section-text.has-bg .text-content {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        max-width: 100%;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    }
}

.text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    align-items: center;
}

.text-grid.reverse {
    direction: rtl;
}

.text-grid.reverse > * {
    direction: ltr;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.rich-text p {
    margin-bottom: 16px;
    color: #4b5563;
}

.text-image-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.text-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-container {
    max-width: var(--container-width);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 24px;
    font-weight: 300;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0;
    padding-top: 16px;
}

/* ==========================================================================
   Lead Form Block
   ========================================================================== */

.section-lead-form {
    background-image: linear-gradient(180deg, rgba(21, 21, 21, 0.7) 0%, rgba(21, 21, 21, 0.7) 100%), 
                      url('../images/lead_form_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}

.lead-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: center;
}

.lead-title {
    color: var(--color-bg-white);
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.lead-title::after {
    left: 0;
    transform: none;
}

.lead-desc {
    font-size: 18px;
    opacity: 0.85;
}

.lead-form {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-bg-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-smooth);
}

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

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Contacts & Map Block
   ========================================================================== */

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-details-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 18px;
    font-weight: 600;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-bg-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ==========================================================================
   Catalog Page Layout & Filtering
   ========================================================================== */

.container-catalog {
    max-width: 1440px !important;
}

.catalog-grid-wrapper {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 32px;
}

.catalog-filters {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* Category Dropdown Styles */
.category-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.category-dropdown-btn {
    width: 100%;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

.category-dropdown-btn:hover {
    background-color: rgba(193, 155, 75, 0.05);
}

.category-dropdown-btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.category-dropdown-btn .arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.category-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
    border-radius: var(--border-radius);
}

.category-dropdown-menu.open {
    display: block !important;
}

.category-dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.category-dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.category-dropdown-menu .dropdown-item:hover,
.category-dropdown-menu .dropdown-item.active {
    background-color: rgba(193, 155, 75, 0.08);
    color: var(--color-primary);
}

.category-dropdown-menu .dropdown-item.sub-item {
    padding-left: 28px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

/* Two-column Grid Styles */
.filter-columns-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.filter-column {
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.filter-column-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.filter-column-title:hover {
    color: var(--color-primary);
}

.filter-column.active .filter-column-title {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-column.collapsed {
    opacity: 0.35;
}

.filter-column.collapsed .filter-column-content {
    pointer-events: none;
    filter: grayscale(0.5) blur(0.3px);
}

.filter-column-divider {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    align-self: stretch;
}

/* Checkbox Custom Styles */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    height: 18px;
    width: 18px;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-right: 8px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label:hover input ~ .custom-checkbox {
    border-color: var(--color-primary);
}

.checkbox-label input:checked ~ .custom-checkbox {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .custom-checkbox:after {
    display: block;
}

.checkbox-text {
    line-height: 18px;
}

/* Action Buttons */
.filter-action-buttons {
    display: flex;
    gap: 12px;
}

.filter-action-buttons .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
}

.widget-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-link {
    display: block;
    padding: 8px 12px;
    border-radius: 0px;
    font-weight: 500;
}

.widget-link:hover, .widget-link.active {
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary-hover);
}

.widget-count {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

.widget-sublist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
    padding-left: 16px;
    border-left: 2px solid rgba(193, 155, 75, 0.2);
    margin-left: 12px;
}

.widget-sublink {
    font-size: 14px;
    padding: 6px 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.widget-sublink.active {
    color: var(--color-secondary-hover);
    font-weight: 600;
}

.no-products {
    text-align: center;
    padding: 80px 24px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.no-products h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

/* Pagination Custom */
.catalog-pagination nav {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Product Detail Profile Page
   ========================================================================== */

.product-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 0px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--color-secondary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-model-mfg {
    font-size: 16px;
    color: var(--text-muted);
}

.price-box {
    background-color: var(--color-bg-light);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.detail-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.action-buttons > * {
    flex-grow: 1;
}

.box-title {
    font-size: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-bg-light);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 500;
    color: var(--text-muted);
    width: 40%;
}

.specs-table td:last-child {
    font-weight: 600;
}

.detailed-specs td {
    padding: 16px 20px;
}

.detailed-specs tr:nth-child(even) {
    background-color: var(--color-bg-light);
}

.order-form-container-box {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 48px;
}

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

.order-form {
    background-color: var(--color-bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.order-form .form-input {
    border-color: rgba(0,0,0,0.15);
    color: var(--text-dark);
    background-color: var(--color-bg-white);
}

.order-form .form-input:focus {
    border-color: var(--color-secondary);
}

/* Alert styles */
.alert-container {
    margin-top: 24px;
}

.alert {
    padding: 16px 24px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-text {
    font-weight: 600;
}

.alert-close {
    background: none;
    border: none;
    font-size: 24px;
    color: inherit;
    cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--color-primary);
    color: var(--text-light);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 48px;
}

.footer-desc {
    opacity: 0.7;
    margin: 20px 0;
    max-width: 320px;
}

.footer-title {
    color: var(--color-bg-white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--color-secondary);
    opacity: 1;
    padding-left: 4px;
}

.contacts-col .contact-item {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.contacts-col a:hover {
    color: var(--color-secondary);
}

.socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
}

.social-icon:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.privacy-link:hover {
    text-decoration: underline;
    color: var(--color-secondary);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

@media (max-width: 1024px) {
    .nav-menu, .header-contacts {
        display: none;
    }
    
    .burger-btn {
        display: flex;
    }

    .lead-form-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .catalog-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .product-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .order-form-container-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   USP Strip — Горизонтальная полоса преимуществ
   ========================================================================== */

.usp-strip-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a2e 100%);
    padding: 0;
    overflow: hidden;
}

.usp-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.usp-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    position: relative;
}

.usp-strip-item:last-child {
    border-right: none;
}

.usp-strip-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.usp-strip-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), #e8a840);
    border-radius: 12px;
    color: var(--color-primary);
}

.usp-strip-icon i,
.usp-strip-icon svg {
    width: 24px;
    height: 24px;
}

.usp-strip-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 160px;
}

@media (max-width: 1024px) {
    .usp-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .usp-strip-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .usp-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .usp-strip-item {
        padding: 24px 12px;
    }
    .usp-strip-item:nth-child(2n) {
        border-right: none;
    }
    .usp-strip-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* ==========================================================================
   Category Grid — Сетка типов техники
   ========================================================================== */

.category-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.category-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.category-grid-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-bg-light);
}

.category-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-grid-card:hover .category-grid-img {
    transform: scale(1.08);
}

.category-grid-label {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
}

.category-grid-arrow {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateX(-8px);
}

.category-grid-card:hover .category-grid-arrow {
    opacity: 1;
    transform: translateX(0);
}

.card-header-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

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

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

/* ==========================================================================
   Info Highlight — Блок оформления / условий
   ========================================================================== */

.info-highlight-section {
    padding: 64px 0;
}

.info-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.info-highlight-card {
    background: linear-gradient(135deg, #fef9f0 0%, #fff7e6 100%);
    border: 1px solid rgba(193, 155, 75, 0.15);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.info-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), #e8a840);
    opacity: 0;
    transition: var(--transition-smooth);
}

.info-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(193, 155, 75, 0.15);
}

.info-highlight-card:hover::before {
    opacity: 1;
}

.info-highlight-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), #e8a840);
    border-radius: 16px;
    margin: 0 auto 20px;
    color: white;
}

.info-highlight-icon i,
.info-highlight-icon svg {
    width: 28px;
    height: 28px;
}

.info-highlight-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.info-highlight-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-highlight-grid {
        grid-template-columns: 1fr;
    }
    .info-highlight-section {
        padding: 40px 0;
    }
}

/* ==========================================================================
   New Premium Features: Dropdown, Sliders, Infographics, Footer Overlay
   ========================================================================== */

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 260px;
    background: rgba(21, 21, 21, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
}

.nav-dropdown:hover .dropdown-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-secondary);
    padding-left: 20px;
}

.dropdown-item-icon {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    opacity: 0.9;
}

/* Header contacts update */
.icon-wa {
    width: 18px;
    height: 18px;
    color: #fff;
    margin-right: 6px;
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dynamic transitions for background image (Ken Burns & Panning) */
.hero-slide .hero-premium-bg {
    transform: scale(1) translateX(0);
    transition: transform 1s ease-in-out;
}

.hero-slide.active .hero-premium-bg {
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 1. Zoom In */
.hero-slide .hero-premium-bg.effect-zoom_in {
    transform: scale(1);
}
.hero-slide.active .hero-premium-bg.effect-zoom_in {
    transform: scale(1.12);
}

/* 2. Zoom Out */
.hero-slide .hero-premium-bg.effect-zoom_out {
    transform: scale(1.15);
}
.hero-slide.active .hero-premium-bg.effect-zoom_out {
    transform: scale(1);
}

/* 3. Pan Left */
.hero-slide .hero-premium-bg.effect-pan_left {
    transform: scale(1.1) translateX(15px);
}
.hero-slide.active .hero-premium-bg.effect-pan_left {
    transform: scale(1.1) translateX(-15px);
}

/* 4. Pan Right */
.hero-slide .hero-premium-bg.effect-pan_right {
    transform: scale(1.1) translateX(-15px);
}
.hero-slide.active .hero-premium-bg.effect-pan_right {
    transform: scale(1.1) translateX(15px);
}

/* 5. None */
.hero-slide .hero-premium-bg.effect-none,
.hero-slide.active .hero-premium-bg.effect-none {
    transform: scale(1) translateX(0);
}



/* Stagger text animations on slide transition */
.hero-slide .hero-premium-content > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.hero-slide.active .hero-premium-content > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-premium-title {
    transition-delay: 0.15s;
}

.hero-slide.active .hero-premium-desc {
    transition-delay: 0.3s;
}

.hero-slide.active .hero-premium-buttons {
    transition-delay: 0.45s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(193, 155, 75, 0.15);
    color: var(--color-secondary);
    border: 1px solid rgba(193, 155, 75, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

/* Slider Controls */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.hero-slider-arrow:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}
.hero-slider-prev { left: 32px; }
.hero-slider-next { right: 32px; }

@media (max-width: 768px) {
    .hero-slider-arrow {
        display: none;
    }
}

.hero-slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active {
    background: var(--color-secondary);
    width: 32px;
    border-radius: 50px;
}

/* Infographics Section */
.section-infographics {
    background-color: var(--color-bg-white);
    position: relative;
    z-index: 5;
    margin-top: -40px; /* Overlaps hero slightly for premium feel */
    padding-bottom: 48px;
}

.infographics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--color-bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-secondary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.info-card:hover .info-icon-box {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: rotateY(360deg);
}

.info-icon {
    width: 24px;
    height: 24px;
}

.info-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Footer Premium Background & Layout */
.footer {
    background: linear-gradient(135deg, rgba(21, 21, 21, 0.98) 0%, rgba(12, 12, 12, 0.99) 100%), 
                url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 0H0v80h80V0zM8 8h64v64H8V8z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    color: var(--text-light);
    border-top: 2px solid var(--color-secondary);
    padding-top: 80px;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 16px;
}

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

.social-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Responsive adjust for slider & infographics */
@media (max-width: 992px) {
    .infographics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-infographics {
        margin-top: -20px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 70vh;
    }
    
    .slider-arrow {
        width: 44px;
        height: 44px;
    }
    
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
}

@media (max-width: 576px) {
    .infographics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slider-section {
        height: 65vh;
        min-height: 450px;
    }
}

/* ==========================================================================
   REDESIGNED HOMEPAGE COMPONENTS
   ========================================================================== */

/* Header Redesign */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
}

.logo-company-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-company-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.header-phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header-working-hours {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    white-space: nowrap;
}

.btn-cta-header {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--color-secondary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--border-radius-btn);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-cta-header:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(193, 155, 75, 0.3);
}

/* Hero Split Layout */
.hero-split {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-primary);
}

.text-accent {
    color: var(--color-secondary) !important;
}

.hero-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-split-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: calc(70vh - var(--header-height));
}

.hero-split-content {
    color: #ffffff;
}

.hero-split-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    margin-bottom: 24px;
}

.hero-split-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-split-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-secondary {
    background: #ffffff !important;
    color: #151515 !important;
    border: 2px solid var(--color-secondary) !important;
}

.btn-hero-secondary:hover {
    background: rgba(193, 155, 75, 0.05) !important;
    border-color: var(--color-secondary-hover) !important;
    transform: translateY(-2px);
}

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

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

.btn-arrow {
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
    display: inline-block;
}

/* Hero Visual (Right Side) */
.hero-split-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-logo-large {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(193, 155, 75, 0.3));
    animation: heroLogoPulse 4s ease-in-out infinite;
}

@keyframes heroLogoPulse {
    0%, 100% { filter: drop-shadow(0 4px 30px rgba(193, 155, 75, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 8px 40px rgba(193, 155, 75, 0.5)); transform: scale(1.03); }
}

.hero-trailers-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.hero-trailer-item {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 12px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.hero-trailer-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.hero-trailer-item img {
    width: 100%;
    height: 130px;
    object-fit: contain;
}

.trailer-num {
    position: absolute;
    top: 8px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--color-secondary);
    opacity: 0.6;
    line-height: 1;
}

/* Benefits Bar */
.benefits-bar {
    background: #1e1e1e;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefits-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefits-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    padding: 10px 0;
}

.benefits-bar-icon {
    width: 44px;
    height: 44px;
    background: rgba(193, 155, 75, 0.15);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.benefits-bar-icon i, .benefits-bar-icon svg {
    width: 20px;
    height: 20px;
}

.benefits-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefits-bar-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.benefits-bar-text span {
    font-size: 12px;
    color: rgba(243, 244, 246, 0.65);
}

/* Catalog Cards V2 */
.section-catalog-cards {
    background: var(--color-bg-light);
}

.section-title-uppercase {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 1px;
    position: relative;
}

.section-title-uppercase::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 16px auto 0;
    border-radius: 2px;
}

.catalog-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.catalog-card-v2 {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.catalog-card-v2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.catalog-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.catalog-card-v2:hover::before {
    transform: scaleX(1);
}

.catalog-card-img {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.catalog-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.catalog-card-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.catalog-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.catalog-card-arrow {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.catalog-card-v2:hover .catalog-card-arrow {
    transform: translateX(6px);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 60px 0;
    color: var(--text-light);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stats-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.stats-bar-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stats-bar-icon {
    width: 50px;
    height: 50px;
    background: rgba(193, 155, 75, 0.12);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stats-bar-icon i, .stats-bar-icon svg {
    width: 24px;
    height: 24px;
}

.stats-bar-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-bar-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.1;
}

.stats-bar-num-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.stats-bar-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.stats-bar-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* WhatsApp button (contacts section) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--border-radius-btn);
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Utility classes */
.py-12 { padding-top: 64px; padding-bottom: 64px; }
.py-16 { padding-top: 96px; padding-bottom: 96px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.bg-light { background-color: var(--color-bg-light); }
.text-left { text-align: left !important; }
.rounded { border-radius: var(--border-radius) !important; }

.text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content .lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.text-image-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
}

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

/* Section headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.view-all-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.view-all-link:hover {
    color: var(--color-secondary-hover);
    transform: translateX(4px);
}

/* Responsive for new components */
@media (max-width: 1200px) {
    .catalog-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-split-desc {
        max-width: 100%;
    }
    
    .hero-split-buttons {
        justify-content: center;
    }
    
    .hero-split-visual {
        order: -1;
    }
    
    .hero-logo-large {
        max-width: 140px;
    }
    
    .benefits-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalog-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .text-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .logo-text-block {
        display: none;
    }
    
    .header-phone-block {
        display: none;
    }
    
    .btn-cta-header {
        display: none;
    }
    
    .hero-split {
        min-height: 70vh;
    }
    
    .hero-split-title {
        font-size: 28px;
    }
    
    .hero-trailers-stack {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .hero-trailer-item img {
        height: 70px;
    }
    
    .benefits-bar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .catalog-cards-row {
        grid-template-columns: 1fr;
    }
    
    .hero-split-buttons {
        flex-direction: column;
    }
    
    .hero-split-buttons .btn {
        width: 100%;
    }
    
    .hero-trailers-stack {
        grid-template-columns: 1fr;
    }
    
    .hero-trailer-item img {
        height: 100px;
    }
}

/* ==========================================================================
   Home Redesign Styles: Premium Clean Dashboard Look
   ========================================================================== */

.home-redesign-wrapper {
    background-color: #f8fafc;
    padding: 60px 0;
}

.redesign-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 993px) {
    .row-stock-leasing {
        grid-template-columns: 3fr 1fr;
    }
    .row-service-deliveries {
        grid-template-columns: 1fr 1fr;
    }
    .row-about-partners {
        grid-template-columns: 1.3fr 0.7fr;
    }
    .row-reviews-faq {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.redesign-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 16px;
}

.card-title-main {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #151515;
    text-transform: uppercase;
    position: relative;
}

.card-header-link {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header-link:hover {
    color: var(--color-secondary-hover);
}

.card-header-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.card-header-link:hover svg {
    transform: translateX(4px);
}

/* Premium Gold Gradients for Buttons inside Redesign Content */
.home-redesign-wrapper .btn-primary, 
.modal-content-box .btn-primary {
    background: linear-gradient(135deg, #c19b4b 0%, #a88137 100%) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(193, 155, 75, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.home-redesign-wrapper .btn-primary:hover, 
.modal-content-box .btn-primary:hover {
    background: linear-gradient(135deg, #a88137 0%, #8e6c2b 100%) !important;
    box-shadow: 0 6px 20px rgba(193, 155, 75, 0.35) !important;
    transform: translateY(-2px);
}

/* Row 1: Stock Grid */
.stock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stock-product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.stock-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: var(--color-secondary);
}

.stock-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: #f9fafb;
    border-radius: 6px;
}

.stock-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stock-product-card:hover .stock-img {
    transform: scale(1.03);
}

.in-stock-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.in-stock-badge.badge-available {
    background-color: #e6f7ed;
    color: #10b981;
}

.in-stock-badge.badge-order {
    background-color: #fffbeb;
    color: #d97706;
}

.in-stock-badge.badge-sold {
    background-color: #fef2f2;
    color: #ef4444;
}

.stock-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.stock-specs-list {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}

.stock-spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 4px;
}

.stock-spec-key {
    color: #9ca3af;
}

.stock-spec-val {
    color: #374151;
    font-weight: 600;
}

.stock-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 12px;
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    padding-top: 10px;
}

.stock-location svg {
    width: 14px;
    height: 14px;
    color: var(--color-secondary);
}

/* Row 1: Leasing Card */
.leasing-card {
    background-color: #ffffff;
}

.leasing-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.leasing-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leasing-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.leasing-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leasing-feature-item:hover .leasing-icon-wrapper {
    transform: scale(1.1);
    background-color: rgba(193, 155, 75, 0.18);
}

.leasing-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.leasing-feature-text {
    font-size: 13px;
    color: #374151;
    font-weight: 700;
}

/* Row 2: Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.services-grid .service-card {
    flex: 0 1 calc(25% - 15px);
    min-width: 250px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: var(--color-secondary);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-badge {
    width: 42px;
    height: 42px;
    background: var(--color-secondary);
    color: #ffffff;
    border-radius: 6px;
    border: 3px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -21px;
    margin-left: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-badge {
    transform: translateY(-2px) scale(1.08);
    background-color: var(--color-secondary-hover);
}

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

.service-info {
    padding: 12px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.service-card-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* Row 2: Deliveries Grid */
.deliveries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.delivery-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: var(--color-secondary);
}

.delivery-img-wrapper {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.delivery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-location {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.delivery-desc {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 12px;
}

.delivery-year {
    font-size: 11px;
    color: #9ca3af;
    margin-top: auto;
    font-weight: 600;
}

/* Row 3: About Grid */
.about-redesign-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.about-redesign-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.about-redesign-text p {
    margin-bottom: 16px;
}

.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.about-benefit-item {
    display: flex;
    gap: 12px;
}

.about-benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-benefit-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}

.about-redesign-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 280px;
}

.about-redesign-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Row 3: Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.partner-logo-badge {
    height: 54px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-badge:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 14px rgba(193, 155, 75, 0.08);
    transform: translateY(-2px);
}

.partner-logo-badge span {
    font-size: 16px;
    font-weight: 800;
    color: #374151;
    letter-spacing: 0.5px;
}

.partner-logo-badge.logo-saf span { font-family: 'Montserrat', sans-serif; font-style: italic; }
.partner-logo-badge.logo-bpw span { font-weight: 900; border-bottom: 2px solid var(--color-secondary); }
.partner-logo-badge.logo-wabco span { letter-spacing: 2px; color: #111827; }
.partner-logo-badge.logo-jost span { font-family: sans-serif; text-transform: uppercase; font-weight: 900; }
.partner-logo-badge.logo-hyva span { color: #f97316; font-style: italic; }

.partners-btn-wrapper {
    margin-top: auto;
    padding-top: 24px;
}

/* Row 4: Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.review-quote-icon {
    color: rgba(193, 155, 75, 0.15);
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author-info {
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}

.review-author-name {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}

.review-author-city {
    font-size: 11px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 2px;
}

/* Row 4: FAQ Accordion */
.faq-content-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.faq-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-girl-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .faq-content-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq-image-container {
        order: 1;
    }
}

.faq-accordion-redesign {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-redesign {
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question-redesign {
    padding: 16px;
    font-weight: 700;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-question-redesign::-webkit-details-marker {
    display: none;
}

.faq-question-redesign::after {
    content: '+';
    position: absolute;
    right: 16px;
    font-size: 18px;
    font-weight: 400;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
    color: #9ca3af;
}

.faq-item-redesign[open] .faq-question-redesign::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--color-secondary);
}

.faq-answer-redesign {
    padding: 0 16px 16px 16px;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.5;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}

/* Row 5: Dark Lead Banner */
.dark-lead-banner {
    background: radial-gradient(circle at 85% 15%, rgba(193, 155, 75, 0.12) 0%, rgba(21, 21, 21, 0) 55%), #151515;
    border-radius: 12px;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 60px;
}

.dark-lead-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 1;
}

.dark-lead-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.dark-lead-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.dark-lead-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 500px;
}

.dark-lead-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dark-lead-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dark-lead-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dark-lead-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.dark-lead-feature-icon svg {
    width: 16px;
    height: 16px;
}

.dark-lead-feature-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.dark-lead-right .btn-primary {
    align-self: flex-start;
}

/* Modal Form Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content-box {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-overlay.open .modal-content-box {
    transform: translateY(0);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #374151;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111827;
}

.modal-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .stock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .row-stock-leasing, .row-service-deliveries, .row-about-partners, .row-reviews-faq {
        grid-template-columns: 1fr !important;
    }
    
    .about-redesign-container {
        grid-template-columns: 1fr;
    }
    
    .about-redesign-image-wrapper {
        height: 220px;
        order: -1;
    }
    
    .dark-lead-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dark-lead-banner {
        padding: 48px 0;
        margin-bottom: 40px;
    }
    
    .dark-lead-right .btn-primary {
        align-self: stretch;
    }
}

@media (max-width: 768px) {
    .deliveries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stock-grid, .services-grid, .deliveries-grid, .partners-grid {
        grid-template-columns: 1fr !important;
    }
    .about-benefits-grid {
        grid-template-columns: 1fr;
    }
    .redesign-card {
        padding: 20px;
    }
    .dark-lead-title {
        font-size: 22px;
    }
}

/* ==========================================================================
   Inner Pages Clean Dashboard Aesthetics
   ========================================================================== */

.inner-page-hero {
    background-color: #151515;
    padding: 60px 0;
    border-bottom: 3px solid var(--color-secondary);
}

.inner-page-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.inner-page-breadcrumbs {
    font-size: 13px;
    color: #9ca3af;
}

.inner-page-breadcrumbs a {
    color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.inner-page-breadcrumbs a:hover {
    color: var(--color-secondary-hover);
}

.bg-light-gray {
    background-color: #f8fafc;
}

.inner-page-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 40px;
}

.inner-section-heading {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
    margin-bottom: 20px;
}

/* About Page Detail CSS */
.about-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.inner-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
    border-top: 1px solid #f3f4f6;
    padding-top: 24px;
}

.inner-stat-card {
    text-align: center;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px 16px;
}

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.why-choose-bonum-section {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

.section-subtitle-premium {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-desc-premium {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 28px;
}

.features-clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-clean-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-clean-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.feature-clean-card .feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.feature-clean-card .feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.feature-clean-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.feature-clean-card p {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}

/* Services Page CSS */
.services-container-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detail-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--color-secondary);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

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

.service-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.service-text p {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}

/* Table styling */
.pricing-section-wrapper .table-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 16px;
}

.table-container {
    overflow-x: auto;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.premium-table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #374151;
    padding: 14px 16px;
    border-bottom: 2px solid #e5e7eb;
}

.premium-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.premium-table tr:hover td {
    background-color: #f9fafb;
}

.service-cta-banner {
    background: radial-gradient(circle at 90% 10%, rgba(193, 155, 75, 0.1) 0%, rgba(21, 21, 21, 0) 50%), #151515;
    border-radius: 8px;
    padding: 32px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.service-cta-banner h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-cta-banner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 8px;
}

/* Delivery Page CSS */
.delivery-container-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.delivery-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.delivery-method-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 28px 24px;
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.method-icon svg {
    width: 22px;
    height: 22px;
}

.delivery-method-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.delivery-method-card p {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}

.delivery-hubs-section h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hub-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
}

.hub-city {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.hub-days {
    font-size: 12px;
    color: var(--color-secondary);
    font-weight: 600;
}

.documents-checklist-card {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.documents-checklist-card h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.documents-checklist-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.doc-list li svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Projects Page CSS */
.projects-container-page {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.projects-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.project-detailed-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.project-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.project-main-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
    max-width: 80%;
}

.project-client {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 16px;
}

.project-main-info p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-result {
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
    font-size: 13px;
    color: #1f2937;
}

.project-result strong {
    color: var(--color-secondary);
}

/* Contacts Page CSS */
.contacts-grid-page {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.contacts-directory-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.directory-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.dir-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.dir-icon svg {
    width: 18px;
    height: 18px;
}

.dir-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dir-text span, .dir-text a {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.dir-text a {
    color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.dir-text a:hover {
    color: var(--color-secondary-hover);
}

.contacts-card-form {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.contacts-card-form h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 24px;
}

.inner-contact-form .form-group {
    margin-bottom: 16px;
}

.inner-contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    margin-bottom: 6px;
}

.inner-contact-form .form-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

.contacts-map-full {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.contacts-map-full h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.map-container-inner {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 400px;
}

/* Policy Page CSS */
.policy-container-page h2 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    margin-top: 32px;
    margin-bottom: 12px;
}

.policy-container-page p {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Responsive inner pages overrides */
@media (max-width: 992px) {
    .inner-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-clean-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-list {
        grid-template-columns: 1fr;
    }
    
    .delivery-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacts-grid-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .inner-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-clean-grid {
        grid-template-columns: 1fr;
    }
    
    .hubs-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-directory-list {
        grid-template-columns: 1fr;
    }
    
    .inner-page-wrapper {
        padding: 20px;
    }
    
    .project-detailed-card {
        padding: 20px;
    }
    
    .project-tag {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .project-main-info h4 {
        max-width: 100%;
    }
}

/* ==========================================================================
   HOMEPAGE PREMIUM REDESIGN STYLES (BIG SPEC MACHINERY)
   ========================================================================== */

/* Text-Based Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.logo-text:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.logo-line-1 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo-line-2 {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 1px;
    margin-top: 1px;
}

/* Premium Hero Section */
.hero-split-premium {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: #151515;
}

.hero-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right 10% center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-premium-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-premium-content {
    max-width: 600px;
    color: #ffffff;
}

.hero-premium-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.2vw, 50px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-premium-title .text-accent {
    color: var(--color-secondary);
}

.hero-premium-desc {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.hero-premium-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* Premium Hero Buttons */
.btn-premium-gold {
    background-color: var(--color-secondary) !important;
    color: #151515 !important;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-premium-gold:hover {
    background-color: var(--color-secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 155, 75, 0.3);
}

.btn-premium-outline {
    background-color: transparent !important;
    color: #000000 !important;
    border: 1px solid var(--color-secondary) !important;
    -webkit-text-stroke: 1px #ffffff;
    paint-order: stroke fill;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-premium-outline:hover {
    background-color: rgba(193, 155, 75, 0.1) !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

.btn-premium-gold svg, .btn-premium-outline svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.btn-premium-outline svg {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 1px #ffffff);
}

/* Bottom Highlights Bar */
.hero-highlights-bar {
    position: relative;
    width: 100%;
    background: #151515;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    z-index: 3;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 48px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    font-size: 24px;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(193, 155, 75, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-text strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.highlight-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Stock & Leasing Combined Section */
.stock-leasing-section {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.stock-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stock-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.stock-section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: #151515;
    letter-spacing: 0.5px;
    margin: 0;
}

.stock-view-all-link {
    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-view-all-link:hover {
    color: var(--color-secondary-hover);
}

.stock-view-all-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.stock-view-all-link:hover svg {
    transform: translateX(4px);
}

.stock-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Redesigned Product Card */
.premium-product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px;
}

.premium-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
    border-color: var(--color-secondary);
}

.premium-prod-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 16px;
}

.premium-prod-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.premium-product-card:hover .premium-prod-img {
    transform: scale(1.05);
}

.premium-prod-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-prod-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.premium-spec-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    color: #4b5563;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.premium-spec-badge .spec-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

.premium-prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 14px;
    margin-top: auto;
}

.premium-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot-green {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.premium-btn-more {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    padding: 6px 14px;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

.premium-btn-more:hover {
    background: var(--color-secondary);
    color: #ffffff !important;
}

/* Premium Leasing Card */
.leasing-promo-column {
    display: flex;
    height: 100%;
}

.premium-leasing-card {
    background-color: #151515;
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.leasing-card-tag {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.leasing-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.leasing-card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    padding: 0;
}

.leasing-card-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.leasing-bullet-icon {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.leasing-card-bullets li span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.leasing-card-btn {
    background-color: var(--color-secondary);
    color: #151515 !important;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    width: 100%;
    transition: var(--transition-smooth);
    z-index: 2;
    margin-top: auto;
}

.leasing-card-btn:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
}

.leasing-percent-bg {
    position: absolute;
    bottom: -10px;
    right: -20px;
    opacity: 0.08;
    color: var(--color-secondary);
    font-size: 150px;
    transform: rotate(15deg);
    pointer-events: none;
    line-height: 1;
}

.leasing-percent-bg svg {
    width: 150px;
    height: 150px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .stock-leasing-section {
        grid-template-columns: 1fr;
    }
    
    .stock-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-split-premium {
        height: auto;
        min-height: 600px;
    }
    
    .hero-premium-container {
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .stock-cards-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-split-premium {
        height: auto;
        min-height: 650px;
    }
    
    .hero-premium-container {
        padding-bottom: 60px;
    }
}

/* Header WhatsApp & Language Switcher styling */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp-header {
    background-color: #25D366 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    border: none !important;
    transition: var(--transition-smooth) !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2) !important;
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3) !important;
}

.icon-wa-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: inline-block;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    margin-right: 4px;
}

.lang-btn {
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-smooth);
    color: #ffffff;
    user-select: none;
}

.lang-btn.active {
    opacity: 1;
    color: var(--color-secondary);
}

.lang-btn:hover {
    opacity: 0.9;
    color: var(--color-secondary);
}

.lang-divider {
    opacity: 0.3;
    color: #ffffff;
    user-select: none;
}

/* ==========================================================================
   PROMOTIONAL BANNERS GRID SECTION
   ========================================================================== */

.promo-banners-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.promo-section-title-main {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: #151515;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-banner-card {
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.promo-banner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(21, 21, 21, 0.2) 0%, rgba(21, 21, 21, 0.85) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.promo-banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.promo-banner-card:hover::after {
    background-image: linear-gradient(180deg, rgba(21, 21, 21, 0.1) 0%, rgba(21, 21, 21, 0.95) 100%);
}

.promo-card-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-card-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.promo-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.promo-card-desc {
    display: inline-block;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(21, 21, 21, 0.4);
    backdrop-filter: blur(4px);
    color: #ffffff;
    transition: var(--transition-smooth);
}

.promo-banner-card:hover .promo-card-desc {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #151515;
}

.promo-badge-red {
    display: inline-block;
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 900;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

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

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

/* ==========================================================================
   PAGE BLOCKS WRAPPER — Centered margins for content blocks (not full-width)
   ========================================================================== */
/* All content blocks get 10% side margins to keep layouts centered and clean */
.page-blocks-wrapper > *:not(.hero-split-premium):not(section.section-hero):not(section.inner-page-hero):not(.hero-highlights-bar):not(section.about-hero-section):not(section.services-hero-section):not(section.services-list-section):not(section.services-why-how-section):not(section.contacts-hero-section):not(section.contacts-main-section):not(section.contacts-bottom-section) {
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 32px;
}

/* Full-width blocks have no side margins or paddings */
.page-blocks-wrapper > .hero-split-premium,
.page-blocks-wrapper > section.section-hero,
.page-blocks-wrapper > section.inner-page-hero,
.page-blocks-wrapper > .hero-highlights-bar,
.page-blocks-wrapper > section.about-hero-section,
.page-blocks-wrapper > section.services-hero-section,
.page-blocks-wrapper > section.services-list-section,
.page-blocks-wrapper > section.services-why-how-section,
.page-blocks-wrapper > section.contacts-hero-section,
.page-blocks-wrapper > section.contacts-main-section,
.page-blocks-wrapper > section.contacts-bottom-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Responsive: reduce margins on smaller screens */
@media (max-width: 1200px) {
    .page-blocks-wrapper > *:not(.hero-split-premium):not(section.section-hero):not(section.inner-page-hero):not(.hero-highlights-bar):not(section.about-hero-section):not(section.services-hero-section):not(section.services-list-section):not(section.services-why-how-section):not(section.contacts-hero-section):not(section.contacts-main-section):not(section.contacts-bottom-section) {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    .page-blocks-wrapper > *:not(.hero-split-premium):not(section.section-hero):not(section.inner-page-hero):not(.hero-highlights-bar):not(section.about-hero-section):not(section.services-hero-section):not(section.services-list-section):not(section.services-why-how-section):not(section.contacts-hero-section):not(section.contacts-main-section):not(section.contacts-bottom-section) {
        margin-left: 16px;
        margin-right: 16px;
    }
}

/* Floating WhatsApp Button with Pulsating Glow */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: waPulse 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn:active {
    transform: scale(0.95);
}

.wa-float-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover .wa-float-icon {
    transform: rotate(10deg);
}

/* Pulsating glow animation */
@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ==========================================================================
   Custom About Page Design Redesign
   ========================================================================== */

.about-hero-section {
    background-color: #151515;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--color-secondary);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-text {
    color: #ffffff;
}

.about-hero-title {
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #ffffff;
}

.about-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-hero-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-hero-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    border: 1px solid rgba(193, 155, 75, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.about-hero-feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-hero-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.about-hero-feature-content p {
    font-size: 14px;
    color: #9ca3af;
}

.about-hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* About Intro ("О нас") */
.about-intro-section {
    padding: 80px 0 60px 0;
    background-color: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-heading {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.25;
}

.about-intro-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-intro-text p strong {
    color: #111827;
}

.about-intro-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.about-btn-gold {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.about-btn-gold:hover {
    background-color: var(--color-secondary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 155, 75, 0.4);
}

.about-btn-gold svg {
    width: 16px;
    height: 16px;
}

.about-intro-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 14px;
}

.about-intro-trust svg {
    color: var(--color-secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* About Stats Section */
.about-stats-section {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-stats-wrapper {
    background-color: #151515;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
}

.about-stat-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

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

.about-stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.1;
}

.about-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 2px;
}

.about-stat-desc {
    font-size: 11px;
    color: #9ca3af;
}

/* About Advantages Section */
.about-advantages-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.about-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-tag-center {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-heading-center {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.about-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-advantage-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 35px 30px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.about-advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.about-advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.about-advantage-icon svg {
    width: 22px;
    height: 22px;
}

.about-advantage-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.about-advantage-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4b5563;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .about-stat-card:nth-child(2) {
        border-right: none;
    }
    .about-advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-stats-section {
        width: 100%;
        border-radius: 0;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    .about-stat-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .about-intro-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* ==========================================================================
   Custom Services Page Design Redesign
   ========================================================================== */

.services-hero-section {
    background-color: #151515;
    padding: 80px 0 120px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--color-secondary);
}

.services-hero-text {
    color: #ffffff;
}

.services-hero-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.services-hero-title {
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.2;
}

.services-hero-title .text-gold {
    color: var(--color-secondary);
}

.services-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 600px;
}

.services-hero-mini-features {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.services-mini-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 280px;
}

.services-mini-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    border: 1px solid rgba(193, 155, 75, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.services-mini-feature-icon svg {
    width: 20px;
    height: 20px;
}

.services-mini-feature-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.services-mini-feature-content p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.4;
}

/* Trust Bar */
.services-trust-bar-section {
    margin-top: -60px;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    z-index: 10;
}

.services-trust-bar-wrapper {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    border: 1px solid #eef2f6;
}

.services-trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-trust-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.services-trust-card:not(:last-child) {
    border-right: 1px solid #eef2f6;
    padding-right: 15px;
}

.services-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.services-trust-icon svg {
    width: 20px;
    height: 20px;
}

.services-trust-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.services-trust-content p {
    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
}

/* Services List Section */
.services-list-section {
    padding: 100px 0 60px 0;
    background-color: #ffffff;
}

.services-list-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 40px;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(193, 155, 75, 0.3);
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(193, 155, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-detail-card:hover .service-detail-icon {
    background-color: var(--color-secondary);
    color: #ffffff;
}

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

.service-detail-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.service-detail-info p {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}

/* CTA Section */
.services-cta-section {
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.services-cta-wrapper {
    border-radius: 12px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.services-cta-content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.services-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.2);
    border: 1px solid rgba(193, 155, 75, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.services-cta-icon svg {
    width: 26px;
    height: 26px;
}

.services-cta-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.services-cta-text p {
    font-size: 14px;
    color: #d1d5db;
    max-width: 550px;
}

.services-cta-btn {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.services-cta-btn:hover {
    background-color: var(--color-secondary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 155, 75, 0.4);
}

.services-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Why & How Section */
.services-why-how-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.services-why-how-grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 60px;
    align-items: start;
}

.services-why-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 30px;
}

.services-why-btn {
    background-color: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.services-why-btn:hover {
    background-color: #111827;
    color: #ffffff;
    border-color: #111827;
    transform: translateY(-2px);
}

.services-why-btn svg {
    width: 14px;
    height: 14px;
}

.services-reasons-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.reason-icon svg {
    width: 20px;
    height: 20px;
}

.reason-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.reason-content p {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.5;
}

.services-why-how-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 50px 0;
}

.services-process-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.process-steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

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

.process-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.process-icon-box svg {
    width: 20px;
    height: 20px;
}

.process-step h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
    max-width: 140px;
}

.process-step-arrow {
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.process-step-arrow svg {
    width: 20px;
    height: 20px;
}

/* Responsiveness for Services */
@media (max-width: 1024px) {
    .services-trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-trust-card:nth-child(2) {
        border-right: none;
    }
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-why-how-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-steps-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .process-step {
        flex: unset;
        width: calc(50% - 30px);
    }
    .process-step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-trust-bar-grid {
        grid-template-columns: 1fr;
    }
    .services-trust-card {
        border-right: none !important;
        border-bottom: 1px solid #eef2f6;
        padding-bottom: 15px;
    }
    .services-trust-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .services-list-grid {
        grid-template-columns: 1fr;
    }
    .services-cta-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 30px;
        text-align: center;
    }
    .services-cta-content {
        flex-direction: column;
        gap: 16px;
    }
    .process-step {
        width: 100%;
    }
}


/* ==========================================================================
   Custom Contacts Page Design Redesign
   ========================================================================== */

.contacts-hero-section {
    background-color: #151515;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--color-secondary);
}

.contacts-hero-text {
    color: #ffffff;
}

.contacts-hero-title {
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.2;
}

.contacts-hero-breadcrumbs {
    font-size: 14px;
    color: var(--color-secondary);
    margin-bottom: 24px;
    font-weight: 600;
}

.contacts-hero-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contacts-hero-breadcrumbs a:hover {
    color: var(--color-secondary);
}

.contacts-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 650px;
}

/* Contacts Main Section */
.contacts-main-section {
    padding: 80px 0 40px 0;
    background-color: #f9fafb;
}

.contacts-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

.contacts-details-card,
.contacts-form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow-premium);
}

.contacts-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    border-left: 3px solid var(--color-secondary);
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacts-section-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.5;
}

.contacts-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #eef2f6;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover {
    border-color: rgba(193, 155, 75, 0.3);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(193, 155, 75, 0.1);
    border: 1px solid rgba(193, 155, 75, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
}

.contact-detail-info {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    line-height: 1.45;
}

.contact-detail-value a {
    color: #111827;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-detail-value a:hover {
    color: var(--color-secondary);
}

.manager-name {
    color: var(--color-secondary);
    font-weight: 700;
    display: block;
    font-size: 11px;
    margin-top: 2px;
}

/* Contacts Form styles */
.contacts-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts-form-input {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition-smooth);
    color: #111827;
}

.contacts-form-input::placeholder {
    color: #9ca3af;
}

.contacts-form-input:focus {
    border-color: var(--color-secondary);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 155, 75, 0.15);
}

.contacts-form-textarea {
    resize: vertical;
}

.form-label-tag {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
}

.contacts-form-file {
    font-size: 13px;
    color: #4b5563;
}

.contacts-form-submit-btn {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.contacts-form-submit-btn:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 155, 75, 0.4);
}

.contacts-form-submit-btn svg {
    width: 16px;
    height: 16px;
}

/* Contacts Bottom Section */
.contacts-bottom-section {
    padding: 20px 0 80px 0;
    background-color: #f9fafb;
}

.contacts-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.contacts-map-card,
.contacts-quick-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow-premium);
}

.contacts-map-title,
.contacts-quick-title {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-transform: uppercase;
}

.contacts-map-title svg {
    display: inline-block;
    vertical-align: middle;
    color: var(--color-secondary);
    margin-right: 4px;
}

.contacts-map-subtitle,
.contacts-quick-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
}

.contacts-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    height: 350px;
}

.contacts-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contacts-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    background-color: #f9fafb;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.quick-contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: rgba(193, 155, 75, 0.3);
    background-color: #ffffff;
}

.quick-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.quick-btn-icon svg {
    width: 20px;
    height: 20px;
}

.quick-btn-icon.wa-icon {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.quick-btn-icon.phone-icon {
    background-color: rgba(193, 155, 75, 0.1);
    color: var(--color-secondary);
}

.quick-btn-icon.email-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.quick-btn-info h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.quick-btn-info p {
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.3;
    word-break: break-all;
}

.contacts-inner-cta-box {
    background-color: #151515;
    border-radius: 8px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contacts-cta-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contacts-cta-icon-wrapper {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contacts-cta-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.contacts-cta-desc h4 {
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.contacts-cta-desc p {
    font-size: 11px;
    color: #9ca3af;
    margin: 0;
}

.contacts-cta-btn {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    border: none;
}

.contacts-cta-btn:hover {
    background-color: var(--color-secondary-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(193, 155, 75, 0.3);
}

.contacts-cta-btn svg {
    width: 14px;
    height: 14px;
}

/* Responsiveness for Contacts */
@media (max-width: 1024px) {
    .contacts-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contacts-bottom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contacts-details-grid {
        grid-template-columns: 1fr;
    }
    .contacts-quick-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .contacts-inner-cta-box {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        text-align: center;
        padding: 20px;
    }
    .contacts-cta-content {
        flex-direction: column;
        gap: 12px;
    }
    .contacts-cta-btn {
        justify-content: center;
    }
}

/* ==========================================================================
   Comprehensive Mobile & Orientation Optimization (Prevents Photo & Text Clipping)
   ========================================================================== */

/* Global viewport boundary protection */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Ensure images and media fit within parent containers on all screen sizes */
img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Global text wrapping & word break prevention against clipping */
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, div,
.about-hero-title, .services-hero-title, .contacts-hero-title, 
.hero-split-title, .inner-page-title, .product-title,
.about-heading, .about-heading-center, .services-list-title, .services-why-title,
.section-title, .modal-title, .promo-card-title, .catalog-card-title {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Responsive Breadcrumbs wrapping */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    word-break: break-word;
}

/* Responsive Specifications & Data Tables */
.specs-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    word-break: break-word;
}

.specs-table td {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Mobile Typography & Element Scaling (Max-Width 768px - Tablet / Mobile Portrait & Landscape) */
@media (max-width: 768px) {
    h1, 
    .about-hero-title, 
    .services-hero-title, 
    .contacts-hero-title, 
    .hero-split-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    h2, 
    .about-heading, 
    .about-heading-center, 
    .services-list-title, 
    .services-why-title, 
    .inner-page-title, 
    .section-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    h3, .modal-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .product-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .detail-price {
        font-size: 24px !important;
    }

    .specs-table td, 
    .detailed-specs td {
        padding: 10px 8px !important;
        font-size: 13px !important;
    }

    .container {
        padding: 0 16px !important;
    }

    /* Floating WhatsApp button safe spacing on small screens */
    .floating-whatsapp-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 52px !important;
        height: 52px !important;
    }
    
    .wa-float-icon {
        width: 26px !important;
        height: 26px !important;
    }
}

/* Mobile Typography & Card Adjustments (Max-Width 480px - Mobile Portrait) */
@media (max-width: 480px) {
    h1, 
    .about-hero-title, 
    .services-hero-title, 
    .contacts-hero-title, 
    .hero-split-title {
        font-size: 22px !important;
        line-height: 1.25 !important;
    }

    h2, 
    .about-heading, 
    .about-heading-center, 
    .services-list-title, 
    .services-why-title, 
    .inner-page-title, 
    .section-title {
        font-size: 19px !important;
        line-height: 1.3 !important;
    }

    .product-title {
        font-size: 18px !important;
    }

    .detail-price {
        font-size: 20px !important;
    }

    .promo-banner-card {
        height: auto !important;
        min-height: 280px !important;
        padding: 24px 16px !important;
    }

    .thumbnails-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }

    .hero-trailers-stack {
        grid-template-columns: 1fr !important;
    }

    .modal-content-box {
        padding: 24px 16px !important;
    }

    .contact-detail-item {
        padding: 12px 14px !important;
    }
}

/* Landscape Mode Adjustments for Short Screen Heights (< 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .drawer-content {
        padding: 20px 16px !important;
        gap: 20px !important;
    }

    .drawer-link {
        font-size: 16px !important;
    }

    .modal-content-box {
        padding: 20px 16px !important;
        max-height: 95vh !important;
    }
}

/* Hero Banners Mobile Optimization - Prevents Background Image & Content Clipping */
@media (max-width: 768px) {
    .hero-split-premium,
    .section-hero,
    .about-hero-section,
    .services-hero-section,
    .contacts-hero-section {
        height: auto !important;
        min-height: 380px !important;
        padding: 24px 0 28px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .hero-premium-bg {
        background-size: cover !important;
        background-position: center center !important;
    }

    /* Disable transform zoom scaling on mobile so edges of machinery photo aren't cut off */
    .hero-slide .hero-premium-bg.effect-zoom_in,
    .hero-slide.active .hero-premium-bg.effect-zoom_in,
    .hero-slide .hero-premium-bg.effect-zoom_out,
    .hero-slide.active .hero-premium-bg.effect-zoom_out,
    .hero-slide .hero-premium-bg.effect-pan_left,
    .hero-slide.active .hero-premium-bg.effect-pan_left,
    .hero-slide .hero-premium-bg.effect-pan_right,
    .hero-slide.active .hero-premium-bg.effect-pan_right {
        transform: scale(1) translateX(0) !important;
    }

    .hero-premium-container {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-premium-content {
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-premium-title {
        font-size: clamp(20px, 6vw, 28px) !important;
        line-height: 1.25 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .hero-premium-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }

    .hero-premium-buttons,
    .hero-buttons {
        display: flex !important;
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 6px !important;
        margin-top: 4px !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 360px !important;
    }

    .hero-premium-buttons .btn,
    .hero-buttons .btn,
    .btn-premium-gold,
    .btn-premium-outline {
        width: auto !important;
        flex: 0 1 auto !important;
        max-width: 100% !important;
        min-width: auto !important;
        padding: 6px 12px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        border-radius: 4px !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    .hero-premium-buttons .btn svg,
    .hero-premium-buttons .btn .btn-icon,
    .hero-buttons .btn svg {
        width: 12px !important;
        height: 12px !important;
    }

    .promo-banner-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .promo-card-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .promo-lead-btn {
        padding: 4px 10px !important;
        font-size: 11px !important;
        bottom: 8px !important;
        right: 8px !important;
    }

    .promo-card-action-btn {
        padding: 4px 10px !important;
        font-size: 10px !important;
        margin-top: 12px !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        align-self: center !important;
    }

    .hero-premium-buttons:has(> :only-child),
    .hero-buttons:has(> :only-child) {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 4px !important;
        margin-bottom: 0 !important;
    }

    .hero-premium-buttons > .btn:only-child,
    .hero-buttons > .btn:only-child {
        margin-left: auto !important;
        margin-right: auto !important;
        align-self: center !important;
    }

    .dark-lead-grid {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .dark-lead-right .btn-primary,
    .dark-lead-banner .btn,
    .services-cta-btn,
    .contacts-cta-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        width: auto !important;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 14px !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-split-premium,
    .section-hero,
    .about-hero-section,
    .services-hero-section,
    .contacts-hero-section {
        min-height: 320px !important;
        padding: 16px 0 20px 0 !important;
    }

    .hero-premium-bg {
        background-position: center top !important;
    }

    .hero-premium-title {
        font-size: clamp(18px, 5.5vw, 24px) !important;
        margin-top: 0 !important;
        margin-bottom: 6px !important;
    }

    .hero-premium-desc {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }

    .hero-premium-buttons,
    .hero-buttons {
        margin-top: 4px !important;
        margin-bottom: 0 !important;
        justify-content: center !important;
    }

    .hero-premium-buttons .btn,
    .hero-buttons .btn,
    .btn-premium-gold,
    .btn-premium-outline {
        padding: 5px 10px !important;
        font-size: 11px !important;
    }

    .dark-lead-right .btn-primary,
    .dark-lead-banner .btn,
    .services-cta-btn,
    .contacts-cta-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 12px !important;
        margin-bottom: 0 !important;
    }
}




