    /* ========================================
    CATALOG PAGE - COMPLETE STYLESHEET
    ======================================== */

    /* Reset & Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-color: #ff6200;        /* Gold/Elegant */
        --secondary-color: #fb6d00;      /* Golden Yellow */
        --accent-color: #383535;         /* Silver */
        --dark-color: #393736;           /* Dark Brown (Wood) */
        --light-color: #F5F5DC;          /* Beige (Warm) */
        --white: #FFFFFF;
        --gray-color: #6C757D;
        --shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        --transition: all 0.4s ease;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.7;
        color: var(--dark-color);
        background-color: var(--white);
        overflow-x: hidden;
    }

    .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    h1 {
        font-size: 3.8rem;
        margin-bottom: 1.8rem;
        color: var(--dark-color);
    }

    h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--dark-color);
    }

    h3 {
        font-size: 1.9rem;
        color: var(--dark-color);
    }

    p {
        margin-bottom: 1.2rem;
        color: #4A4A4A;
    }

    /* Buttons */
    .btn-primary, .btn-secondary {
        display: inline-block;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 1.05rem;
        text-align: center;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(139, 117, 0, 0.4);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        margin-left: 15px;
    }

    .btn-secondary:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateY(-3px);
    }

    /* Navigation */
    .navbar {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: var(--transition);
        padding: 15px 0;
    }

    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        transition: var(--transition);
    }

    .logo-img {
        height: 55px;
        width: auto;
        object-fit: contain;
        transition: var(--transition);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .nav-brand:hover .logo-img {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(139, 117, 0, 0.25);
    }

    .nav-brand:hover .logo-text {
        color: var(--secondary-color);
    }

    .nav-menu ul {
        display: flex;
        list-style: none;
        gap: 35px;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--dark-color);
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        transition: var(--transition);
        position: relative;
        font-size: 1.05rem;
    }

    .nav-menu a:hover, .nav-menu a.active {
        color: var(--primary-color);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transition: var(--transition);
    }

    .nav-menu a:hover::after, .nav-menu a.active::after {
        width: 100%;
    }

    .nav-toggle {
        display: none;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--dark-color);
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #F5F5DC 0%, #E8E8D3 100%);
        color: var(--dark-color);
        padding: 180px 0 120px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3.8rem;
        margin-bottom: 1.8rem;
        line-height: 1.2;
    }

    .hero-content .highlight {
        color: var(--primary-color);
        position: relative;
    }

    .hero-content .highlight::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        opacity: 0.3;
        z-index: -1;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        color: #4A4A4A;
        font-weight: 400;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    .hero-image {
        position: relative;
    }

    .hero-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        max-height: 600px;
        object-fit: cover;
        border: 8px solid var(--white);
    }

    .hero-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        padding: 12px 25px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
    }

    .hero-badge i {
        font-size: 1.2rem;
    }

    /* ========================================
    CATALOG INTRO SECTION
    ======================================== */
    .catalog-intro {
        padding: 100px 0;
        background-color: var(--white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        color: var(--dark-color);
        position: relative;
        display: inline-block;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 3px;
    }

    .section-header .highlight {
        color: var(--primary-color);
    }

    .section-header p {
        color: #666;
        font-size: 1.2rem;
        margin-top: 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .catalog-info {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        background-color: var(--light-color);
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .catalog-info p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4A4A4A;
        margin-bottom: 20px;
    }

    .catalog-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: block;
    }

    .stat-number {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
        font-family: 'Playfair Display', serif;
    }

    .stat-label {
        color: var(--dark-color);
        font-size: 0.95rem;
        font-weight: 500;
        display: block;
        margin-top: 5px;
    }

    /* ========================================
    CATALOG CATEGORIES SECTION
    ======================================== */
    .catalog-categories {
        padding: 100px 0;
        background-color: var(--light-color);
    }

    .category-filters {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 22px;
        background-color: var(--light-color);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 50px;
        cursor: pointer;
        transition: var(--transition);
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
    }

    .filter-btn:hover, .filter-btn.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
    }

    /* ========================================
    CATEGORY CARD - COMPLETE STRUCTURE
    ======================================== */
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
        margin-top: 40px;
    }

    .category-card {
        background-color: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    }

    /* Category Header */
    .category-header {
        padding: 20px 25px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    }

    .category-header h3 {
        font-size: 1.5rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Playfair Display', serif;
    }

    .category-header h3 i {
        font-size: 1.3rem;
    }

    .product-count {
        background-color: rgba(255, 255, 255, 0.2);
        padding: 4px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Category Gallery - Images in Grid */
    .category-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 8px;
        padding: 15px;
        background-color: var(--light-color);
        max-height: 300px;
        overflow: hidden;
    }

    .category-gallery img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
        transition: var(--transition);
        cursor: pointer;
        border: 2px solid transparent;
    }

    .category-gallery img:hover {
        transform: scale(1.05);
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(139, 117, 0, 0.2);
    }

    /* Category Content */
    .category-content {
        padding: 20px 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .category-content p {
        color: #666;
        font-size: 1.05rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Category Download Button */
    .category-download {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .btn-download {
        display: inline-block;
        width: 100%;
        padding: 12px 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: var(--transition);
        border: 2px solid transparent;
        text-align: center;
    }

    .btn-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        border-color: var(--primary-color);
    }

    .btn-download i {
        margin-right: 8px;
    }

    /* File Info */
    .file-info {
        margin-top: 15px;
        padding: 15px;
        background-color: rgba(139, 117, 0, 0.05);
        border-radius: 10px;
        border-left: 3px solid var(--primary-color);
    }

    .file-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: #666;
        margin: 5px 0;
    }

    .file-info i {
        color: var(--primary-color);
        font-size: 1rem;
    }

    /* ========================================
    FEATURED PRODUCTS SECTION
    ======================================== */
    .featured-products {
        padding: 100px 0;
        background-color: var(--white);
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
        margin-top: 50px;
    }

    .product-item {
        background-color: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 2px solid transparent;
    }

    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-color: rgba(139, 117, 0, 0.2);
    }

    .product-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .product-item:hover .product-image img {
        transform: scale(1.05);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, var(--secondary-color), #FF8C00);
        color: var(--white);
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .product-info {
        padding: 20px;
    }

    .product-info h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: var(--dark-color);
    }

    .product-desc {
        color: #666;
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .product-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }

    .product-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
        color: #4A4A4A;
    }

    .product-meta i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    /* ========================================
    CATALOG DOWNLOAD SECTION
    ======================================== */
    .catalog-download {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .catalog-download::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

    .download-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .download-content h2 {
        font-size: 2.8rem;
        color: var(--white);
        margin-bottom: 25px;
    }

    .download-content p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .catalog-features {
        list-style: none;
        margin: 30px 0;
        padding: 0;
    }

    .catalog-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.95);
    }

    .catalog-features li i {
        color: var(--white);
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.15);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .download-buttons {
        display: flex;
        gap: 15px;
        margin: 30px 0;
    }

    .download-buttons .btn-primary {
        background-color: var(--white);
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    .download-buttons .btn-primary:hover {
        background-color: var(--light-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    }

    .download-buttons .btn-secondary {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .download-buttons .btn-secondary:hover {
        background-color: var(--white);
        color: var(--primary-color);
    }

    .file-info {
        margin-top: 30px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .file-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 8px 0;
    }

    .file-info i {
        color: var(--white);
        font-size: 1.1rem;
    }

    .download-image {
        position: relative;
    }

    .download-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        max-height: 500px;
        object-fit: cover;
        border: 8px solid rgba(255, 255, 255, 0.2);
    }

    .catalog-preview-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        padding: 10px 22px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* ========================================
    HOW TO ORDER SECTION
    ======================================== */
    .how-to-order {
        padding: 100px 0;
        background-color: var(--white);
    }

    .order-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 70px;
        position: relative;
        flex-wrap: wrap;
        gap: 30px;
    }

    .order-step-line {
        flex: 1;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        margin: 0 20px;
        position: relative;
    }

    .order-step {
        text-align: center;
        flex: 1;
        min-width: 200px;
        max-width: 220px;
    }

    .step-icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, var(--secondary-color), #FF8C00);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .step-icon i {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
        border: 4px solid var(--white);
    }

    .order-step h3 {
        margin-bottom: 12px;
        color: var(--dark-color);
        font-size: 1.4rem;
    }

    .order-step p {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }

    .order-cta {
        text-align: center;
        margin-top: 70px;
        padding: 40px;
        background: linear-gradient(135deg, rgba(139, 117, 0, 0.05), rgba(212, 175, 55, 0.08));
        border-radius: 20px;
        border: 2px solid rgba(139, 117, 0, 0.1);
    }

    .order-cta p {
        font-size: 1.3rem;
        margin-bottom: 25px;
        color: var(--dark-color);
        font-weight: 500;
    }

    .order-cta p strong {
        color: var(--primary-color);
    }

    .order-cta .btn-primary {
        padding: 14px 40px;
        font-size: 1.1rem;
    }

    /* ========================================
    CATALOG TESTIMONIALS SECTION
    ======================================== */
    .catalog-testimonials {
        padding: 100px 0;
        background-color: var(--light-color);
    }

    .testimonial-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .testimonial-item {
        background-color: var(--white);
        padding: 45px;
        border-radius: 25px;
        box-shadow: var(--shadow);
        position: relative;
    }

    .testimonial-item::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 25px;
        font-size: 6rem;
        font-family: Georgia, serif;
        color: rgba(139, 117, 0, 0.1);
        line-height: 1;
    }

    .testimonial-content {
        position: relative;
        z-index: 1;
    }

    .rating {
        color: #FFD700;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 30px;
        font-style: italic;
        color: var(--dark-color);
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .author-info h4 {
        color: var(--dark-color);
        margin-bottom: 5px;
        font-size: 1.3rem;
    }

    .author-info p {
        color: #666;
        font-size: 1rem;
        margin: 0;
    }

    .author-info .project-type {
        display: inline-block;
        background-color: rgba(139, 117, 0, 0.05);
        color: var(--primary-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-top: 8px;
    }

    /* ========================================
    CTA SECTION
    ======================================== */
    .cta {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 80px 0;
        text-align: center;
        color: var(--white);
    }

    .cta-content h2 {
        font-size: 2.8rem;
        color: var(--white);
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 35px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta .btn-primary {
        background-color: var(--white);
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    .cta .btn-primary:hover {
        background-color: var(--light-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    }

    /* ========================================
    FOOTER
    ======================================== */
    .footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 80px 0 40px;
        position: relative;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 45px;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

    .footer-brand .logo-text {
        font-size: 2rem;
        color: var(--white);
        margin-bottom: 20px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        margin-top: 15px;
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .footer-contact p {
        color: rgba(255, 255, 255, 0.8);
        margin: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.05rem;
    }

    .footer-contact i {
        color: var(--secondary-color);
        font-size: 1.1rem;
    }

    .footer-links h4,
    .footer-newsletter h4 {
        color: var(--white);
        margin-bottom: 25px;
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-links h4::after,
    .footer-newsletter h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    }

    .footer-links ul {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        font-size: 1.05rem;
        display: block;
        padding: 5px 0;
    }

    .footer-links a:hover {
        color: var(--secondary-color);
        padding-left: 8px;
    }

    .footer-newsletter p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .footer-newsletter form {
        display: flex;
        gap: 10px;
    }

    .footer-newsletter input {
        flex: 1;
        padding: 14px 20px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .footer-newsletter input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .footer-newsletter input:focus {
        outline: none;
        border-color: var(--secondary-color);
    }

    .footer-newsletter button {
        padding: 14px 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1.2rem;
    }

    .footer-newsletter button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-links-inline {
        display: flex;
        gap: 25px;
    }

    .footer-links-inline a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        font-size: 1rem;
    }

    .footer-links-inline a:hover {
        color: var(--secondary-color);
    }

    /* ========================================
    RESPONSIVE DESIGN FOR CATALOG
    ======================================== */
    @media (max-width: 992px) {
        h1 {
            font-size: 3.2rem;
        }
        
        h2 {
            font-size: 2.4rem;
        }
        
        .hero .container,
        .download-container {
            grid-template-columns: 1fr;
        }
        
        .hero-image,
        .download-image {
            order: -1;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .order-steps {
            flex-direction: column;
        }
        
        .order-step-line {
            width: 3px;
            height: 40px;
            margin: 0 auto;
        }
    }
    /* FORCE styling untuk button download */
.download-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(251, 109, 0, 0.3) !important;
    border: none !important;
}

.download-buttons .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(251, 109, 0, 0.4) !important;
}

    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 85%;
            height: calc(100vh - 80px);
            background-color: var(--white);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
            z-index: 999;
            padding: 40px 30px;
            border-radius: 20px 0 0 20px;
        }
        
        .nav-menu.active {
            right: 0;
        }
        
        .nav-menu ul {
            flex-direction: column;
            gap: 25px;
        }
        
        .nav-toggle {
            display: block;
        }
        
        .logo-text {
            display: none;
        }
        
        .logo-img {
            height: 45px;
        }
        
        h1 {
            font-size: 2.6rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        .hero {
            padding: 150px 0 80px;
        }
        
        .hero-content h1 {
            font-size: 2.6rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-secondary {
            margin-left: 0;
            margin-top: 15px;
        }
        
        .services-grid,
        .features-grid,
        .portfolio-grid,
        .testimonial-slider {
            grid-template-columns: 1fr;
        }
        
        .category-filters {
            flex-direction: column;
            align-items: center;
        }
        
        .category-filters .filter-btn {
            width: 100%;
            max-width: 300px;
        }
        
        .catalog-stats {
            flex-direction: column;
            gap: 20px;
        }
        
        .download-buttons {
            flex-direction: column;
        }
        
        .download-buttons .btn-secondary {
            margin-left: 0;
            margin-top: 10px;
        }
        
        .file-info {
            text-align: center;
        }
        
        /* Category Card Responsive */
        .categories-grid {
            grid-template-columns: 1fr;
        }
        
        .category-gallery {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .category-gallery img {
            height: 90px;
        }
        
        .category-header {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
        
        .product-count {
            width: 100%;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-links-inline {
            flex-direction: column;
            gap: 10px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 20px;
        }
        
        h1 {
            font-size: 2.2rem;
        }
        
        h2 {
            font-size: 1.8rem;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
        
        .hero-content p {
            font-size: 1.1rem;
        }
        
        /* Category Card Mobile */
        .category-gallery {
            grid-template-columns: 1fr;
        }
        
        .category-gallery img {
            height: 150px;
        }
    }
        /* ========================================
    VIDEO GALLERY STYLING
    ======================================== */

    /* ===============================
    VIDEO PLAYER FIX (SAFE PATCH)
    Tidak mengubah layout lain
    =============================== */

   .video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 🔥 KUNCI UTAMA */
    background: #000;
    overflow: hidden;
    border-radius: 12px;
}


    .video-overlay {
        position: absolute;
        inset: 0;
        z-index: 10;              /* 🔥 PENTING */
        cursor: pointer;
        pointer-events: auto;     /* 🔥 PENTING */
        background: rgba(0,0,0,.45);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Tombol play */
    .video-overlay .play-btn {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        transition: transform 0.2s ease;
    }

    .video-overlay .play-btn i {
        font-size: 24px;
        color: #ff6a00;
        margin-left: 3px;
    }

    /* Hover */
    .video-overlay:hover .play-btn {
        transform: scale(1.1);
    }

    /* Hide overlay when playing */
    .video-player.playing .video-overlay {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    .catalog-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* biar gak pause sendiri */
}
.video-player { outline: 2px solid red; }





    