/* ===== CSS VARIABLES ===== */
:root {
    --primary-black: #0a0a0a;
    --secondary-gray: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #404040;
    --light-gray: #666666;
    --white: #ffffff;
    --gold: #B8860B;
    --gold-hover: #DAA520;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --border: #333333;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.6);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text:hover {
    color: var(--gold);
}

/* ===== MOBILE LOGO STYLES ===== */
.mobile-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.05));
    position: relative;
    overflow: hidden;
}

.mobile-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-logo-container:hover::before {
    left: 100%;
}

.mobile-logo {
    height: 70px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mobile-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-logo-text:hover {
    color: var(--gold);
    transform: scale(1.05);
}

.mobile-logo-item {
    display: none; /* Hidden by default, shown only in mobile menu */
}

/* ===== NAVIGATION STYLES ===== */

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(184, 134, 11, 0.1);
}

.nav-link.active {
    color: var(--gold);
    background: rgba(184, 134, 11, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* Catalog Dropdown */
.catalog-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.catalog-dropdown:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-1px);
}

.catalog-trigger {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-right: 0.5rem;
    display: block;
}

.catalog-icon {
    font-size: 0.8rem;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.catalog-dropdown:hover .catalog-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.catalog-dropdown:hover .catalog-trigger {
    color: var(--gold);
}

.catalog-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
}

.catalog-dropdown:hover .catalog-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    cursor: pointer;
}

.catalog-option:hover {
    background: rgba(184, 134, 11, 0.15);
    color: var(--gold);
    transform: translateX(5px);
}

.catalog-option:active {
    transform: translateX(5px) scale(0.98);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.language-switcher:hover {
    background: rgba(184, 134, 11, 0.1);
}

.current-lang {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
}

.lang-icon {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.language-switcher:hover .lang-icon {
    color: var(--gold);
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-width: 100px;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    pointer-events: none;
    display: none !important;
}

.language-switcher:hover .language-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: auto;
    display: block !important;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.lang-option:hover {
    background: rgba(184, 134, 11, 0.15);
    color: var(--gold);
    transform: translateX(3px);
}

.lang-option.active {
    color: var(--gold);
    background: rgba(184, 134, 11, 0.25);
    font-weight: 500;
}

.lang-option:active {
    transform: translateX(3px) scale(0.98);
}

/* Search Icon */
.search-icon {
    color: var(--text-primary);
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.search-icon:hover {
    color: var(--gold);
    background: rgba(184, 134, 11, 0.1);
}

.catalog-dropdown:hover .catalog-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-option {
    padding: 0.875rem 1.25rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
}

.catalog-option:hover {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.05));
    color: var(--gold);
    transform: translateX(5px);
}

.catalog-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.catalog-option:hover::before {
    transform: scaleY(1);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--gold);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(184, 134, 11, 0.15);
    color: var(--gold);
    transform: translateX(5px);
}

.dropdown-item:active {
    transform: translateX(5px) scale(0.98);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-item {
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.search-item:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: scale(1.05);
}



/* Search Icon */
.search-icon {
    color: var(--text-primary);
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-weight: 300;
}

.search-icon:hover {
    color: var(--gold);
    background-color: rgba(184, 134, 11, 0.1);
    transform: scale(1.05);
}

/* ===== SEARCH MODAL ===== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.search-modal.active .search-container {
    transform: translateY(0);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.close-search {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.close-search:hover {
    color: var(--gold);
    background: rgba(184, 134, 11, 0.1);
}

.search-input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background);
    color: var(--text-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--surface);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.result-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.result-content {
    flex: 1;
    min-width: 0;
}

.search-result-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.search-result-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.result-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.result-type {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--gold);
    color: var(--primary-black);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.result-category {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 400;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.search-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    color: var(--text-primary);
    padding: 2rem 0 0 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 30px;
    margin-right: 0.75rem;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Facebook - Black background with blue border */
.social-link.facebook {
    background: var(--primary-black);
    color: #1877f2;
    border: 2px solid #1877f2;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Instagram - Black background with white icon */
.social-link.instagram {
    background: var(--primary-black);
    color: var(--white);
    border: 2px solid transparent;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

/* YouTube - Black background with red border */
.social-link.youtube {
    background: var(--primary-black);
    color: #ff0000;
    border: 2px solid #ff0000;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.25rem;
}

/* Marketplace Links */
.marketplace-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.marketplace-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-height: 80px;
}

.marketplace-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.marketplace-logo {
    height: 80px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: block;
    vertical-align: middle;
}

.marketplace-link:hover .marketplace-logo {
    filter: brightness(1.2);
}

.footer .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer .contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer .contact-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    background: var(--secondary-gray);
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== HERO SECTIONS ===== */
.hero, .about-hero, .portfolio-hero, .contact-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1, .about-hero h1, .portfolio-hero h1, .contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p, .about-hero p, .portfolio-hero p, .contact-hero p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover {
    background: var(--gold);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        overflow-y: auto;
        display: flex; /* Always flex, positioned off-screen when inactive */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }

    .nav-menu.active .nav-item {
        animation: fadeInUp 0.5s ease forwards;
    }

    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.6s; }

    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        color: var(--text-primary);
        text-decoration: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(184, 134, 11, 0.1);
        color: var(--gold);
        transform: translateX(10px);
    }

    .catalog-dropdown {
        width: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .catalog-trigger {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        margin-right: 0;
        padding: 1.2rem 2rem;
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        display: block;
    }

    .catalog-trigger:hover {
        background: rgba(184, 134, 11, 0.1);
        color: var(--gold);
        transform: translateX(10px);
    }

    .catalog-icon {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }

    .catalog-dropdown.active .catalog-icon {
        transform: translateY(-50%) rotate(180deg);
        color: var(--gold);
    }

    .catalog-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .catalog-dropdown.active .catalog-dropdown-menu {
        max-height: 200px;
    }

    .catalog-option {
        font-size: 1.1rem !important;
        padding: 1rem 3rem !important;
        color: var(--text-secondary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
    }

    .catalog-option:hover {
        background: rgba(184, 134, 11, 0.1) !important;
        color: var(--gold) !important;
        transform: translateX(5px);
    }

    .catalog-option i {
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        order: 3; /* Move to rightmost position */
        margin-left: 0.5rem;
    }

    .nav-actions {
        gap: 1rem;
    }

    .language-switcher {
        margin-right: 0;
    }

    .search-item {
        margin-left: 0;
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 998;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
        /* Tampilkan seluruh gambar tanpa crop di mobile */
        background-position: right center;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #0b0b0b;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero h1, .about-hero h1, .portfolio-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .logo {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    /* Marketplace Mobile */
    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketplace-card {
        text-align: center;
    }

    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        margin: 0;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    /* About Page Mobile */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-card,
    .value-card,
    .timeline-item {
        padding: 2rem;
    }

    .card-header,
    .value-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .marketplace-grid {
        justify-content: center;
        gap: 1rem;
    }

    .marketplace-item {
        width: 120px;
        height: 60px;
    }

    .contact-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .contact-links a {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-bottom a {
        font-size: 0.8rem;
    }

    /* E-Catalog Mobile Responsive */
    .e-catalog-container {
        padding: 0 1rem;
    }

    .catalog-viewer {
        border-radius: var(--radius-lg);
    }

    .catalog-header {
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .catalog-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .catalog-controls {
        flex-direction: column;
        gap: 0.75rem;
    }

    .control-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .control-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .page-info {
        font-size: 0.9rem;
    }

    .pdf-container {
        height: 60vh;
    }

    .pdf-viewer {
        height: 100%;
    }

    .loading-container,
    .error-container {
        padding: 2rem 1rem;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }

    .loading-text,
    .error-text {
        font-size: 1rem;
    }

    /* Legal Pages Mobile Responsive */
    .legal-content {
        padding: 0 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.25rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .legal-content ul,
    .legal-content ol {
        padding-left: 1.5rem;
    }

    .legal-content blockquote {
        padding: 1rem;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    .legal-content table {
        font-size: 0.85rem;
    }

    .legal-content th,
    .legal-content td {
        padding: 0.5rem;
    }
}

/* Tablet Navigation */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .catalog-trigger {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}
@media (max-width: 1024px) {
    .dropdown-menu {
        left: 0;
        transform: translateY(-10px);
        min-width: 160px;
    }

    .nav-item:hover .dropdown-menu {
        transform: translateY(0);
    }
    
    .footer-bottom-links {
        justify-content: center;
    }

    .marketplace-links {
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .marketplace-logo {
        height: 60px;
        max-width: 100px;
    }
    
    .marketplace-link {
        min-height: 60px;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1, .about-hero h1, .portfolio-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .search-icon {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }

    .logo {
        height: 35px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }

    /* Footer Responsive */
    .footer {
        padding: 1.5rem 0 0 0;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo-img {
        height: 25px;
    }

    .footer-logo-text {
        font-size: 0.9rem;
    }

    .marketplace-logo {
        height: 50px;
    }

    .marketplace-links {
        gap: 1rem;
    }

    .overview-image img {
        max-height: 250px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.company-overview {
    background: var(--surface);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}

.company-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.overview-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.overview-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.overview-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.overview-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-image:hover .image-overlay {
    opacity: 1;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Removed duplicate .overview-image styles that were causing image cropping */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.vision-mission {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.vm-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.vm-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.vm-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.vm-card {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    border-radius: 2px;
}

.vm-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.core-values {
    background: var(--surface);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.values-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

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

.value-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.value-accent {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    border-radius: 1px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Company Timeline */
.company-timeline {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.company-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.timeline-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

.timeline-item:hover::before {
    transform: scaleX(1);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}



@media (max-width: 480px) {
    .company-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }
}

/* ===== POLICY PAGES STYLES ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.policy-content,
.sitemap-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section,
.sitemap-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.policy-section h2,
.sitemap-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.policy-section p,
.sitemap-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul,
.sitemap-links {
    list-style: none;
    padding-left: 0;
}

.policy-section li,
.sitemap-links li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li::before,
.sitemap-links li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sitemap-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sitemap-links a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

.contact-info {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold-hover);
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Empty State */
.no-portfolios {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

.no-portfolios p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.7;
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-modal .modal-content {
    position: relative;
    background: var(--surface);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow-y: auto;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-gray));
    color: var(--white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

/* Project Gallery */
.project-gallery {
    margin-bottom: 0;
}

.gallery-main {
    position: relative;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--background);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    padding: 1rem 0.75rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

.gallery-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--gold);
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.portfolio-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-gallery {
    background: var(--surface);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

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

.portfolio-item {
    background: var(--background);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-category {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.portfolio-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.video-showcase {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.video-item {
    background: var(--background);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--gold);
}

.video-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--primary-black);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-item:hover .video-container video {
    transform: scale(1.02);
}

.video-content {
    padding: 2rem;
}

.video-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.video-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border);
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: var(--primary-black);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: var(--gold);
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.modal-info {
    padding: 2rem;
    background: var(--surface);
}

.modal-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.social-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.social-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--background);
    color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--surface);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
    border: 1px solid var(--border);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--gold-hover);
}

.map-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.map-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-link .btn:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.map-link .btn i {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.map-section {
    background: var(--secondary-gray);
}

.map-container {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 400px;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.office-hours {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.office-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.hours-item .day {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-item .time {
    color: var(--gold);
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: 2px solid #25D366 !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-primary);
}

.time {
    color: var(--text-secondary);
}

.time.closed {
    color: #dc3545;
}

/* ===== HOME PAGE STYLES ===== */
.hero {
    background: url('../images/home.jpg') right center/cover no-repeat;
    color: var(--white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ====== Global Responsive Utilities (Publish Hardening) ====== */
/* Media wrappers ensure embedded content scales within container */
.responsive-media,
.responsive-embed {
    position: relative;
    width: 100%;
}

.responsive-embed::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 */
}

.responsive-embed > iframe,
.responsive-embed > video,
.responsive-embed > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Media defaults */
img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

/* Adaptive container */
.container,
.container-lg,
.hero-container {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding-inline: clamp(1rem, 2vw, 2rem);
}

/* Table wrapper for small screens */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

/* Generic grid helpers for cards/lists */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Lebih gelap di kiri, transparan di kanan agar objek orang (kanan) terlihat */
    background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(26,26,26,0.6) 45%, rgba(10,10,10,0.2) 70%, rgba(10,10,10,0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.feature-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

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

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.stats-section {
    background: var(--secondary-gray);
}

.marketplace-section {
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.marketplace-card {
    background: var(--surface);
    padding: 0;
    border-radius: var(--radius-xl);
    text-align: left;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.marketplace-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.marketplace-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--gold);
}

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

.marketplace-image {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.marketplace-logo {
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
    display: block;
    margin: 0 auto;
}

.marketplace-card:hover .marketplace-logo {
    transform: scale(1.1);
    filter: grayscale(0);
}

.marketplace-content {
    padding: 2rem;
}

.marketplace-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.marketplace-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.marketplace-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.marketplace-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.marketplace-features .feature-item:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: translateX(5px);
}

.marketplace-features .feature-item i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.marketplace-features .feature-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.marketplace-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.marketplace-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

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

.mb-4 {
    margin-bottom: 1rem;
}

/* ===== HARDCOPY CATALOG PAGE STYLES ===== */
.catalog-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.catalog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.catalog-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hardcopy-catalog {
    max-width: 900px;
    margin: 0 auto;
}

.catalog-cover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.catalog-cover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cover-content {
    color: var(--text-primary);
}

.cover-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.cover-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cover-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.cover-content .price-info {
    margin: 1.5rem 0;
}

.cover-content .price-info h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cover-content .price-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cover-content .marketplace-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin: 1rem 0;
}

.cover-content .marketplace-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.cover-content .marketplace-link:hover .marketplace-logo {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.cover-content .catalog-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cover-content .detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cover-content .detail-item i {
    color: var(--gold);
    font-size: 1rem;
    width: 16px;
}

.cover-image {
    display: flex;
    justify-content: center;
}

.cover-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.catalog-cover:hover .cover-image img {
    transform: scale(1.02);
}

.cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.catalog-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.info-item i {
    font-size: 1.75rem;
    color: var(--gold);
    width: 40px;
    text-align: center;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

.purchase-options {
    padding: 2rem;
    text-align: center;
    background: var(--surface);
}

.purchase-options h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.marketplace-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.marketplace-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.marketplace-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.marketplace-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.marketplace-link:hover .marketplace-logo {
    filter: brightness(1.2);
}

.price-info {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.price-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.price-info p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.catalog-features {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--background);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .overview-content h2 {
        font-size: 1.75rem;
    }

    .overview-content .lead {
        font-size: 1.1rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    /* Portfolio Page Responsive */
    .portfolio-hero {
        padding: 120px 0 80px;
    }

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

    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .filter-buttons {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        padding: 100px 0 60px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        margin: 0 1rem;
    }

    .portfolio-image {
        height: 220px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-container {
        height: 220px;
    }

    .video-content {
        padding: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .search-item {
        padding: 0.3rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== ENHANCED BUTTON STYLES ===== */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero h1, .about-hero h1, .portfolio-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .logo {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    /* Marketplace Mobile */
    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketplace-card {
        text-align: center;
    }

    .marketplace-image {
        padding: 1.5rem;
        min-height: 100px;
    }

    .marketplace-logo {
        height: 70px;
        max-width: 140px;
    }

    .marketplace-content {
        padding: 1.5rem;
    }

    .marketplace-features {
        align-items: center;
    }

    .marketplace-features .feature-item {
        justify-content: center;
    }

    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        margin: 0;
    }

    .portfolio-image {
        height: 250px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 1rem;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .marketplace-links {
        align-items: center;
        justify-content: center;
    }

    .marketplace-logo {
        height: 60px;
    }

    /* Search Modal Mobile */
    .search-modal {
        padding: 1rem;
    }

    .search-container {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 12px;
    }

    .search-header h3 {
        font-size: 1.2rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-info {
        padding: 1.5rem;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 120px 0 80px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .overview-image img {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-card, .value-card {
        padding: 2rem;
    }

    /* E-Catalog Mobile */
    .catalog-hero {
        padding: 120px 0 80px;
    }

    .catalog-cover {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .cover-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .cover-content p {
        font-size: 1rem;
        text-align: center;
    }

    .cover-content h3 {
        text-align: center;
    }

    .cover-content .marketplace-links {
        justify-content: center;
    }

    .cover-content .price-info h4 {
        font-size: 1.5rem;
        text-align: center;
    }

    .cover-content .price-info p {
        text-align: center;
    }

    .cover-image img {
        max-width: 300px;
    }

    .marketplace-links {
        flex-direction: column;
        align-items: center;
    }

    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketplace-card {
        text-align: center;
    }

    .marketplace-image {
        padding: 1rem;
        min-height: 80px;
    }

    .marketplace-logo {
        height: 60px;
        max-width: 120px;
    }

    .marketplace-content {
        padding: 1.5rem;
    }

    .marketplace-features {
        align-items: center;
    }

    .marketplace-features .feature-item {
        justify-content: center;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    .search-item {
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* About Page Responsive */
    .about-hero {
        padding: 100px 0 60px;
    }

    .overview-content h2 {
        font-size: 1.75rem;
    }

    .overview-content .lead {
        font-size: 1.1rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    /* Portfolio Page Responsive */
    .portfolio-hero {
        padding: 100px 0 60px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        margin: 0 1rem;
    }

    .portfolio-image {
        height: 220px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-container {
        height: 220px;
    }

    .video-content {
        padding: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 180px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Contact Page Mobile */
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0 0 0;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo-img {
        height: 25px;
    }

    .footer-logo-text {
        font-size: 0.9rem;
    }

    .marketplace-logo {
        height: 50px;
    }

    .marketplace-links {
        gap: 1rem;
    }

    .overview-image img {
        max-height: 250px;
    }

    /* Search Icon Mobile */
    .search-icon {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }

    .logo {
        height: 35px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
    }

    /* Features Mobile */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Stats Mobile */
    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Marketplace Mobile */
    .marketplace-card {
        padding: 1.5rem;
    }

    .marketplace-content {
        padding: 1rem;
    }

    .marketplace-content h3 {
        font-size: 1.2rem;
    }

    /* Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 0.5rem;
        max-height: 95vh;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .gallery-main {
        height: 250px;
    }

    .gallery-thumbnails {
        gap: 0.5rem;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .stat-card,
    .info-card {
        padding: 1.25rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .portfolio-content,
    .marketplace-content {
        padding: 1.25rem;
    }

    .logo {
        height: 30px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .nav-menu {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .btn {
        width: auto;
        max-width: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: url('../images/home.jpg');
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .mobile-menu-toggle,
    .search-modal,
    .whatsapp-float {
        display: none !important;
    }

    .hero {
        background: none !important;
        color: #000 !important;
        padding: 2rem 0 !important;
    }

    .section {
        padding: 2rem 0 !important;
    }

    .container {
        max-width: none !important;
        padding: 0 1rem !important;
    }
}

/* ===== MOBILE LOGO RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* Logo always visible on mobile navbar */
    .logo-container {
        order: 1; /* First position (left) */
    }

    .logo {
        height: 40px; /* Smaller on mobile navbar */
    }

    /* Show mobile logo in mobile menu */
    .mobile-logo-item {
        display: block !important;
    }

    /* Adjust mobile menu padding for logo */
    .nav-menu {
        padding-top: 80px !important;
        gap: 0 !important;
    }

    /* Ensure mobile logo container is clickable */
    .mobile-logo-container {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-logo-container:hover {
        background: rgba(184, 134, 11, 0.1);
    }

    /* Adjust nav-container for new mobile layout */
    .nav-container {
        justify-content: space-between;
        gap: 1rem;
    }

    /* Nav-actions container for right side items */
    .nav-actions {
        order: 2; /* Second position (right) */
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Desktop nav menu hidden on mobile, shown as sidebar when active */

    /* Enhanced Mobile Navigation Items */
    .nav-item {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.3rem !important;
        padding: 1.5rem 2rem !important;
        width: calc(100% - 2rem) !important;
        justify-content: center;
        border-radius: var(--radius-lg);
        margin: 0 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

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

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

    .nav-link:hover {
        background: rgba(184, 134, 11, 0.15) !important;
        border-color: var(--gold) !important;
        transform: translateX(10px);
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    }

    /* Enhanced Mobile Catalog Dropdown */
    .mobile-catalog-dropdown {
        width: calc(100% - 2rem) !important;
        margin: 0 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .mobile-catalog-dropdown::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .mobile-catalog-dropdown:hover::before {
        left: 100%;
    }

    .mobile-catalog-dropdown:hover {
        background: rgba(184, 134, 11, 0.15);
        border-color: var(--gold);
        transform: translateX(10px);
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    }

    .mobile-catalog-dropdown .catalog-trigger {
        font-size: 1.3rem !important;
        padding: 1.5rem 2rem !important;
        width: 100%;
        text-align: center;
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: var(--text-primary);
        font-weight: 500;
    }

    .mobile-catalog-dropdown .catalog-icon {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .mobile-catalog-dropdown:hover .catalog-icon {
        transform: rotate(180deg);
        color: var(--gold);
    }

    .mobile-catalog-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-catalog-dropdown.active .mobile-catalog-menu {
        max-height: 200px;
    }

    .mobile-catalog-menu .catalog-option {
        font-size: 1.1rem !important;
        padding: 1rem 2rem !important;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        border-radius: var(--radius-md);
        margin: 0.25rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-catalog-menu .catalog-option:hover {
        background: rgba(184, 134, 11, 0.1) !important;
        color: var(--gold) !important;
        transform: translateX(5px);
        border-color: var(--gold);
    }

    .mobile-catalog-menu .catalog-option i {
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

    /* Mobile Sidebar Animations */
    .nav-menu {
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Staggered animation for nav items */
    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-item:nth-child(5) { animation-delay: 0.5s; }

    .nav-item {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-menu.active .nav-item {
        animation: fadeInUp 0.5s ease forwards;
    }

    /* Mobile overlay animation */
    .mobile-overlay {
        animation: fadeIn 0.3s ease;
    }

    .mobile-overlay.active {
        animation: fadeIn 0.3s ease;
    }
}

/* Keyframes for mobile animations */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
