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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #303030;
    background: #F8F9FA;
    position: relative;
    margin: 0;
    padding: 0;
}

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

.content-box {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo {
    width: 250px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(225, 200, 129, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #303030;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 15px;
    transition: all 0.4s 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(225, 200, 129, 0.3), transparent);
    transition: left 0.6s;
}

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

.nav-link:hover {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    color: #303030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Section Styles */
section {
    padding: 40px 0;
    position: relative;
}

section .container {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    margin: 20px auto;
    border: 1px solid #E5E7EB;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #303030;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #303030 0%, #5B5B5B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5B5B5B;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF7E0 0%, #FDF4D3 100%);
}

.welcome-section .container {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 80px 60px;
    margin: 20px auto;
    border: 1px solid #E5E7EB;
}

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

.welcome-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #303030;
    margin-bottom: 24px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.welcome-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #5B5B5B;
    margin-bottom: 40px;
    font-weight: 500;
}

.welcome-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 251, 0.6) 100%);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(48, 48, 48, 0.1);
    font-weight: 600;
    color: #303030;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 200, 129, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: linear-gradient(145deg, rgba(254, 247, 224, 0.95) 0%, rgba(253, 244, 211, 0.85) 100%);
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.25), 0 0 0 1px rgba(225, 200, 129, 0.2);
    transform: translateY(-2px) scale(1.02);
    color: #8B6914;
}

.feature-item i {
    color: #C7A54F;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: #B8860B;
    transform: scale(1.1);
}

.welcome-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    color: #303030;
    box-shadow: 0 6px 20px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C7A54F 0%, #E1C881 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(225, 200, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #BABABA 0%, #8F97A5 100%);
    color: #303030;
    box-shadow: 0 6px 20px rgba(186, 186, 186, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8F97A5 0%, #BABABA 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(186, 186, 186, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Welcome Image */
.welcome-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #303030;
    animation: orbit 8s linear infinite;
}

.floating-item.gold {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-item.silver {
    background: linear-gradient(135deg, #BABABA 0%, #8F97A5 100%);
    bottom: 20%;
    left: 10%;
    animation-delay: -2.7s;
}

.floating-item.platinum {
    background: linear-gradient(135deg, #D4D4D4 0%, #A3A3A3 100%);
    top: 50%;
    left: -10%;
    animation-delay: -5.3s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* Service Section */
.service-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #E5E7EB;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E1C881 0%, #C7A54F 50%, #BABABA 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 200, 129, 0.1), transparent);
    transition: left 0.8s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #C7A54F;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #303030;
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #303030;
    margin-bottom: 16px;
}

.service-description {
    color: #5B5B5B;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #303030;
    font-weight: 500;
}

.service-features i {
    color: #16A34A;
    font-size: 1rem;
}

/* Pricelist Section */
.pricelist-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.price-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #E5E7EB;
}

.price-card.gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E1C881 0%, #C7A54F 100%);
}

.price-card.silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #BABABA 0%, #8F97A5 100%);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #C7A54F;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.price-header i {
    font-size: 2.5rem;
}

.price-card.gold .price-header i {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card.silver .price-header i {
    background: linear-gradient(135deg, #BABABA 0%, #8F97A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #303030;
}

.price-content {
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #E7E6DF;
}

.price-label {
    font-weight: 500;
    color: #5B5B5B;
}

.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #303030;
}

.price-buy {
    color: #16A34A !important;
}

.price-sell {
    color: #DC2626 !important;
}

.update-time {
    text-align: center;
    margin: 10px 0 20px 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.update-time i {
    margin-right: 8px;
    color: #C7A54F;
}

.update-time strong {
    color: #303030;
}

.gold-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E7E6DF;
}

.gold-category:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #C7A54F;
    margin-bottom: 12px;
    text-align: center;
    background: linear-gradient(135deg, #FEF7E0 0%, #FDF4D3 100%);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #E1C881;
}

.price-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-change.positive {
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
}

.price-change.negative {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.price-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5B5B5B;
    font-weight: 500;
}

.info-item i {
    color: #C7A54F;
}

/* Price Table Section */
.price-table-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.table-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    background: #F9FAFB;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #C7A54F;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(199, 165, 79, 0.1);
}

.filter-box select {
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    background: #F9FAFB;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-box select:focus {
    outline: none;
    border-color: #C7A54F;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(199, 165, 79, 0.1);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    font-size: 14px;
}

.price-table thead {
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
}

.price-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #303030;
    border-bottom: 2px solid #B8860B;
    white-space: nowrap;
}

.price-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}

.price-table tbody tr:hover {
    background: #F9FAFB;
}

.price-table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

.price-table tbody tr:nth-child(even):hover {
    background: #F3F4F6;
}

.price-table tbody td {
    padding: 14px 12px;
    color: #374151;
    vertical-align: middle;
    border-bottom: 1px solid #F3F4F6;
}

.price-table .row-number {
    font-weight: 600;
    color: #6B7280;
    text-align: center;
    font-size: 14px;
}

.price-table .product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-table .product-name {
    font-weight: 600;
    color: #1F2937;
    font-size: 14px;
    line-height: 1.3;
}

.price-table .product-purity {
    font-size: 12px;
    color: #6B7280;
    font-weight: 400;
}

.price-table .brand-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}

.price-table .brand-badge.antam {
    background: #6B7280;
}

.price-table .brand-badge.eoa {
    background: #6B7280;
}

.price-table .brand-badge.ubs {
    background: #6B7280;
}

.price-table .brand-badge.galeri {
    background: #6B7280;
}

.price-table .category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.price-table .category-badge.emas {
    background: #FEF3C7;
    color: #D97706;
}

.price-table .category-badge.perak {
    background: #DBEAFE;
    color: #2563EB;
}

.price-table .weight {
    font-weight: 500;
    color: #374151;
}

.price-table .price-buy {
    font-weight: 600;
    color: #059669;
}

.price-table .price-sell {
    font-weight: 600;
    color: #DC2626;
}

.price-table .price-contact {
    font-weight: 500;
    color: #6B7280;
    font-style: italic;
}

.price-table .action-cell {
    text-align: center;
}

.price-table .whatsapp-btn {
    background: #25D366;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.price-table .whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.loading-row td {
    text-align: center;
    padding: 40px 20px;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6B7280;
}

.loading-spinner i {
    font-size: 20px;
    color: #C7A54F;
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-info {
    color: #6B7280;
    font-size: 14px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(:disabled) {
    background: #F9FAFB;
    border-color: #C7A54F;
    color: #C7A54F;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #F3F4F6;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
}

.page-number:hover {
    background: #F9FAFB;
    border-color: #C7A54F;
    color: #C7A54F;
}

.page-number.active {
    background: #C7A54F;
    border-color: #C7A54F;
    color: white;
    cursor: default;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #9CA3AF;
    font-weight: bold;
    font-size: 16px;
}

.page-ellipsis {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #C7A54F;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(225, 200, 129, 0.1);
}

.faq-icon {
    color: #C7A54F;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #303030;
    flex: 1;
}

.faq-answer {
    padding: 0 30px 24px 62px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.faq-answer p {
    color: #5B5B5B;
    line-height: 1.6;
}

/* Products Grid Section */
.products-section {
    background: linear-gradient(135deg, #FEF7E0 0%, #FDF4D3 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(199, 165, 79, 0.15);
    border-color: #C7A54F;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(199, 165, 79, 0.3);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.product-brand {
    background: #F3F4F6;
    color: #6B7280;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    width: fit-content;
}

.product-weight,
.product-purity {
    font-size: 13px;
    color: #4B5563;
    font-weight: 500;
}

.product-price {
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 8px;
    border-left: 4px solid #C7A54F;
}

.product-prices {
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 8px;
    border-left: 4px solid #C7A54F;
}

.product-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 8px;
    border-left: 4px solid #C7A54F;
}

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

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.price-buy {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
}

.price-sell {
    font-size: 1.1rem;
    font-weight: 700;
    color: #DC2626;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #DC2626;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-order {
    flex: 1;
    background: linear-gradient(135deg, #C7A54F 0%, #B8860B 100%);
    border: none;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-order:hover {
    background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(199, 165, 79, 0.3);
    color: #FFFFFF;
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    border: none;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

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

/* Brand Section */
.brand-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

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

.brand-question {
    margin-bottom: 40px;
}

.brand-question h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.brand-list {
    margin-bottom: 40px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-item {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    background: linear-gradient(145deg, #FEF7E0 0%, #FDF4D3 100%);
    border-color: #C7A54F;
    color: #8B6914;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 165, 79, 0.2);
}

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

.brand-description p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.brand-cta {
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
}

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

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #303030;
    box-shadow: 0 6px 20px rgba(225, 200, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #303030;
    margin-bottom: 8px;
}

.contact-details p {
    color: #5B5B5B;
    line-height: 1.6;
}

.contact-form {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #303030;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    color: #303030;
    background: #FFFFFF;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C7A54F;
    box-shadow: 0 0 0 3px rgba(199, 165, 79, 0.1);
}

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

/* Footer */
.footer {
    background: #1F2937;
    color: #FFFFFF;
    padding: 60px 0 20px;
    margin-top: 40px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-main-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-description {
    color: #BABABA;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E1C881 0%, #C7A54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 200, 129, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(225, 200, 129, 0.4);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: #E1C881;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BABABA;
}

.footer-contact .contact-item i {
    color: #C7A54F;
    width: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #E5E7EB;
        padding: 20px 0;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 16px 20px;
        width: 100%;
        justify-content: center;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main {
        margin-top: 70px;
    }

    section {
        padding: 30px 0;
    }
    
    section .container {
        padding: 40px 20px;
        margin: 15px auto;
    }
    
    .welcome-section .container {
        padding: 60px 30px;
        margin: 15px auto;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 12px;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .welcome-section {
        padding: 80px 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .welcome-title {
        font-size: 2.5rem;
        justify-content: center;
    }

    .welcome-features {
        justify-content: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .welcome-cta {
        justify-content: center;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .main-icon {
        font-size: 6rem;
    }

    .floating-item {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .price-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .price-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .table-container {
        padding: 20px;
    }

    .table-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .search-box {
        min-width: auto;
    }

    .price-table {
        font-size: 12px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 10px 8px;
    }

    .table-pagination {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pagination-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .brand-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .brand-question h3 {
        font-size: 1.3rem;
    }

    .brand-description p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-actions {
        flex-direction: column;
        gap: 8px;
    }

    .footer-main-logo {
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

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

    .nav-container {
        padding: 0 15px;
    }

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

    .welcome-icon {
        font-size: 2rem;
    }

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

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .price-card,
    .contact-form {
        padding: 20px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .main-icon {
        font-size: 4rem;
    }

    .floating-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    @keyframes orbit {
        0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
    }
}