/* ==================== VAIL 370 E - Product Page Styles ==================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --primary-light: #ff8c5a;
    --primary-dark: #e55a2b;
    --secondary-color: #022e3e;
    --accent-color: #034156;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-dark: #022e3e;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    opacity: 0;
}

.logo-img-dark {
    position: absolute;
    height: 40px;
    width: auto;
    opacity: 0;
    transition: var(--transition);
    top: 0;
    left: 0;
}

.header.scrolled .logo-img-dark {
    opacity: 1;
}

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

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-link {
    color: var(--secondary-color);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--secondary-color);
}

/* ==================== PRODUCT HERO ==================== */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(2, 46, 62, 0.9) 0%, 
        rgba(3, 65, 86, 0.7) 50%, 
        rgba(2, 46, 62, 0.85) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 10s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; animation-duration: 12s; }
.hero-particles .particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; animation-duration: 8s; }
.hero-particles .particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 1s; animation-duration: 14s; }
.hero-particles .particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 3s; animation-duration: 11s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    25% { transform: translateY(-50px) translateX(20px); opacity: 0.7; }
    50% { transform: translateY(-100px) translateX(-10px); opacity: 0.3; }
    75% { transform: translateY(-50px) translateX(30px); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.breadcrumb span:not(:last-child) {
    opacity: 0.5;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 107, 53, 0.2); }
}

/* Hero Title */
.hero-title {
    margin-bottom: 25px;
}

.title-main {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    animation: slideUp 0.8s ease forwards;
}

.title-sub {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 10px;
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-box i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-box strong {
    display: block;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-box span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-slow);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

.btn-sm {
    padding: 12px 25px;
    font-size: 12px;
}

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

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== QUICK STATS ==================== */
.quick-stats {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 30;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 30px;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: var(--bg-light);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.stat-content p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

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

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

/* ==================== TECH SPECS ==================== */
.tech-specs {
    padding: 120px 0;
    background: var(--bg-light);
}

.specs-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.specs-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.specs-image img {
    width: 100%;
    height: auto;
}

.specs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spec-point {
    position: absolute;
    z-index: 10;
}

.point-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: pointPulse 2s ease-in-out infinite;
    cursor: pointer;
}

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

.point-label {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.spec-point:hover .point-label {
    opacity: 1;
}

.point-label strong {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.point-label span {
    font-size: 12px;
    color: var(--text-light);
}

/* Specs Details */
.specs-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spec-category {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.spec-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.spec-category h3 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

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

.spec-label {
    font-size: 15px;
    color: var(--text-light);
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ==================== EQUIPMENT SECTION ==================== */
.equipment-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.equipment-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    position: sticky;
    top: 80px;
    z-index: 100;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 20px 0;
    margin-top: -20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.equipment-tabs.stuck {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.equipment-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.equipment-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.equipment-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.equipment-tab i {
    font-size: 16px;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.equipment-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 2px solid transparent;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.equipment-card.featured {
    background: var(--white);
    color: #000;
}

.equipment-card.featured .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.equipment-card.featured h3 {
    color: #000;
}

.equipment-card.featured .equipment-list li {
    color: #000;
}

.equipment-card.featured .equipment-list i {
    color: var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition);
}

.card-icon i {
    color: var(--white);
}

.equipment-card:hover .card-icon {
    transform: rotateY(180deg);
}

.equipment-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.equipment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}

.equipment-list i {
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.equipment-list i.fa-check {
    color: #10b981;
}

.equipment-list i.fa-star {
    color: var(--primary-color);
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 120px 0;
    background: var(--secondary-color);
}

.gallery-section .section-tag {
    background: rgba(255, 107, 53, 0.2);
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.gallery-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-slider {
    display: flex;
    overflow: hidden;
    gap: 20px;
    scroll-behavior: smooth;
}

.gallery-item {
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 140, 90, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 36px;
    color: var(--white);
    transform: scale(0.5);
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 20px;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

/* ==================== QUOTE SECTION ==================== */
.quote-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(2, 46, 62, 0.95) 0%, 
        rgba(3, 65, 86, 0.9) 100%);
}

.quote-section .container {
    position: relative;
    z-index: 10;
}

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

.quote-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.quote-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    line-height: 1.8;
}

.quote-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--white);
}

.quote-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-section .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-section .contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.quote-section .contact-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 2px;
}

.quote-section .contact-item span {
    color: var(--white);
    font-size: 16px;
}

/* Quote Form */
.quote-form-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 45px;
    box-shadow: var(--shadow-lg);
}

.quote-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus + i,
.form-group:focus-within i {
    color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    padding-top: 15px;
}

textarea.form-control + i {
    top: 20px;
    transform: none;
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-check input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-check label {
    font-size: 14px;
    color: var(--text-light);
}

.form-check a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== COMPARE SECTION ==================== */
.compare-section {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.compare-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition-slow);
    border: 2px solid transparent;
}

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

.compare-card.current {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.compare-card.current h3 {
    color: var(--white);
}

.compare-card.current .compare-desc {
    color: rgba(255, 255, 255, 0.7);
}

.compare-card.current .compare-specs span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.compare-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    white-space: nowrap;
}

.compare-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.compare-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 18px;
    background: #fff;
    transform: scale(0.9);
    transition: var(--transition);
}

.compare-card:hover .compare-image img {
    transform: scale(0.95);
}

.compare-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.compare-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.compare-specs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.compare-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-color);
}

.compare-specs i {
    color: var(--primary-color);
    font-size: 12px;
}

.compare-card .btn-outline {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.compare-card .btn-outline:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links i {
    color: var(--primary-color);
    width: 16px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .title-main {
        font-size: 60px;
    }
    
    .compare-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-color);
        font-size: 18px;
    }
    
    .title-main {
        font-size: 48px;
    }
    
    .title-sub {
        font-size: 20px;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-box {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-card:nth-child(2n) {
        border-left: 1px solid var(--border-color);
    }
    
    .stat-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .specs-visual {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .compare-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .title-main {
        font-size: 36px;
    }
    
    .title-sub {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-stats {
        margin-top: -40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }
    
    .stat-card {
        border-right: none;
        border-left: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .tech-specs,
    .equipment-section,
    .gallery-section,
    .quote-section,
    .compare-section {
        padding: 80px 0;
    }
    
    .equipment-tabs {
        gap: 8px;
    }
    
    .equipment-tab {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .equipment-tab span {
        display: none;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider-container {
        padding: 0 50px;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .quote-info h2 {
        font-size: 32px;
    }
    
    .quote-features {
        grid-template-columns: 1fr;
    }
    
    .quote-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .gallery-slider-container {
        padding: 0 40px;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .title-main {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
}
