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

:root {
    --navy: #002252;
    --navy-dark: #002252;
    --navy-light: #003d7a;
    --orange: #FF9d00;
    --orange-light: #FFA500;
    --orange-dark: #E67E00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.gradient-text {
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    max-width: min(1600px, 94%);
}

header .btn-primary {
    background: var(--orange);
    color: var(--navy);
    font-weight: 700;
}

header .btn-primary:hover {
    background: var(--orange-dark);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(255, 157, 0, 0.45);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--orange);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* ---- Dropdown nav items ---- */
.nav-item-drop {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link-parent {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: default;
    color: white;
    font-weight: 500;
    font-size: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.nav-item-drop:hover .nav-link-parent { color: var(--orange); }
.nav-link-parent svg { transition: transform 0.2s ease; }
.nav-item-drop:hover .nav-link-parent svg { transform: rotate(180deg); }

.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 580px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 2000;
}

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

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.mega-col { padding: 0 1rem; }
.mega-col + .mega-col { border-left: 1px solid #f0f2f5; }

.mega-col-header {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--orange);
    margin-bottom: 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid rgba(255,140,0,0.2);
}

.mega-col a {
    display: block;
    font-size: 0.88rem;
    color: #444;
    padding: 0.42rem 0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.mega-col a::after { display: none; }
.mega-col a:last-child { border-bottom: none; }
.mega-col a:hover { color: var(--navy); padding-left: 6px; }

/* ---- Simple dropdown ---- */
.simple-drop {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 210px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 2000;
}

.nav-item-drop:hover .simple-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.simple-drop::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.simple-drop a {
    display: block;
    font-size: 0.88rem;
    color: #444;
    padding: 0.48rem 0.85rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s ease;
}

.simple-drop a::after { display: none; }
.simple-drop a:hover { background: #f4f6f9; color: var(--navy); padding-left: 1.1rem; }

/* ---- Header right group + Language switcher ---- */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher { position: relative; }

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.85rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

#header.scrolled .lang-btn { border-color: rgba(0,43,92,0.2); color: var(--navy); }
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-btn svg { transition: transform 0.2s ease; }
.lang-switcher:hover .lang-btn svg { transform: rotate(180deg); }

.lang-drop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 110px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.2s ease;
    z-index: 2000;
}

.lang-switcher:hover .lang-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-drop a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    transition: background 0.15s ease;
}

.lang-drop a::after { display: none; }
.lang-drop a:hover { background: #f4f6f9; color: var(--navy); }
.lang-drop a.lang-active { color: var(--orange); background: rgba(255,140,0,0.06); }

.desktop-only {
    display: none !important;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--orange);
}

/* ---- Mobile nav accordion groups ---- */
.mob-group {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mob-group-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.65rem 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.mob-group-btn:hover { color: var(--orange); }
.mob-group-btn svg { flex-shrink: 0; transition: transform 0.25s ease; }
.mob-group.open .mob-group-btn { color: var(--orange); }
.mob-group.open .mob-group-btn svg { transform: rotate(180deg); }

.mob-group-items {
    display: none;
    flex-direction: column;
    padding-bottom: 0.5rem;
}

.mob-group.open .mob-group-items { display: flex; }

.mob-group-items a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.48rem 0 0.48rem 1.1rem;
    border-left: 2px solid rgba(255,157,0,0.3);
    margin-left: 0.2rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.mob-group-items a:hover {
    color: var(--orange);
    border-left-color: var(--orange);
}

/* ---- Mobile sticky CTA bar ---- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.7rem 1rem 0.85rem;
    background: linear-gradient(to top, rgba(0,34,82,1) 0%, rgba(0,34,82,0.88) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 998;
    border-top: 1px solid rgba(255,157,0,0.25);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.95rem 1.5rem;
    background: var(--orange);
    color: var(--navy);
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 12px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(255,157,0,0.45);
}

.mobile-cta-btn:hover {
    background: var(--orange-dark);
    box-shadow: 0 6px 28px rgba(255,157,0,0.55);
    transform: translateY(-1px);
}

@media (max-width: 1023px) {
    .mobile-cta-bar { display: block; }
    body { padding-bottom: 76px; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 43, 92, 0.3);
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 34, 82, 0.88), rgba(0, 34, 82, 0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.highlight-item svg {
    color: var(--orange);
}

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

.btn-hero-primary {
    padding: 1rem 2.5rem;
    background: var(--orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--navy);
}

.badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--orange);
}

.badge span {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.feature-item svg {
    color: var(--orange);
    flex-shrink: 0;
}

.feature-item span {
    color: white;
    font-weight: 500;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
}

.about {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 43, 92, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    border-color: var(--orange-light);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon svg {
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.services-overview {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: var(--navy);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 43, 92, 0.2);
    border: 2px solid var(--orange);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.featured-products {
    padding: 5rem 0;
    background: white;
}

.featured-products h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-grid-home {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card-home {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
}

.product-card-home:nth-child(1) { animation-delay: 0.1s; }
.product-card-home:nth-child(2) { animation-delay: 0.2s; }
.product-card-home:nth-child(3) { animation-delay: 0.3s; }
.product-card-home:nth-child(4) { animation-delay: 0.4s; }
.product-card-home:nth-child(5) { animation-delay: 0.5s; }
.product-card-home:nth-child(6) { animation-delay: 0.6s; }

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

.product-card-home:hover {
    box-shadow: 0 12px 40px rgba(0, 43, 92, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.product-image-home {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8f4f8);
    position: relative;
}

.product-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-home:hover .product-image-home img {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 43, 92, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-home:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card-home:hover .view-details {
    transform: translateY(0);
}

.product-info-home {
    padding: 2rem;
}

.product-info-home h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card-home:hover .product-info-home h3 {
    color: var(--orange);
}

.product-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-card-home:hover .product-specs li {
    padding-left: 0.5rem;
    background: linear-gradient(to right, rgba(255, 140, 0, 0.05), transparent);
}

.products {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e5e7eb;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 43, 92, 0.3);
}

.products-grid {
    display: grid;
    gap: 1.5rem;
}

.product-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 43, 92, 0.15);
    border-color: var(--orange);
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    color: white;
}

.product-item h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-item:hover h3 {
    color: var(--orange);
}

.product-item p {
    color: #666;
    line-height: 1.6;
}

.product-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.product-footer span {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-item:hover .product-footer span {
    text-decoration: underline;
}

.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    border-color: var(--orange);
}

.service-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    color: white;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: var(--orange);
}

.service-subtitle {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark), var(--navy));
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 43, 92, 0.3);
}

.cta-box h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.contact-form-home {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-form-home label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-home input,
.contact-form-home textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form-home input:focus,
.contact-form-home textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.nationwide-network {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e8f4f8);
}

.nationwide-network h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.google-map {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.google-map iframe {
    display: block;
}

.network-regions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.region-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.region-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    margin-bottom: 1rem;
}

.region-icon svg {
    color: white;
}

.region-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.region-card p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.region-card p strong {
    color: var(--navy);
    font-weight: 700;
}

.region-card a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.region-card a:hover {
    text-decoration: underline;
}

.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--navy);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 43, 92, 0.2);
    border: 2px solid var(--orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    color: white;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card:hover p {
    color: var(--orange-light);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-form h3,
.team-list h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

.form-note a {
    color: var(--orange);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.team-grid {
    display: grid;
    gap: 1rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-member h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-position {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-member a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.team-member a:hover {
    color: var(--orange);
}

.footer {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark), var(--navy));
    color: white;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-keywords {
    background: var(--navy-dark);
    padding: 1rem 0;
    text-align: center;
}

.footer-keywords p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.products-page {
    padding: 5rem 0;
    background: white;
}

.products-showcase {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.product-card-large {
    display: grid;
    gap: 2rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-card-large:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.product-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.product-features-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-section {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-links {
    padding: 5rem 0;
    background: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.quick-link-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-link-icon svg {
    color: white;
}

.quick-link-card h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.quick-link-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-highlights {
        gap: 1rem;
    }

    .highlight-item {
        font-size: 0.9rem;
    }

    .highlight-item svg {
        width: 20px;
        height: 20px;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .page-hero h1 {
        font-size: 4rem;
    }

    .product-card-large {
        grid-template-columns: 1fr 1fr;
    }

    .product-card-large.reverse {
        direction: rtl;
    }

    .product-card-large.reverse .product-info {
        direction: ltr;
    }

    .product-image {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

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

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

    .map-container {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

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

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

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

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

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

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .desktop-only {
        display: inline-flex !important;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }

    .mobile-cta-bar {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 4rem;
    }

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

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

/* ===== PRODUCT DETAIL PAGE ===== */

.product-page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.product-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 20, 50, 0.94), rgba(0, 43, 92, 0.72));
}

.product-hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
    max-width: 860px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

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

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumb .bc-active {
    color: var(--orange);
    font-weight: 600;
}

.product-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

.product-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.product-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.product-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ph-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.ph-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--orange);
}

.ph-icon {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ph-icon svg {
    color: white;
}

.ph-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.ph-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Product Overview */
.product-overview {
    padding: 5rem 0;
    background: white;
}

.product-overview-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.product-overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 43, 92, 0.18);
}

.product-overview-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-overview-image:hover img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 27, 58, 0.88);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--orange);
}

.image-badge svg {
    color: var(--orange);
}

.section-tag {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.product-overview-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.product-overview-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.overview-features {
    display: grid;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.of-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.of-item:hover {
    background: rgba(255, 140, 0, 0.06);
    border-left-color: var(--orange);
    transform: translateX(4px);
}

.of-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.of-icon svg {
    color: white;
}

.of-item span {
    color: #444;
    font-size: 0.93rem;
    font-weight: 500;
}

/* Gallery Section */
.product-gallery-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.product-gallery {
    display: grid;
    gap: 1.25rem;
}

.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-main:hover img {
    transform: scale(1.02);
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-main:hover .gallery-zoom-hint {
    opacity: 1;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-thumb {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.06);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -2.75rem;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 0;
}

.lightbox-close:hover {
    background: var(--orange);
    color: white;
}

/* Specs Section */
.product-specs-section {
    padding: 5rem 0;
    background: white;
}

.specs-grid {
    display: grid;
    gap: 1.75rem;
}

.specs-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.specs-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.14);
    transform: translateY(-3px);
}

.specs-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.specs-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specs-icon svg {
    color: white;
}

.specs-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
}

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

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table tr:hover {
    background: rgba(255, 140, 0, 0.04);
}

.specs-table td {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    color: #666;
    width: 55%;
}

.specs-table td:last-child {
    color: var(--navy);
    text-align: right;
}

.specs-table td strong {
    font-weight: 700;
}

/* Options Section */
.product-options-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #edf2f7);
}

.options-grid {
    display: grid;
    gap: 1.75rem;
}

.option-card {
    background: white;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    transition: all 0.35s ease;
    text-align: center;
}

.option-card:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.18);
    transform: translateY(-6px);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.35s ease;
}

.option-card:hover .option-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.option-icon svg {
    color: white;
}

.option-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.option-card:hover h3 {
    color: var(--orange);
}

.option-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.93rem;
}

/* Usage Section */
.product-usage-section {
    padding: 5rem 0;
    background: white;
}

.usage-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.usage-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.usage-content > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.usage-list {
    display: grid;
    gap: 1rem;
}

.usage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.usage-item:hover {
    background: rgba(255, 140, 0, 0.05);
    border-left-color: var(--orange);
}

.usage-icon-wrap {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usage-icon-wrap svg {
    color: white;
}

.usage-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.usage-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.usage-info-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--orange);
    box-shadow: 0 10px 40px rgba(0, 43, 92, 0.25);
}

.usage-info-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.usage-info-box > p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.requirements-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.requirements-list li svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Product CTA */
.product-cta-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.product-cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark), var(--navy));
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 43, 92, 0.3);
    border: 2px solid var(--orange);
}

.cta-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-icon svg {
    color: white;
}

.product-cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.product-cta-box > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 2rem;
}

.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all 0.3s ease;
}

.cta-contact-item:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* Responsive product detail page */
@media (min-width: 768px) {
    .product-overview-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .usage-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 767px) {
    .product-page-hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }

    .product-hero-subtitle {
        font-size: 1rem;
    }

    .ph-item {
        padding: 0.6rem 0.9rem;
    }

    .ph-value {
        font-size: 1rem;
    }

    .gallery-main img {
        height: 280px;
    }

    .gallery-thumb img {
        height: 65px;
    }

    .product-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .product-cta-box h2 {
        font-size: 1.7rem;
    }

    .usage-info-box {
        padding: 1.75rem;
    }
}

/* ===== OVERVIEW MEDIA (merged gallery) ===== */
.product-overview-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.overview-main-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 43, 92, 0.18);
    cursor: pointer;
}

.overview-main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.overview-main-img:hover img {
    transform: scale(1.03);
}

.overview-main-img:hover .gallery-zoom-hint {
    opacity: 1;
}

/* ===== INQUIRY FORM SECTION ===== */
.product-inquiry-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.inquiry-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.inquiry-info .section-tag {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.45);
}

.inquiry-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.inquiry-info > p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.inquiry-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inquiry-contact:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--orange);
}

.ic-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ic-icon svg {
    color: white;
}

.inquiry-contact span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.inquiry-contact strong {
    display: block;
    color: white;
    font-size: 0.98rem;
    font-weight: 600;
}

.inquiry-form-wrap {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.inquiry-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.inquiry-form .form-group {
    margin-bottom: 1rem;
}

.inquiry-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e2e2;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
    color: #333;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
    background: white;
}

.inquiry-form input[readonly] {
    background: #eef2f7;
    color: var(--navy);
    font-weight: 700;
    cursor: default;
    border-color: #d0dae8;
}

.options-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.6rem;
    font-size: 0.88rem;
}

.options-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.checkbox-item:last-child {
    border-bottom: none;
}

.checkbox-item:hover {
    background: rgba(255, 140, 0, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--orange);
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    flex-shrink: 0;
}

.checkbox-item > span {
    font-size: 0.93rem;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

.btn-submit-inquiry {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.btn-submit-inquiry:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

@media (min-width: 768px) {
    .inquiry-grid {
        grid-template-columns: 1fr 1.4fr;
    }

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

/* ===== PARTS PAGE ===== */

.parts-page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    padding: 8rem 0 4rem;
    text-align: center;
}

.parts-page-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.parts-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.parts-hero-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.parts-hero-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.phc-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

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

/* Category gradient backgrounds */
.cat-lapatok    { background: linear-gradient(135deg, #ff8c00, #ff4500); }
.cat-tomlo      { background: linear-gradient(135deg, #1565c0, #0d47a1); }
.cat-tolozar    { background: linear-gradient(135deg, #0a2342, #1a4b8c); }
.cat-stolcz     { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.cat-fogaskereek{ background: linear-gradient(135deg, #6a1b9a, #4a148c); }
.cat-tomites    { background: linear-gradient(135deg, #00695c, #004d40); }

/* Parts section */
.parts-section {
    padding: 3.5rem 0 5rem;
    background: #f4f6f9;
}

.parts-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.parts-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.parts-search-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.parts-search-wrap input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    border: 1.5px solid #dde3eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.parts-search-wrap input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}

.parts-filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pf-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border: 1.5px solid #dde3eb;
    border-radius: 8px;
    background: white;
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: inherit;
}

.pf-btn em {
    font-style: normal;
    font-weight: 400;
    color: #999;
    font-size: 0.82rem;
}

.pf-btn:hover {
    border-color: var(--orange);
    color: var(--navy);
}

.pf-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.pf-btn.active em { color: rgba(255,255,255,0.65); }

.pf-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.parts-result-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

#partsCount { font-weight: 700; color: var(--navy); font-size: 1rem; }
#stockCount { color: #4caf50; font-weight: 600; }

/* Parts grid */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.part-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1.5px solid #eaecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.part-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--orange);
}

.part-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    position: relative;
    overflow: hidden;
}

.part-icon-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.part-body {
    padding: 1.1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.part-code {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 0.35rem;
}

.part-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    flex: 1;
}

.part-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.part-stock {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.in-stock { color: #2e7d32; }
.in-stock .stock-dot { background: #4caf50; box-shadow: 0 0 0 2px rgba(76,175,80,0.25); }

.out-of-stock { color: #c62828; }
.out-of-stock .stock-dot { background: #ef5350; box-shadow: 0 0 0 2px rgba(239,83,80,0.25); }

.part-btn {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-cart {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
}

.btn-cart:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255,140,0,0.35);
}

.btn-inquiry {
    background: #f0f4f8;
    color: var(--navy);
    border: 1.5px solid #d0dae8;
}

.btn-inquiry:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.parts-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: #999;
}

.parts-empty svg { margin: 0 auto 1rem; display: block; color: #ccc; }
.parts-empty p { font-size: 1.05rem; }

/* CTA on parts page */
.parts-cta-wrap {
    padding: 4rem 0;
    background: white;
}

.parts-cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 2px solid var(--orange);
    box-shadow: 0 15px 50px rgba(0,43,92,0.25);
}

/* ===== PARTS TEASER (detk225g.html) ===== */
.parts-teaser-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f9, #e8eef7);
}

.parts-teaser-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.parts-teaser-text .section-tag {
    background: rgba(0, 43, 92, 0.08);
    color: var(--navy);
    border-color: rgba(0, 43, 92, 0.2);
}

.parts-teaser-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.parts-teaser-text > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.pt-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pt-stat {
    text-align: center;
    min-width: 70px;
}

.pt-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pt-stat span {
    font-size: 0.78rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.parts-teaser-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.pt-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 0.75rem 1rem;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    cursor: default;
}

.pt-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.pt-icon-card span {
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 768px) {
    .parts-teaser-inner {
        grid-template-columns: 1fr 1fr;
    }

    .parts-hero-sub {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .parts-page-hero h1 {
        font-size: 1.9rem;
        letter-spacing: 1px;
    }

    .parts-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.85rem;
    }

    .part-icon-wrap { height: 85px; }

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

/* ===== PRODUCT DETAIL PAGE ===== */

.pd-breadcrumb-bar {
    background: var(--navy-dark);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pd-breadcrumb-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pd-back-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.pd-back-link:hover { color: var(--orange); }

.part-detail-section {
    padding: 3.5rem 0 4rem;
    background: #f4f6f9;
}

.part-detail-grid {
    display: grid;
    gap: 2.5rem;
}

/* LEFT column */
.part-detail-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.part-illustration-card {
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,43,92,0.14);
}

.part-svg-main {
    width: 100%;
    height: auto;
    display: block;
}

.part-quick-specs {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1.5px solid #eaecef;
}

.qs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid #f2f4f7;
    gap: 1rem;
}

.qs-row:last-child { border-bottom: none; }

.qs-row span {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
}

.qs-row strong {
    font-size: 0.88rem;
    color: var(--navy);
    text-align: right;
}

/* RIGHT column */
.part-detail-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pd-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--orange);
    background: rgba(255,140,0,0.1);
    border: 1.5px solid rgba(255,140,0,0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    width: fit-content;
}

.pd-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
    margin: 0;
}

.pd-intro {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    border-left: 3px solid var(--orange);
    padding-left: 1rem;
    margin: 0;
}

.pd-price-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    border: 1.5px solid #eaecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pd-price-netto {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
}

.pd-vat {
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
}

/* Cart area */
.pd-cart-area {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.pd-qty-group {
    display: flex;
    align-items: center;
    border: 1.5px solid #dde3eb;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    width: 40px;
    height: 52px;
    border: none;
    background: #f8f9fa;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: var(--orange); color: white; }

.pd-qty-group input {
    width: 52px;
    height: 52px;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    font-family: inherit;
    background: white;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.pd-qty-group input::-webkit-outer-spin-button,
.pd-qty-group input::-webkit-inner-spin-button { -webkit-appearance: none; }

.btn-add-cart {
    flex: 1;
    height: 52px;
    padding: 0 1.75rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-add-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,140,0,0.4);
}

.btn-add-cart:disabled { opacity: 0.85; cursor: default; transform: none; }

/* Compatibility note */
.pd-compatibility-note {
    display: flex;
    gap: 1rem;
    background: #fff8e1;
    border: 1.5px solid #ffe082;
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

.pcn-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #ff8f00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pcn-text strong {
    display: block;
    font-size: 0.9rem;
    color: #5d4037;
    margin-bottom: 0.35rem;
}

.pcn-text p {
    font-size: 0.83rem;
    color: #6d4c41;
    line-height: 1.6;
    margin: 0;
}

/* Action links */
.pd-action-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pd-link-back,
.pd-link-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pd-link-back {
    background: white;
    color: #555;
    border: 1.5px solid #dde3eb;
}

.pd-link-back:hover { border-color: var(--navy); color: var(--navy); }

.pd-link-inquiry {
    background: var(--navy);
    color: white;
    border: 1.5px solid var(--navy);
}

.pd-link-inquiry:hover { background: var(--navy-dark); }

/* ===== TABS ===== */
.part-tabs-section {
    padding: 0 0 4rem;
    background: #f4f6f9;
}

.part-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #dde3eb;
    margin-bottom: 0;
    overflow-x: auto;
}

.ptab {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.ptab:hover { color: var(--navy); }

.ptab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.ptab-panel {
    display: none;
}

.ptab-panel.active {
    display: block;
}

.ptab-content-inner {
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1.5px solid #eaecef;
    border-top: none;
}

.ptab-content-inner h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.ptab-content-inner p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.ptab-content-inner p:last-child { margin-bottom: 0; }

/* Feature list */
.pd-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pd-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eeeff2;
    transition: all 0.2s ease;
}

.pd-feature-list li:hover {
    background: #fff;
    border-color: var(--orange);
    box-shadow: 0 2px 10px rgba(255,140,0,0.1);
}

.pfl-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pd-feature-list li span {
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 0.35rem;
}

/* Warning box */
.pd-warning-box {
    background: #fff3e0;
    border: 2px solid #ffb74d;
    border-radius: 14px;
    padding: 1.75rem 2rem;
}

.pdw-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #e65100;
}

.pdw-header svg { flex-shrink: 0; }

.pdw-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e65100;
    margin: 0;
}

.pd-warning-box > p {
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.pd-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pd-warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #5d4037;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,183,77,0.4);
}

.pd-warning-list li:last-child { border-bottom: none; }

.pd-warning-list li::before {
    content: '!';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #ff8f00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 1px;
}

/* ===== RELATED PRODUCTS ===== */
.related-parts-section {
    padding: 4rem 0;
    background: white;
}

.related-parts-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.75rem;
}

.related-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.related-part-card {
    background: #f8f9fa;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #eaecef;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.related-part-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.rp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    position: relative;
    overflow: hidden;
}

.rp-icon::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
}

.rp-body {
    padding: 0.9rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rp-code {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aaa;
}

.related-part-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin: 0.15rem 0;
}

.rp-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 0.35rem;
}

.related-parts-cta {
    text-align: center;
}

/* Detail link on parts list card */
.part-detail-link {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    padding: 0.45rem 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
    transition: color 0.2s ease;
}

.part-detail-link:hover { color: var(--orange); }

@media (min-width: 900px) {
    .part-detail-grid {
        grid-template-columns: 420px 1fr;
    }
}

@media (max-width: 768px) {
    .pd-title { font-size: 1.6rem; }
    .ptab-content-inner { padding: 1.5rem; }
    .pd-warning-box { padding: 1.25rem; }
    .pd-cart-area { flex-direction: column; }
    .btn-add-cart { height: 48px; }
    .qty-btn, .pd-qty-group input { height: 48px; }
}
