/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fb6d00;        /* 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;
}
/* Logo Styling */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo-img {
    height: 55px; /* Ukuran default untuk desktop */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    background: transparent !important; /* Background transparan */
    border: none !important;
    border-radius: 0; /* Hapus border-radius agar logo tidak terpotong */
    box-shadow: none; /* Hapus shadow agar tidak ada efek background */
    padding: 0;
    margin: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Efek hover pada logo */
.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);
}

/* Responsive: Sembunyikan text di mobile, tampilkan hanya logo */
@media (max-width: 992px) {
    .logo-text {
        display: none;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .nav-brand {
        gap: 8px;
    }
}

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);
}
.cta .btn-primary,
.cta .btn-primary:focus,
.cta .btn-primary:active {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Untuk semua button */
.btn-primary:focus,
.btn-primary:active {
    text-decoration: none !important;
    outline: none !important;
}

/* 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;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.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%, #fe9902d3 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-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.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;
}

.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;
}

/* Services Section */
.services {
    padding: 120px 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;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-color: rgba(139, 117, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(139, 117, 0, 0.1), rgba(212, 175, 55, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2.2rem;
    border: 3px solid rgba(139, 117, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 18px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(8px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 117, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.6rem;
}

.feature-item p {
    color: #666;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23F5F5DC" opacity="0.03"/></svg>');
    background-size: 40px 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.about-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.3;
}

.about-text p {
    margin-bottom: 20px;
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-height: 550px;
    object-fit: cover;
    border: 8px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
}

.experience-badge .label {
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background-color: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    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: 1rem;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 117, 0, 0.85) 0%, rgba(44, 24, 16, 0.95) 100%);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.view-project {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.view-project:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.portfolio-more {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::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%;
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header .highlight {
    color: var(--white);
    position: relative;
}

.testimonials .section-header .highlight::after {
    background: linear-gradient(90deg, var(--white), var(--accent-color));
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 45px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 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: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.author-info .project-type {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Process Section */
.process {
    padding: 120px 0;
    background-color: var(--light-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    position: relative;
    flex-wrap: wrap;
    gap: 30px;
}

.process-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 20px;
    position: relative;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
    border: 3px solid var(--white);
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.process-step p {
    color: #666;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    width: 55px;
    height: 55px;
    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: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 117, 0, 0.3);
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 117, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

.contact-form button i {
    margin-right: 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: transparent;
    color: #333333; /* Hitam */
    border: 2px solid #333333;
    box-shadow: none;
}

.cta .btn-primary:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%232C1810" opacity="0.05"/></svg>');
    background-size: 30px 30px;
}

.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 */
@media (max-width: 992px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero .container,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .about-image {
        order: -1;
    }
    
    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-line {
        width: 3px;
        height: auto;
        margin: 10px 0;
    }
}

@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;
    }
    
    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;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .features-grid,
    .portfolio-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
    
    .service-card,
    .feature-item {
        padding: 30px 20px;
    }
    
    .portfolio-item {
        height: 300px;
    }
    /* ========================================
   CATALOG PAGE STYLES
   ======================================== */

/* Catalog Intro Section */
.catalog-intro {
    padding: 100px 0;
    background-color: var(--white);
}

.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;
}

.catalog-stats .stat-item {
    text-align: center;
}

.catalog-stats .stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

/* 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;
}

.category-filters .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;
}

.category-filters .filter-btn:hover,
.category-filters .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 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;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 117, 0, 0.7) 0%, rgba(44, 24, 16, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-content h3 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.category-content p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* 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 PAGE STYLES - COMPLETE VERSION
   ======================================== */

/* ========================================
   CATALOG INTRO SECTION
   ======================================== */

.catalog-intro {
    padding: 100px 0;
    background-color: var(--white);
}

.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;
}

.catalog-stats .stat-item {
    text-align: center;
}

.catalog-stats .stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

/* ========================================
   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;
}

.category-filters .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;
}

.category-filters .filter-btn:hover,
.category-filters .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* ========================================
   CATEGORY CARD - UPDATED 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(236, 202, 7, 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(51, 18, 200, 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);
}

/* ========================================
   RESPONSIVE DESIGN FOR CATALOG
   ======================================== */

@media (max-width: 992px) {
    .download-container {
        grid-template-columns: 1fr;
    }
    
    .download-image {
        order: -1;
    }
    
    .order-steps {
        flex-direction: column;
    }
    
    .order-step-line {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .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%;
    }
}

@media (max-width: 480px) {
    /* Category Card Mobile */
    .category-gallery {
        grid-template-columns: 1fr;
    }
    
    .category-gallery img {
        height: 150px;
    }
}

/* Kategori Card - Perbaikan Tampilan */
.category-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 117, 0, 0.1);
}

/* Perbaikan Gallery Gambar */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Kategori Card - Perbaikan Tampilan */
.category-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 117, 0, 0.1);
}

/* Header Kategori */
.category-header {
    background: linear-gradient(135deg, #8B7500 0%, #D4AF37 100%);
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header h3 i {
    font-size: 1.2rem;
}

.product-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Gallery Gambar - PERBAIKAN SINTAKS UTAMA */
.category-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.05); 
}

.category-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.category-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(139, 117, 0, 0.15);
    border-color: #d4af37;
}

/* Konten Deskripsi */
.category-content {
    padding: 15px 20px;
    background: white;
}

.category-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* Tombol Download */
.btn-download {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    background: linear-gradient(135deg, #8B7500, #D4AF37);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin: 10px 0;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 117, 0, 0.3);
    background: linear-gradient(135deg, #D4AF37, #8B7500);
}

/* File Info */
.file-info {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px 15px;
    border-left: 3px solid #8B7500;
}

.file-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    margin: 5px 0;
}
/* Portfolio Section Styles */
.portfolio {
    padding: 100px 0;
    background: #f8f9fa;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 8px 0;
    color: white;
}

.portfolio-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.view-project {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.portfolio-item:hover .view-project {
    opacity: 1;
    transform: translateY(0);
}

.view-project:hover {
    background: #e65a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}
/* Grid untuk galeri gambar kategori */
.category-gallery.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow: hidden;
    border-radius: 8px;
    margin: 15px 0;
}

.category-gallery.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.category-gallery.image-grid img:hover {
    transform: scale(1.05);
}

/* Untuk tampilan mobile */
@media (max-width: 768px) {
    .category-gallery.image-grid {
        grid-template-columns: 1fr;
    }
}
/* Tambahkan di bagian akhir style.css */
.video-player {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.3s;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* ========================================
   VIDEO PLAYER (CATALOG)
   ======================================== */

.video-player {
    position: relative;
}

.catalog-video {
    width: 100%;
    display: block;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

/* overlay hilang setelah play */
.video-player.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* 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: var(--primary-color);
    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;
}
/* ===============================
   VIDEO PLAYER FIX (WAJIB ADA)
================================ */

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* PENTING */
}

/* Overlay Play Button */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: opacity .3s ease, visibility .3s ease;
}

.video-overlay i {
    font-size: 64px;
    color: #fff;
}

/* Saat video PLAY */
.video-wrapper.playing .video-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


}