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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: transparent;
    position: relative;
}

/* All headings use Sitka Text with fallbacks */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sitka Text', Georgia, 'Times New Roman', Times, serif;
}

/* Watermark */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2000px;
    height: 2000px;
    background-image: url('assets/images/LR750_MRL_WM.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    min-width: 1000px;
    min-height: 1000px;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.15);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.12);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.nav-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(52, 152, 219, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    min-height: auto;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-family: 'Sitka Text', Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.3),
        1px 1px 2px rgba(0,0,0,0.2),
        0 0 10px rgba(52, 152, 219, 0.15) !important;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1)) !important;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15) !important;
}

.hero-rrr {
    margin: 20px 0;
    text-align: center;
}

.rrr-img {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

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

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Featured Product */
.featured-product {
    padding: 40px 20px;
    background: transparent;
}

.featured-product h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.product-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.product-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Special styling for LR750 product image to preserve transparency */
.product-img[src*="LR750"] {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Certification Logos Styling */
.product-image,
.product-image-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-logos {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    padding: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Home page specific - move logos further right */
.featured-product .product-image .certification-logos {
    right: -35px !important;
}

.cert-logo {
    width: 60px;
    height: auto;
    display: block;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: transparent;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.service-card {
    background: transparent;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.service-link:hover {
    color: #2980b9;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 20px;
    background: transparent;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
}

/* Call to Action */
.cta {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.cta .btn-primary {
    background: #3498db;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    white-space: nowrap;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Footer */
.footer {
    background: #34495e;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #3498db;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    padding: 8px 15px;
    background: #3498db;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a5f7a;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
        margin: 5px 15px;
        border-radius: 8px;
    }
    
    .nav-menu a:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateX(5px);
    }
    
    /* Fix mobile layout */
    .hero {
        padding: 90px 15px 20px !important; /* More top padding, less side padding */
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    
    .hero-image {
        width: 100% !important;
        overflow: hidden !important; /* Ensure no content spills out */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px; /* Better spacing */
        width: 100%;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    /* Certification logos mobile adjustments */
    .certification-logos {
        bottom: 5px;
        right: 5px;
        padding: 6px;
        gap: 10px;
    }
    
    .cert-logo {
        width: 45px;
    }
    
    /* On mobile, ensure logos don't get covered by product image */
    .product-image {
        position: relative;
        overflow: visible;
    }
    
    .product-image .certification-logos {
        right: 0px;
        bottom: 0px;
        z-index: 10;
    }
    
    /* Products Grid Mobile */
    .products-grid-section {
        padding: 80px 0 !important;
        width: 100%;
        overflow-x: hidden;
    }
    
    .products-grid-section .container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        justify-items: center;
        padding: 0 !important;
        margin: 0 20px !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
    }
    
    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .product-card-preview {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }
    
    .product-card-image {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    
    .product-card-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .product-card-content h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .product-detail-content {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Floating Back Button Mobile */
    .floating-back-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .floating-quote-btn {
        bottom: 85px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn {
        width: 200px;
    }
    
    .cta .btn-secondary {
        min-width: 180px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero {
        padding: 85px 10px 15px !important; /* Even more compact */
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .rrr-img {
        max-width: 300px;
    }
    
    
    .hero-content {
        gap: 25px; /* Reasonable gap */
    }
    
    .services-overview h2,
    .featured-product h2,
    .why-choose-us h2,
    .cta h2 {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    padding: 90px 20px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* Ensure finisher-header canvas is visible */
#finisher-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 0 !important;
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Glow-in animation effect for page headers */
.page-header .glowIn {
    color: white;
}

.page-header .glowIn span {
    animation: glow-in 0.8s both;
}

@keyframes glow-in {
    from {
        opacity: 0;
    }
    65% {
        opacity: 1;
        text-shadow: 0 0 25px white;
    }
    75% {
        opacity: 1;
    }
    to {
        opacity: 0.7;
    }
}

/* Products Grid Section */
.products-grid-section {
    padding: 80px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: transparent;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Hide product when not selected */
.product-card.hidden {
    display: none;
}

/* Selected product takes full width */
.product-card.selected {
    grid-column: 1 / -1;
    max-width: 100%;
}

.product-card.selected .product-card-preview {
    display: none;
}

.product-card.selected .product-card-details {
    display: block;
    max-height: none;
}

.product-card-preview {
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card-preview:hover {
    background: rgba(52, 152, 219, 0.02);
}

.product-card-image {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    background: transparent;
    border-radius: 10px;
    padding: 20px;
}

.product-card-img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.certification-logos-card {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.cert-logo-small {
    width: 40px;
    height: auto;
}

.product-card-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-card-tagline {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-expand-btn {
    width: 100%;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-expand-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.expand-icon {
    transition: transform 0.3s ease;
}

/* Product Card Details (Shown when selected) */
.product-card-details {
    display: none;
    background: transparent;
}

.product-detail-content {
    padding: 40px 30px;
}

.product-back-btn,
.product-back-btn-top {
    width: 100%;
    padding: 15px 24px;
    background: #95a5a6;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-back-btn-top {
    margin-bottom: 20px;
}

.product-back-btn {
    margin-top: 20px;
}

.product-back-btn:hover,
.product-back-btn-top:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Floating Back Button */
.floating-back-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-back-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.floating-back-btn:active {
    transform: translateY(-1px);
}

/* Floating Get a Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    padding: 15px 25px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.floating-quote-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
    color: white;
    text-decoration: none;
}

.floating-quote-btn:active {
    transform: translateY(-1px);
}

/* Product Detail */
.product-detail {
    padding: 80px 20px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-tagline {
    font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 30px;
    font-weight: 500;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.product-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #f0f0f0;
    color: #555;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    display: inline-block;
    cursor: default;
}

.main-product-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Special styling for LR750 main product image to preserve transparency */
.main-product-img[src*="LR750"] {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Product Features Section */
.product-features-section {
    margin-bottom: 80px;
}

.product-features-section h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature-item {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* Product Specifications */
.product-specs {
    margin-bottom: 80px;
    background: transparent;
    padding: 60px 40px;
    border-radius: 15px;
}

.product-specs h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

.spec-category h4 {
    font-size: 1.4rem;
    color: #3498db;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

/* Quick Documentation Access */
.quick-docs {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doc-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
    max-width: 350px;
    width: 100%;
}

.doc-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
}

.doc-button-icon {
    font-size: 1.4rem;
    min-width: 24px;
}

.doc-button-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.doc-button-text strong {
    font-size: 1rem;
    line-height: 1.2;
}

.doc-button-text span {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Product Resources */
.product-resources {
    margin-bottom: 80px;
    background: transparent;
    padding: 60px 40px;
    border-radius: 15px;
}

.product-resources h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

.resource-card {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.resource-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.resource-link:hover {
    background: #2980b9;
    color: white;
}

/* Product CTA */
.product-cta {
    background: #2c3e50;
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.product-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Future Products */
.future-products {
    padding: 80px 20px;
    background: transparent;
}

.future-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.future-products > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.coming-soon-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0.8;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.coming-soon-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.coming-soon-card p {
    color: #666;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .product-specs {
        padding: 40px 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        padding: 40px 20px;
    }
    
    .quick-docs {
        margin-top: 20px;
        gap: 12px;
    }
    
    .doc-button {
        padding: 10px 15px;
        gap: 10px;
        max-width: none;
    }
    
    .doc-button-icon {
        font-size: 1.2rem;
        min-width: 20px;
    }
    
    .doc-button-text strong {
        font-size: 0.95rem;
    }
    
    .doc-button-text span {
        font-size: 0.8rem;
    }
    
    .doc-link {
        flex-direction: column;
        text-align: center;
    }
}

/* Services Detail */
.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    margin-bottom: 100px;
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-tagline {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-features-list h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-features-list ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.service-features-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 0.8rem;
}

.service-applications h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.applications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.application-tag {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #3498db;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: transparent;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.process-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Services */
.why-choose-services {
    padding: 80px 20px;
    background: transparent;
}

.why-choose-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.benefit-card {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* Quote Section */
.quote-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quote-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.quote-form {
    text-align: left;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.contact-alternative {
    opacity: 0.9;
}

.contact-alternative a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form-container {
        padding: 30px 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}/* 
About Page Styles */

/* Company Overview */
.company-overview {
    padding: 80px 20px;
    background: transparent;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.lead {
    font-size: 1.3rem;
    color: #3498db;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.overview-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Our Values */
.our-values {
    padding: 80px 20px;
    background: transparent;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.value-card {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* What We Do */
.what-we-do {
    padding: 80px 20px;
    background: transparent;
}

.what-we-do h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.capability-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
}

.capability-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.capability-content {
    padding: 30px;
}

.capability-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.capability-content p {
    color: #666;
    line-height: 1.6;
}

/* Our Commitment */
.our-commitment {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.commitment-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commitment-point h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.commitment-point p {
    color: #666;
    line-height: 1.6;
}

.commitment-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Industries Served */
.industries-served {
    padding: 80px 20px;
    background: transparent;
}

.industries-served h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.industries-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.industry-card {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* About CTA */
.about-cta {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design for About */
@media (max-width: 768px) {
    .overview-content,
    .commitment-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-points {
        gap: 20px;
    }
    
    .overview-text h2,
    .commitment-text h2 {
        font-size: 2rem;
    }
}/* Cont
act Page Styles */

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2,
.contact-form-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-intro,
.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: transparent;
    border-radius: 10px;
}

.method-icon {
    font-size: 2rem;
    min-width: 50px;
}

.method-info h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.method-info p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-info a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.method-info a:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Business Info */
.business-info {
    padding: 80px 20px;
    background: transparent;
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-card strong {
    color: #2c3e50;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: transparent;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* Contact CTA */
.contact-cta {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .business-info-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        min-width: auto;
    }
}/* 
Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-top: 25px;
}

.product-docs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-docs .btn {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    font-size: 0.85rem;
    padding: 8px 10px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    overflow: visible;
}

.product-docs .btn-icon {
    margin-right: 6px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1rem;
}

/* Responsive adjustments for product actions */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .product-docs {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .product-docs .btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        white-space: normal;
        padding: 10px 15px;
    }
    
    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}/* Pr
oduct Portfolio */
.product-portfolio {
    padding: 80px 20px;
    background: transparent;
}

.product-portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.portfolio-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.portfolio-card {
    background: transparent;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card.featured {
    border: 2px solid #3498db;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.portfolio-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.portfolio-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.portfolio-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tag {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.portfolio-card.featured .portfolio-tag {
    background: #27ae60;
}

.portfolio-card:not(.featured) .portfolio-tag {
    background: #95a5a6;
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Slideshow - Clean Mobile-Responsive Version */
.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-slideshow {
    position: relative;
    width: 80%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: transparent;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.slideshow-img.active {
    opacity: 1;
    z-index: 10;
}

.slideshow-img:not(.active) {
    opacity: 0;
    z-index: 1;
}

/* Enhanced Hero Typography with Strong Permanent Shadows */
.hero h1 {
    color: #2c3e50;
    text-shadow: 
        4px 4px 8px rgba(0,0,0,0.6),
        2px 2px 4px rgba(0,0,0,0.4),
        0 0 20px rgba(52, 152, 219, 0.3);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

/* Enhanced subtitle with permanent strong shadow */
.hero-subtitle {
    text-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

/* Order/Quote Page Styles */
.order-section {
    padding: 80px 20px;
    background: transparent;
}

.order-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-selection {
    margin-bottom: 60px;
}

.product-selection h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.selection-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.products-order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-order-card {
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-order-card:hover {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
    transform: translateY(-3px);
}

.product-order-card.selected {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.product-order-checkbox {
    position: absolute;
    top: 20px;
    right: 20px;
}

.product-order-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #3498db;
}

.product-order-info {
    padding-right: 40px;
}

.product-order-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-order-type {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-order-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-order-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.spec-badge {
    background: #f0f0f0;
    color: #555;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

.product-quantity-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: nowrap;
}

.product-quantity-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
    white-space: nowrap;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    width: 36px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.quantity-btn:hover:not(:disabled) {
    background: #e9ecef;
    color: #3498db;
}

.quantity-btn:active:not(:disabled) {
    background: #dee2e6;
    transform: scale(0.95);
}

.quantity-btn:disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Visual feedback when quantity input is disabled but buttons are still clickable */
.product-order-card:not(.selected) .quantity-controls {
    opacity: 0.7;
}

.product-order-card:not(.selected) .quantity-btn:hover {
    opacity: 1;
    background: #e9ecef;
    color: #3498db;
}

.quantity-decrease {
    border-right: 1px solid #e0e0e0;
}

.quantity-increase {
    border-left: 1px solid #e0e0e0;
}

.product-quantity {
    width: 70px;
    padding: 8px 12px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
    -moz-appearance: textfield;
    appearance: textfield;
    flex-shrink: 0;
}

.product-quantity::-webkit-outer-spin-button,
.product-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity:focus {
    outline: none;
    background: #f8f9fa;
}

.product-quantity:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-order-card.selected .quantity-controls {
    border-color: #3498db;
}

.product-order-card.selected .product-quantity:not(:disabled) {
    border-color: #3498db;
}

/* Mobile adjustments for quantity controls */
@media (max-width: 768px) {
    .product-quantity-group {
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .product-quantity-group label {
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .quantity-controls {
        flex-wrap: nowrap;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .quantity-btn {
        width: 40px;
        height: 44px;
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    .product-quantity {
        width: 70px;
        min-width: 60px;
        padding: 10px 6px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
}

.order-form-container {
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.order-form-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.selected-products-summary {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid #3498db;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.selected-products-summary h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.selected-products-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-products-summary li {
    padding: 8px 0;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.selected-products-summary li:last-child {
    border-bottom: none;
}

.selected-products-summary li::before {
    content: "✓ ";
    color: #3498db;
    font-weight: bold;
    margin-right: 8px;
}

/* Responsive Design for Order Page */
@media (max-width: 768px) {
    .products-order-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form-container {
        padding: 25px 20px;
    }
    
    .product-selection h2 {
        font-size: 2rem;
    }
    
    .order-form-container h2 {
        font-size: 1.8rem;
    }
}

