/* ===========================================
   INDUSTRIAL CHARCOAL COLOR SCHEME
   Bold & Minimalist Industrial Design
   =========================================== */

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

:root {
    /* Brand Colors - Industrial Charcoal Theme */
    --primary: #2D3748;
    --primary-dark: #1A202C;
    --primary-light: #4A5568;
    --accent: #F59E0B;

    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --bg-dark: #111827;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 32px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-selector {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    color: var(--primary);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-weight: 800;
    font-size: 18px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border-radius: 6px;
}

.nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.dropdown-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-col a {
    display: block;
    padding: 8px 0;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-col a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .dropdown {
    position: relative;
}

.nav-actions .dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.nav-actions .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-actions .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-actions .dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Nested Dropdown Styles */
.dropdown-nested {
    position: relative;
}

.dropdown-nested .dropdown-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-nested:hover .dropdown-parent {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-nested .dropdown-submenu {
    position: absolute;
    right: 100%;
    left: auto;
    top: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s;
    z-index: 1001;
}

.dropdown-nested:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Prevent horizontal scroll from dropdowns */
body {
    overflow-x: hidden;
}

.dropdown-nested .dropdown-submenu a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-nested .dropdown-submenu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.btn-search {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--gray-200);
}

.btn-quote {
    background: var(--accent);
    color: var(--gray-900);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quote:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 120px 0 80px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--gray-900);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--gray-900);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-hero-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   LOCATION FINDER
   ======================================== */
.location-finder {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

.finder-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid var(--accent);
}

.finder-box h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.finder-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
}

.postal-input,
.container-type-select {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.container-type-select {
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%236B7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: #1F2937;
    background-color: white;
    cursor: pointer;
}

.postal-input:focus,
.container-type-select:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-find {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-find:hover {
    background: var(--primary-dark);
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.featured-products {
    padding: 100px 0 80px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-head.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--gray-900);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
}

.link-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.link-all:hover {
    gap: 8px;
}

.products-carousel {
    position: relative;
    padding: 0 80px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
}

.product-card-pro {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-pro:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-image-pro {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge-special {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #8b5cf6;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge-custom {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--gray-900);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Container Visuals */
.container-visual-red,
.container-visual-blue,
.container-visual-white,
.container-visual-yellow,
.container-visual-gray {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.container-visual-red {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    background-image:
        linear-gradient(135deg, #dc2626 0%, #991b1b 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px);
}

.container-visual-blue {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    background-image:
        linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px);
}

.container-visual-white {
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    background-image:
        linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px);
}

.container-visual-yellow {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    background-image:
        linear-gradient(135deg, var(--accent) 0%, #d97706 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px);
}

.container-visual-gray {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    background-image:
        linear-gradient(135deg, #374151 0%, #1f2937 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px);
}

.product-info-pro {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: auto;
}

.feature {
    font-size: 13px;
    color: var(--gray-600);
}

.product-specs-pro {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 10px;
    margin-top: 21px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 6px 0;
    gap: 12px;
}

.spec-row:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.spec-row span {
    color: var(--gray-600);
    font-weight: 500;
}

.spec-row strong {
    color: var(--gray-900);
    font-weight: 700;
    text-align: right;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px solid var(--gray-100);
}

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

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

.price-note {
    font-size: 11px;
    color: var(--gray-500);
}

.btn-buy {
    background: var(--accent);
    color: var(--gray-900);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-buy svg {
    width: 20px;
    height: 19px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-buy span {
    position: relative;
    z-index: 1;
}

.btn-buy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-buy:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.btn-buy:hover::before {
    opacity: 1;
}

.btn-buy:hover svg {
    transform: translateX(3px);
}

.btn-buy:active {
    transform: translateY(0);
}

/* Product Carousel Specific Overrides */
.product-card-pro .price-main {
    font-size: 16px;
}

.product-card-pro .btn-buy {
    background: none;
    border: 2px solid var(--gray-300);
}

.product-card-pro .btn-buy::before {
    background: none;
}

.product-card-pro .btn-buy:hover {
    background: var(--gray-50);
    border-color: var(--primary);
}

/* ========================================
   SHOP CARD VARIATION 2 - BOLD WITH ICON
   ======================================== */
.card-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(243, 156, 18, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(243, 156, 18, 0.2);
    border-color: rgba(243, 156, 18, 0.18);
}

.card-v2-slideshow {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #1a1f2e;
}

.card-v2-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.card-v2-slideshow img.active {
    opacity: 1;
}

.card-v2-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.card-v2-badge {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.4);
}

.card-v2-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-v2-status-badge svg {
    width: 18px;
    height: 18px;
    color: white;
    flex-shrink: 0;
}

.card-v2-status-badge span {
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-v2-dots {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.card-v2-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s;
}

.card-v2-dot.active {
    background: #f39c12;
    border-color: #f39c12;
    transform: scale(1.2);
}

.card-v2-divider {
    height: 4px;
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 1px 6px rgba(243, 156, 18, 0.3);
}

.card-v2-body {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}


.card-v2-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-v2-icon {
    width: 52px;
    height: 52px;
    background: rgba(243, 156, 18, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-v2-icon svg {
    width: 26px;
    height: 26px;
    color: #f39c12;
}

.card-v2-title {
    color: white;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.card-v2-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.card-v2-features {
    margin-bottom: 24px;
}

.card-v2-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}

.card-v2-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    color: white;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

.card-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(243, 156, 18, 0.15);
}

.card-v2-price {
    flex: 1;
}

.card-v2-price-value {
    font-size: 28px;
    font-weight: 900;
    color: #f39c12;
    line-height: 1;
    margin-bottom: 5px;
}

.card-v2-price-note {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.card-v2-button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 1px 6px rgba(243, 156, 18, 0.2);
}

.card-v2-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(243, 156, 18, 0.35);
}

.card-v2-button svg {
    width: 18px;
    height: 17px;
    flex-shrink: 0;
}

/* Card Original Styles */
.card-original-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(243, 156, 18, 0.15);
}

.card-original-title-block h3 {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2;
}

.card-original-title-block p {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 600;
}

.card-original-badge {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 1px 4px rgba(243, 156, 18, 0.2);
}

.card-original-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.card-original-stat {
    text-align: center;
    padding: 14px 10px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-original-stat-value {
    font-size: 22px;
    font-weight: 900;
    color: #f39c12;
    line-height: 1;
    margin-bottom: 5px;
}

.card-original-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-original-features {
    margin-bottom: 20px;
}

.card-original-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
}

.card-original-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 3px solid var(--accent);
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.trust-card p {
    font-size: 15px;
    color: var(--gray-600);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
}

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

.service-card-pro {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.service-card-pro:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-pro:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-number {
    display: inline-flex;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.service-card-pro h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.service-card-pro p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: #D97706;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px 32px 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.testimonial-quote-icon {
    color: #F59E0B;
    font-size: 36px;
    line-height: 1;
    opacity: 0.25;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.testimonial-author-info strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed; /* Continuous gradient across adjacent sections */
    padding: 80px 0;
    color: var(--white);
}

/* Seamless flow when cta-banner is above featured-cta-banner */
.cta-banner + .featured-cta-banner {
    padding-top: 48px;
    margin-top: -1px; /* Remove any subpixel gap */
}

/* Remove bottom padding from cta-banner when followed by featured-cta-banner */
.cta-banner:has(+ .featured-cta-banner) {
    padding-bottom: 0;
}

.cta-content-pro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-pro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content-pro p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons-pro {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--accent);
    color: var(--gray-900);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-pro {
    background: var(--bg-dark);
    color: var(--gray-400);
    padding: 60px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--accent);
}

.footer-logo span {
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
}

.brand-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: inline-flex;
}

.stars-footer {
    color: var(--accent);
}

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .products-grid {
        justify-content: space-between;
    }

    .products-carousel {
        padding: 0 60px;
    }
}

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

    .products-carousel {
        padding: 0 50px;
    }
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 16px;
    }

    .top-bar-left {
        gap: 16px;
        font-size: 12px;
    }

    .top-bar-item:not(:first-child) {
        display: none;
    }

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

    .products-carousel {
        padding: 0;
    }

    .carousel-btn {
        display: none;
    }

    /* Container selector positioned higher on mobile */
    .location-finder {
        margin-top: -221px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        padding: 60px 0 80px;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .stat-item {
        flex: 0 1 auto;
        min-width: 0;
    }

    .stat-number {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 10px;
        line-height: 1.3;
        opacity: 0.85;
    }

    .cta-buttons-pro {
        flex-direction: column;
    }

    /* Product specs in single row on mobile */
    .product-specs-pro {
        flex-direction: row;
        padding: 12px;
        min-height: auto;
        gap: 8px;
        justify-content: space-around;
    }

    .spec-row {
        flex-direction: column;
        padding: 4px 8px;
        gap: 2px;
        align-items: center;
        text-align: center;
        border-bottom: none;
        flex: 1;
    }

    .spec-row:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid #e9ecef;
    }

    .spec-row span {
        font-size: 9px;
        line-height: 1.2;
    }

    .spec-row strong {
        font-size: 11px;
        font-weight: 800;
        text-align: center;
    }

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

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

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card-pro {
    animation: fadeIn 0.6s ease-out forwards;
}

::selection {
    background: var(--accent);
    color: var(--gray-900);
}
