/* 
 * CRITICAL STYLES COPIED FROM template-landing-scaffolding-new.php 
 * TO ENSURE 1:1 VISUAL CONSISTENCY 
 */

    /* General Layout & Zoom Logic */
    .landing-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        background: #ffffff;
        font-family: 'Space Grotesk', sans-serif;
        overflow-x: hidden;
    }

    @media (max-width: 1600px) and (min-width: 1024px) {
        .landing-container {
            zoom: 0.75;
            margin-top: 6rem;
        }
    }

    @supports not (zoom: 1) {
        @media (max-width: 1600px) and (min-width: 1024px) {
            .landing-container {
                transform: scale(0.75);
                transform-origin: top center;
                width: calc(100% / 0.75);
                padding-top: 120px;
            }
        }
    }

    @media (max-width: 768px) {
        .landing-container {
            padding-top: 60px;
        }
    }

    /* Typography */
    .font-nippo {
        font-family: 'Nippo', sans-serif;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 20vh;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-top: 3rem;
        padding-bottom: 1.5rem;
        margin: 0;
        color: white;
        text-align: center;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 1;
        opacity: 0.3;
        filter: blur(2px);
    }

    .hero-content {
        position: relative;
        z-index: 3;
        max-width: 1200px;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 0.5rem; Removed to control margins individually */
    }

    .hero-title {
        font-family: 'Nippo', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        line-height: 1.1;
        margin: 0;
        margin-bottom: 0.25rem;
        /* Small gap to subtitle */
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        color: #cbd5e1;
        max-width: 800px;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-badge {
        display: inline-block;
        background: #33d5f3;
        color: #0f172a;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(51, 213, 243, 0.4);
        margin-bottom: 1.5rem;
        /* Large gap to title */
    }

    /* Section Common */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    @media (max-width: 768px) {
        .section-header {
            margin-bottom: 2rem;
        }
    }

    .section-title {
        font-family: 'Nippo', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: #64748b;
    }

    /* Features (Timeline) */
    .features-section {
        padding: 6rem 0;
        background: #f8fafc;
    }

    .features-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

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

    .feature-card {
        background: #ffffff;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        border-color: #33d5f3;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    /* Products Section */
    .rental-products-section {
        padding: 6rem 0;
        background: #ffffff;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Tablet Responsive */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .rental-products-section {
            padding: 3rem 0;
            /* Reduced from 6rem */
        }

        .products-grid {
            gap: 1rem;
            /* Reduced from 2rem */
            padding: 0 1rem;
            grid-template-columns: 1fr;
            /* Full width on mobile */
        }
    }

    .product-item {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(226, 232, 240, 0.5);
        display: flex;
        flex-direction: column;
    }

    .product-item:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        border-color: #33d5f3;
        transform: translateY(-5px);
    }

    .product-image-container {
        height: 280px;
        background: #fcfcfc;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        position: relative;
    }

    .product-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .product-item:hover .product-image {
        transform: scale(1.05);
    }

    .product-badges {
        position: absolute;
        top: 1rem;
        left: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 20;
    }

    .badge {
        padding: 0.25rem 0.75rem;
        border-radius: 8px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .badge.available {
        background: #dcfce7;
        color: #166534;
    }

    .badge.unavailable {
        background: #fee2e2;
        color: #991b1b;
    }

    .product-info {
        padding: 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-title {
        font-family: 'Nippo', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-family: 'Nippo', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
    }

    .feature-list {
        margin-bottom: 2rem;
        flex: 1;
    }

    .feature-row {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
        color: #64748b;
    }

    .feature-row span:last-child {
        color: #0f172a;
        font-weight: 500;
    }

    .btn-rent {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-rent:hover {
        background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
        box-shadow: 0 4px 15px rgba(51, 213, 243, 0.4);
        transform: translateY(-2px);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid #e2e8f0;
        color: #0f172a;
        box-shadow: none;
        text-align: center;
        text-decoration: none;
    }

    .btn-outline:hover {
        border-color: #33d5f3;
        background: transparent;
        color: #33d5f3;
        box-shadow: none;
    }



    /* Pricing Table */
    .pricing-section {
        padding: 6rem 0;
        background: #ffffff;
    }

    .pricing-table-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        overflow-x: auto;
        /* Enable horizontal scrolling on mobile */
    }

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

    .pricing-table th {
        background: #f8fafc;
        padding: 1.5rem;
        text-align: left;
        font-family: 'Nippo', sans-serif;
        font-weight: 600;
        color: #0f172a;
        border-bottom: 2px solid #e2e8f0;
    }

    .pricing-table td {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #f1f5f9;
        color: #475569;
    }

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

    .pricing-table tr:hover {
        background: #fcfcfc;
    }

    .price-cell {
        font-family: 'Nippo', sans-serif;
        font-weight: 700;
        color: #0f172a;
    }

    /* Inquiry Section */
    .inquiry-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
        color: white;
    }

    .form-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 3rem;
        color: #0f172a;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        max-width: 800px;
        margin: 0 auto;
    }

    /* Form Specific Overrides (HTML Forms) */
    .form-card input[type="text"],
    .form-card input[type="email"],
    .form-card input[type="tel"],
    .form-card textarea,
    .form-card select {
        border-color: #cbd5e1 !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-family: inherit !important;
    }

    .form-card input:focus,
    .form-card textarea:focus,
    .form-card select:focus {
        border-color: #33d5f3 !important;
        box-shadow: 0 0 0 3px rgba(51, 213, 243, 0.2) !important;
        outline: none !important;
    }

    .form-card button[type="submit"],
    .form-card input[type="submit"] {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 1rem 2rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        width: 100% !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .form-card button[type="submit"]:hover,
    .form-card input[type="submit"]:hover {
        background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%) !important;
        box-shadow: 0 4px 15px rgba(51, 213, 243, 0.4) !important;
        transform: translateY(-2px) !important;
    }

    /* Helper for non-Tailwind setups (Timeline Icons) */
    .step-icon-container {
        width: 4rem;
        height: 4rem;
        background: linear-gradient(to bottom right, #33d5f3, #60a5fa);
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
    }

    .step-number-bg {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 3rem;
        font-weight: 700;
        color: #f3f4f6;
        z-index: 0;
    }