/* Modern CSS for Thor Trailer Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e3a8a;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #1e3a8a;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #1e3a8a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.6));
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    space-y: 2rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.about-info p {
    color: #6b7280;
    line-height: 1.6;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.experience-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
}

.experience-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Products Section */
.products-section, .products-catalog {
    padding: 8rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.product-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.product-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 1rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section */
.features-section, .product-benefits {
    padding: 8rem 0;
    background: #f8fafc;
}

.features-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card, .benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover, .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon, .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Page Hero */
.page-hero, .product-hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.page-title, .product-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle, .product-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Product Detail Styles */
.product-details {
    padding: 8rem 0;
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.thumbnail.active {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.product-info {
    padding: 1rem 0;
}

.product-header {
    margin-bottom: 2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.stars {
    color: #fbbf24;
}

.rating-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.features-list i {
    color: #10b981;
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Specifications */
.specifications-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.specifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.spec-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.spec-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.spec-list {
    space-y: 1rem;
}

.spec-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.spec-label {
    font-weight: 600;
    color: #374151;
}

.spec-value {
    color: #6b7280;
    text-align: right;
}

.certifications {
    display: grid;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    color: #1e40af;
    font-weight: 500;
}

.cert-item i {
    font-size: 1.2rem;
}

.related-products {
    padding: 6rem 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-product-content {
    padding: 2rem;
}

.related-product-content h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.related-product-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #e5e7eb;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #374151;
}

.spec-value {
    color: #6b7280;
    font-weight: 400;
}

.certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.cert-item i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Related Products */
.related-products {
    padding: 6rem 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-3px);
}

.related-product-image {
    height: 200px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-content {
    padding: 1.5rem;
    text-align: center;
}

.related-product-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.related-product-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    space-y: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #1e3a8a;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-content p {
    color: #9ca3af;
    margin: 0;
}

/* Design Credit Card */
.design-credit-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    border-radius: 16px;
    padding: 20px;
    color: white;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: creditShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes creditShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.design-credit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.credit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.credit-header i {
    font-size: 1.4rem;
    color: #fbbf24;
}

.credit-title {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.9;
}

.credit-content {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.credit-company {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.credit-company strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.credit-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.credit-description {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.credit-description i {
    color: #10b981;
    font-size: 1rem;
}

.credit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.credit-badge i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.credit-link-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.design-credit-card:hover .credit-link-indicator {
    opacity: 1;
}

/* Mobile responsive for design card */
@media (max-width: 768px) {
    .design-credit-card {
        max-width: 100%;
        padding: 16px;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }
    
    .credit-company strong {
        font-size: 1.1rem;
    }
    
    .credit-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 10px;
        align-self: flex-start;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: #6b7280;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* About Page Styles */
.about-hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.about-content-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* 404 Page */
.error-404 {
    padding: 8rem 0;
    text-align: center;
}

.error-404 h1 {
    font-size: 6rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.error-404 h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.error-404 p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .product-content-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f8fafc;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Product Image Gallery Enhancements */
.product-gallery .thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    max-height: 120px;
    overflow-y: auto;
}

.product-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-gallery .thumbnail:hover {
    border-color: #1e3a8a;
    transform: scale(1.05);
}

.product-gallery .thumbnail.active {
    border-color: #1e3a8a;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.product-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-gallery .thumbnail:hover img {
    transform: scale(1.1);
}

.product-gallery .main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* Product Image Count */
.product-image-count {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-image-count i {
    color: #1e3a8a;
}

/* Related Products Image Loading */
.related-product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

/* Products Grid Image Loading */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Image Loading and Error States */
.product-image img,
.related-product-image img,
.product-gallery img {
    background: #f8fafc;
}

.product-image img[src*="default-trailer.jpg"],
.related-product-image img[src*="default-trailer.jpg"],
.product-gallery img[src*="default-trailer.jpg"] {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
}

/* Modern Product Gallery */
.product-gallery-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-image-section {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.main-image-section a {
    display: block;
    position: relative;
    text-decoration: none;
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

.zoom-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.main-image-section:hover .zoom-overlay {
    opacity: 1;
}

.main-image-section:hover .main-product-image {
    transform: scale(1.05);
}

/* Gallery Grid */
.gallery-grid {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-title i {
    color: #3b82f6;
}

.image-count {
    color: #64748b;
    font-weight: 400;
    font-size: 1rem;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8fafc;
    aspect-ratio: 1;
}

.gallery-item.active {
    border-color: #1e3a8a;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.gallery-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

/* Mobile Responsive Gallery */
@media (max-width: 768px) {
    .product-gallery-modern {
        gap: 20px;
    }
    
    .main-product-image {
        max-height: 350px;
    }
    
    .gallery-grid {
        padding: 20px;
    }
    
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .main-product-image {
        max-height: 250px;
    }
}

/* Modern Product Layout */
.product-content-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-info-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.product-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.product-title {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    color: #64748b;
    font-weight: 500;
}

.product-description {
    margin: 25px 0;
    text-align: center;
}

.product-description p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-features {
    margin: 30px 0;
}

.product-features h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: #e0f2fe;
    border-left-color: #1e3a8a;
    transform: translateX(5px);
}

.features-list li i {
    color: #22c55e;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Enhanced Product Content Styles */
.detailed-description {
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #1e3a8a;
}

.detailed-description h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 600;
}

.detailed-description p {
    color: #475569;
    line-height: 1.7;
}

.product-advantages {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 1px solid #bae6fd;
}

.product-advantages h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-weight: 500;
}

.advantages-list li i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn i {
    margin-right: 8px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 160px;
}

.btn-outline {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .product-content-modern {
        gap: 30px;
        margin-top: 20px;
    }
    
    .product-info-modern {
        padding: 20px;
        border-radius: 16px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .features-list li {
        padding: 12px 16px;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .detailed-description,
    .product-advantages {
        padding: 15px;
    }
    
    .product-rating {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-info-modern {
        padding: 15px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* CSS Test - If you can see this, CSS is loading correctly */
body::after {
    content: "CSS Loaded ✓";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #22c55e;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 10000;
}

/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    color: white;
}

.loader-truck {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: truckBounce 1.5s ease-in-out infinite;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes truckBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 42, 0.8) 0%, 
        rgba(30, 58, 138, 0.7) 50%, 
        rgba(59, 130, 246, 0.6) 100%
    );
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-content-modern {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 0.8s ease-out;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Title Animation */
.hero-text-animated {
    text-align: center;
    color: white;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-reveal {
    display: block;
    animation: slideInRight 1s ease-out;
}

.text-reveal-delay {
    display: block;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.text-highlight {
    display: block;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate, slideInUp 1s ease-out 0.6s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    from { filter: brightness(1) drop-shadow(0 0 10px rgba(251, 191, 36, 0.3)); }
    to { filter: brightness(1.2) drop-shadow(0 0 20px rgba(251, 191, 36, 0.6)); }
}

.hero-subtitle-modern {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.95; }
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1.2s both;
}

.stat-inline {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-inline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.05);
}

.stat-number-hero {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-label-hero {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 1.5s both;
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.btn-primary-hero {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.btn-secondary-hero {
    background: rgba(251, 191, 36, 0.9);
    color: #1e3a8a;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.btn-secondary-hero:hover {
    background: #fbbf24;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.btn-primary-hero:hover .btn-glow {
    opacity: 0.7;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation: float1 4s ease-in-out infinite;
}

.floating-2 {
    top: 30%;
    right: 15%;
    animation: float2 5s ease-in-out infinite;
}

.floating-3 {
    bottom: 30%;
    left: 15%;
    animation: float3 6s ease-in-out infinite;
}

.floating-4 {
    bottom: 20%;
    right: 10%;
    animation: float4 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, -25px) rotate(-3deg); }
    75% { transform: translate(-15px, -10px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-12px, 10px) rotate(-4deg); }
    50% { transform: translate(8px, 20px) rotate(3deg); }
    75% { transform: translate(15px, 5px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -8px) rotate(3deg); }
    50% { transform: translate(-10px, -15px) rotate(-5deg); }
    75% { transform: translate(-20px, 5px) rotate(4deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-8px, -20px) rotate(-3deg); }
    50% { transform: translate(12px, -5px) rotate(4deg); }
    75% { transform: translate(5px, 15px) rotate(-2deg); }
}


/* Products Showcase Modern */
.products-showcase-modern {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-showcase-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.8) 100%);
    pointer-events: none;
}

/* Modern Section Headers */
.section-header-modern {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Carousel */
.products-carousel-container {
    position: relative;
    margin-bottom: 4rem;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

/* Modern Product Cards */
.product-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.product-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8fafc;
}

.product-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image-modern {
    transform: scale(1.1);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(30, 58, 138, 0.9), 
        rgba(59, 130, 246, 0.8)
    );
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

.product-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.icon-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.favorite-btn {
    border: none;
    background: rgba(255, 255, 255, 0.2);
}

.favorite-btn.active {
    background: rgba(239, 68, 68, 0.8);
    color: white;
}

.product-quick-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-status {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Product Content Modern */
.product-content-modern {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-count {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-description-modern {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.product-features-preview {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #7dd3fc;
}

.product-actions-modern {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.btn-product {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-height: 45px;
}

.btn-product.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-product.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-product.btn-outline {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #e2e8f0;
}

.btn-product.btn-outline:hover {
    border-color: #3b82f6;
    background: #f8fafc;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.quote-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Products CTA Modern */
.products-cta-modern {
    text-align: center;
    margin-top: 4rem;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.4);
    color: white;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(-100%) rotate(45deg); }
}

/* Interactive Features Section */
.interactive-features {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card-interactive {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.feature-card-interactive:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.feature-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.icon-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #3b82f6;
    border-radius: 23px;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0;
}

.feature-card-interactive:hover .icon-pulse {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0; }
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats {
    margin-top: 1rem;
}

.stat-highlight {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* Advanced Stats Section */
.stats-section-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.stats-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card-modern:hover::before {
    opacity: 1;
    animation: cardShine 1.5s ease-in-out;
}

@keyframes cardShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.stat-card-modern:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fbbf24;
    font-size: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-modern {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease-in-out;
}

.stat-card-modern.animate .progress-bar {
    width: var(--progress, 85%);
}

/* Why Choose Us Modern Section */
.why-choose-modern {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.advantage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.advantage-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.icon-bg {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

.advantage-card:hover .icon-bg {
    opacity: 0.3;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.advantage-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
}

.advantage-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.advantage-features li i {
    color: #22c55e;
    font-size: 0.8rem;
    background: rgba(34, 197, 94, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern CTA Section */
.cta-section-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.3);
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 25px 45px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 65px 15px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 125px 75px, rgba(255, 255, 255, 0.08), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: ctaParticleMove 25s linear infinite;
}

@keyframes ctaParticleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-150px, -100px); }
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.cta-title-modern {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle-modern {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.4);
    color: #1e3a8a;
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    color: white;
}

.btn-particles {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    animation: btnRotate 3s linear infinite;
}

.btn-primary-cta:hover .btn-particles {
    opacity: 0.7;
}

@keyframes btnRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.contact-value {
    font-weight: 600;
    font-size: 1rem;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-content {
    text-align: center;
    color: white;
}

.trust-text {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.trust-badge span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Quick Quote Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #334155;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Modern Elements */
@media (max-width: 1024px) {
    .products-carousel {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-badges {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats-inline {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-inline {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
    
    /* Fixed Mobile Carousel */
    .products-carousel-container {
        margin: 0 -1rem; /* Negative margin for full width */
        padding: 0 1rem; /* Add padding for content */
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        position: relative;
    }
    
    .products-carousel-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    
    .products-carousel {
        display: flex;
        gap: 1.5rem;
        padding: 1rem 0;
        min-width: max-content;
    }
    
    .product-card-modern {
        flex: 0 0 280px; /* Fixed width, no shrink/grow */
        max-width: 280px;
        margin: 0;
    }
    
    .product-card-modern:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        max-width: none;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    /* Smaller Mobile Carousel */
    .products-carousel-container {
        margin: 0 -0.5rem;
        padding: 0 0.5rem;
    }
    
    .products-carousel {
        gap: 1rem;
    }
    
    .product-card-modern {
        flex: 0 0 260px;
        max-width: 260px;
        margin: 0;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .advantage-card,
    .feature-card-interactive {
        padding: 1.5rem;
    }
    
    .modal-container {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   INTERACTIVE CONFIGURATOR SECTION (HOME PAGE)
   ============================================ */

.configurator-section-home {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.configurator-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(400px at 80% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.configurator-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* Demo Trailer Section */
.configurator-demo {
    position: relative;
}

.demo-trailer {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.demo-trailer::before {
    content: '';
    position: absolute;
}

/* ============================================
   PREMIUM CONFIGURATOR STYLES
   ============================================ */

/* Premium Configurator Styles */
.configurator-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.configurator-header {
    text-align: center;
    margin-bottom: 50px;
}

.configurator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.config-panel {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.config-group {
    margin-bottom: 40px;
}

.config-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

/* Capacity Slider */
.capacity-selector {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #bfdbfe;
}

.capacity-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    margin-bottom: 15px;
    -webkit-appearance: none;
    appearance: none;
}

.capacity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30,58,138,0.3);
}

.capacity-display {
    text-align: center;
}

#capacity-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
}

.unit {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.capacity-info {
    margin-top: 10px;
}

/* Axle Options */
.axle-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.option-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.2);
}

.option-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.option-card input {
    display: none;
}

.axle-visual {
    text-align: center;
    margin-bottom: 15px;
}

.axle-diagram {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.axle {
    width: 12px;
    height: 20px;
    background: #1f2937;
    border-radius: 2px;
}

.option-info strong {
    display: block;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 5px;
}

.option-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Material Cards */
.material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.material-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.material-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.material-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.material-card input {
    display: none;
}

.material-sample {
    width: 50px;
    height: 30px;
    border-radius: 8px;
    margin: 0 auto 15px;
    border: 2px solid #e5e7eb;
}

.material-sample.steel {
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
}

.material-sample.aluminum {
    background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
}

.material-info strong {
    display: block;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 5px;
}

.material-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Feature Toggles */
.features-grid {
    display: grid;
    gap: 15px;
}

.feature-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.feature-toggle:hover {
    border-color: #3b82f6;
}

.feature-toggle input:checked + .toggle-slider {
    background: #1e3a8a;
}

.feature-toggle input:checked + .toggle-slider::before {
    transform: translateX(26px);
}

.feature-toggle input {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature-info strong {
    display: block;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Color Palette */
.color-palette {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.color-option {
    text-align: center;
    cursor: pointer;
}

.color-option input {
    display: none;
}

.color-sample {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 8px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-option.selected .color-sample {
    border-color: #1e3a8a;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(30,58,138,0.3);
}

.color-sample.white {
    background: #ffffff;
    border: 3px solid #e5e7eb;
}

.color-sample.red {
    background: #dc2626;
}

.color-sample.blue {
    background: #1e40af;
}

.color-sample.green {
    background: #059669;
}

.color-option span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Config Actions */
.config-actions {
    margin-top: 40px;
    text-align: center;
}

.price-estimate {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
}

.price-label {
    color: #92400e;
    font-weight: 600;
    margin-right: 10px;
}

.price-value {
    color: #b45309;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Preview Panel */
.preview-panel {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 30px;
    height: fit-content;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.preview-header h4 {
    color: #1e3a8a;
    font-weight: 700;
}

.preview-controls {
    display: flex;
    gap: 8px;
}

.preview-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.trailer-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.trailer-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.config-summary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #bfdbfe;
    margin-top: 20px;
}

.config-summary h5 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.summary-item span:last-child {
    color: #1e3a8a;
    font-weight: 600;
}

/* Enhanced Configurator Styles */
.config-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-radius: 12px;
    background: #f1f5f9;
    padding: 5px;
}

.config-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.config-tab.active {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.config-tab:hover:not(.active) {
    background: rgba(255,255,255,0.5);
    color: #374151;
}

.config-tab-content {
    display: none;
}

.config-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trailer Type Cards */
.trailer-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.trailer-type-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trailer-type-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.2);
}

.trailer-type-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.trailer-type-card input {
    display: none;
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.type-info strong {
    display: block;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.type-info span {
    color: #64748b;
    font-size: 0.85rem;
}

/* Enhanced Capacity Controls */
.capacity-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.capacity-input-group {
    position: relative;
}

.capacity-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.marker {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    position: relative;
}

.marker::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #cbd5e1;
}

.capacity-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.capacity-weight {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    margin-top: 5px;
}

.usage-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.usage-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.usage-text {
    color: #1e40af;
    font-weight: 600;
    background: rgba(30, 64, 175, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.efficiency-bar {
    background: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.efficiency-fill {
    height: 100%;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 92%;
}

.efficiency-label {
    font-size: 0.8rem;
    color: #374151;
    margin-top: 5px;
    text-align: center;
}

/* Enhanced Axle Options */
.load-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    margin-top: 5px;
}

.option-specs {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-specs small {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Material Properties */
.material-visual {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.material-properties {
    flex: 1;
}

.property-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.property-bar span {
    font-size: 0.8rem;
    color: #6b7280;
    width: 60px;
    text-align: left;
}

.bar {
    flex: 1;
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.5s ease;
}

.material-specs {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.material-specs small {
    color: #6b7280;
    font-size: 0.75rem;
}

.material-sample.stainless {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    border: 1px solid #94a3b8;
}

/* Discharge Systems */
.discharge-options {
    display: grid;
    gap: 15px;
}

.feature-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.2);
}

.feature-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.feature-content {
    flex: 1;
}

.feature-details {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-details small {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Enhanced Feature Toggles */
.advanced-features {
    display: grid;
    gap: 12px;
}

.feature-toggle.enhanced {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-toggle.enhanced:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.toggle-slider.smart {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 1px solid #94a3b8;
}

.feature-toggle input:checked + .toggle-slider.smart {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.feature-icon-small {
    font-size: 1.2rem;
    margin-right: 10px;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.feature-text span {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Safety Options */
.safety-options {
    display: grid;
    gap: 15px;
}

.safety-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safety-card:hover {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.safety-card input:checked + .safety-icon {
    transform: scale(1.2);
}

.safety-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.safety-info strong {
    display: block;
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 3px;
}

.safety-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Enhanced Color Palette */
.color-palette.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.color-info {
    margin-top: 8px;
    text-align: center;
}

.color-name {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.color-code {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

.color-sample.black {
    background: #1f2937;
}

.color-sample.silver {
    background: linear-gradient(135deg, #f3f4f6 0%, #9ca3af 100%);
    border: 1px solid #6b7280;
}

.custom-gradient {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Accessories Grid */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.accessory-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
    position: relative;
}

.accessory-card:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.2);
}

.accessory-card input:checked + .accessory-image {
    transform: scale(1.1);
}

.accessory-image {
    font-size: 2rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.accessory-info strong {
    display: block;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 5px;
}

.accessory-info span {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.price-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Tire Options */
.tire-options {
    display: grid;
    gap: 15px;
}

.tire-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.tire-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.tire-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.tire-visual {
    font-size: 2rem;
}

.tire-info {
    flex: 1;
}

.tire-specs {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tire-specs small {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Enhanced Actions */
.action-buttons-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.price-estimate.enhanced {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #bfdbfe;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 2px solid #3b82f6;
    font-size: 1.1rem;
    font-weight: 700;
}

.price-note {
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* Enhanced Preview Panel */
.preview-panel.enhanced {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
}

.trailer-preview.enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    position: relative;
    min-height: 300px;
}

.preview-info.enhanced {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #bfdbfe;
}

.summary-grid {
    display: grid;
    gap: 12px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.summary-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.summary-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Main configurator section */
    .configurator-section {
        padding: 4rem 0;
    }
    
    .configurator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-panel {
        position: static;
        max-height: none;
        margin-bottom: 30px;
        order: -1; /* Preview panel first on mobile */
    }

    /* Config panel mobile optimization */
    .config-panel {
        padding: 1.5rem;
    }
    
    .config-group {
        margin-bottom: 2rem;
    }
    
    .config-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Options grids */
    .axle-options,
    .material-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .color-palette {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .trailer-preview {
        min-height: 250px;
        padding: 15px;
        overflow-x: auto;
    }
    
    .trailer-svg {
        min-width: 400px; /* Prevent SVG from becoming too small */
    }

    .trailer-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trailer-type-card {
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .type-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .accessories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .accessory-card {
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .accessory-image {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .action-buttons-row {
        flex-direction: column;
        gap: 10px;
    }

    .config-tabs {
        gap: 2px;
        margin-bottom: 20px;
    }
    
    .config-tab {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .capacity-controls {
        gap: 15px;
    }
    
    .capacity-display {
        text-align: center;
    }
    
    .capacity-main {
        justify-content: center;
        font-size: 1.8rem;
    }

    .material-visual {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .material-card {
        padding: 15px;
    }
    
    /* Price display mobile */
    .price-estimate {
        margin-top: 20px;
    }
    
    .price-breakdown {
        font-size: 0.9rem;
    }
    
    .summary-grid {
        gap: 8px;
    }
    
    .summary-item {
        padding: 8px 0;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .configurator-section {
        padding: 3rem 0;
    }
    
    .config-panel {
        padding: 1rem;
    }
    
    .trailer-types-grid {
        grid-template-columns: 1fr;
    }
    
    .color-palette {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .config-tabs {
        flex-direction: column;
        gap: 5px;
    }
    
    .trailer-preview {
        min-height: 200px;
        padding: 10px;
    }
    
    .capacity-main {
        font-size: 1.5rem;
    }
    
    .material-card,
    .accessory-card,
    .trailer-type-card {
        padding: 12px;
        gap: 12px;
    }
    
    .type-icon,
    .accessory-image {
        font-size: 1.5rem;
    }
}
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent,
        rgba(30, 58, 138, 0.1),
        transparent
    );
    animation: demoShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes demoShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.trailer-visual {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.demo-animations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.animation-indicator {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
}

.pulse-1 {
    top: 30%;
    left: 20%;
    animation: pulse1 3s ease-in-out infinite;
}

.pulse-2 {
    top: 60%;
    right: 25%;
    animation: pulse2 3s ease-in-out infinite 1s;
}

.pulse-3 {
    bottom: 40%;
    left: 50%;
    animation: pulse3 3s ease-in-out infinite 2s;
}

@keyframes pulse1 {
    0%, 70%, 100% { opacity: 0; transform: scale(0.8); }
    35% { opacity: 1; transform: scale(1.5); }
}

@keyframes pulse2 {
    0%, 70%, 100% { opacity: 0; transform: scale(0.8); }
    35% { opacity: 1; transform: scale(1.5); }
}

@keyframes pulse3 {
    0%, 70%, 100% { opacity: 0; transform: scale(0.8); }
    35% { opacity: 1; transform: scale(1.5); }
}

/* Configuration Options Preview */
.config-options-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.option-preview {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.option-preview:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.option-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0 0 0.25rem 0;
}

.option-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Configurator CTA */
.configurator-cta {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
}

.benefit-item i {
    color: #22c55e;
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-configurator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.btn-configurator.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.btn-configurator.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-configurator.btn-outline {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-configurator.btn-outline:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-glow-config {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    animation: configGlow 3s linear infinite;
}

.btn-configurator.btn-primary:hover .btn-glow-config {
    opacity: 0.7;
}

@keyframes configGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Configurator */
@media (max-width: 1024px) {
    .configurator-preview {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .config-options-preview {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .configurator-section-home {
        padding: 6rem 0;
    }
    
    .demo-trailer,
    .configurator-cta {
        padding: 2rem;
    }
    
    .config-options-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-configurator {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .demo-svg {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .option-preview {
        padding: 1rem;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .option-info h4 {
        font-size: 1rem;
    }
    
    .option-info p {
        font-size: 0.8rem;
    }
    
    .demo-trailer,
    .configurator-cta {
        padding: 1.5rem;
    }
    
    .demo-svg {
        max-width: 250px;
    }
}
