/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e5b8;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    background: var(--black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-wrapper >  .logo{
    height: 60px;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.3);
}

/* Logo Text Styles */
.brand-wrapper > .logo-text {
    display: flex;
flex-direction: column;
}

.brand-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gold);
    line-height: 1.2;
    margin: 0;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--light-gold);
    line-height: 1.4;
    margin: 0;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.08);
    padding-left: 22px;
}

.dropdown-icon {
    font-size: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.dropdown-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(26, 26, 26, 0.75)),
                url('../images/home-hero.webp') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 160px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 36px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--black);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-gold::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-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light-gray);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    border-radius: 2px;
}

/* ===== GRID & CARDS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 28px;
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--black);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 20px;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

/* ===== PREMIUM CHAIRMAN SECTION ===== */
.chairman-premium-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.chairman-premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.chairman-premium-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.chairman-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.chairman-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.2;
}

.chairman-text-content {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.chairman-text-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--white);
}

.chairman-quote {
    position: relative;
    margin: 32px 0;
    padding-left: 60px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 80px;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.chairman-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.chairman-signature {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.signature-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    margin-bottom: 16px;
}

.signature-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 4px 0;
}

.signature-title {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 4px 0;
}

.signature-experience {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== SECONDARY LEADERSHIP SECTION ===== */
.leadership-secondary-section {
    padding: 100px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 24px 24px;
}

.leader-position {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leader-content {
    padding: 28px;
}

.leader-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.leader-role {
    color: var(--text-light);
    font-size: 14px;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--dark-gold);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05), transparent);
}

.timeline-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--primary-gold), 
        rgba(212, 175, 55, 0.3),
        var(--primary-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--primary-gold);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.timeline-item:nth-child(even):hover .timeline-content {
    transform: translateX(-8px);
}

.timeline-content h3 {
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.timeline-current .timeline-year {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--black);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== VISION MISSION ENHANCEMENTS ===== */
.vm-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.about-section {
    padding: 100px 0;
}

.light-bg {
    background: var(--light-gray);
}

.two-col {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.two-col.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 460px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    margin-bottom: 24px;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    border-radius: 2px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-medium);
}

.signature {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 17px;
    font-style: italic;
    margin-top: 28px;
}

/* ===== VISION & MISSION SECTION ===== */
.vision-section {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08), transparent);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
}

.vm-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.vm-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vm-block h3 {
    color: var(--primary-gold);
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
}

.vm-block p {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.vm-block ul {
    list-style: none;
    padding: 0;
}

.vm-block ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.vm-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 18px;
}

/* ===== CALL TO ACTION ===== */
.about-cta {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.about-cta .btn-gold {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    border-radius: 50%;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

/* Premium Contact Form */
.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 8px;
}

.btn-large svg {
    transition: var(--transition);
}

.btn-large:hover svg {
    transform: translateX(4px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card .card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 4px 0;
}

.contact-card a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--dark-gold);
    text-decoration: underline;
}

/* Business Hours Card */
.business-hours-card {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 32px;
    border-radius: 12px;
    color: var(--white);
}

.business-hours-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hours-item .time {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
}

.hours-item .time.closed {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
    padding: 0;
    margin: 80px 0;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header p {
    color: var(--text-medium);
    font-size: 16px;
    margin-top: 12px;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(30%);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-card {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.location-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.location-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.location-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.location-details p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: #aaa;
    padding: 60px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-description {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-title {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 20px !important;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary-gold);
}

.footer-hours {
    margin-bottom: 16px !important;
    color: #aaa;
    font-size: 14px;
}

.footer-hours strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.footer-cta {
    margin-top: 20px;
}

.btn-gold-small {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--black);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom-links span {
    color: #555;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 45px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .two-col {
        gap: 50px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .vm-grid {
        gap: 40px;
    }

    /* Chairman Premium Section */
    .chairman-premium-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .chairman-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .chairman-text-content h2 {
        font-size: 36px;
    }

    .quote-text {
        font-size: 18px;
    }

    /* Timeline */
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        flex: 0 0 auto;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item:hover .timeline-content,
    .timeline-item:nth-child(even):hover .timeline-content {
        transform: translateX(8px);
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }

    /* Leadership */
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    /* Contact Page */
    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide company name and tagline on mobile */
    .logo-text div {
        display: none;
    }
    
    .logo-text {
        gap: 0;
    }

    .main-nav {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 8px;
        width: 100%;
        justify-content: space-between;
        cursor: pointer;
    }

    .nav-link::before {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }
    
    /* Make dropdown trigger easier to click on mobile */
    .dropdown-trigger {
        cursor: pointer;
        user-select: none;
    }
    
    .dropdown-arrow {
        pointer-events: auto;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin: 8px 0 0 0;
        padding: 0;
        transition: max-height 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        left: 0;
        right: 0;
        width: 100%;
        min-width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        overflow-y: auto;
    }

    .dropdown-item {
        padding: 14px 20px;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .dropdown-item:hover {
        background: rgba(212, 175, 55, 0.15);
        padding-left: 24px;
    }
    
    .dropdown-icon {
        background: rgba(212, 175, 55, 0.2);
        flex-shrink: 0;
    }

    .dropdown-title {
        color: var(--white);
        font-size: 15px;
    }

    .dropdown-desc {
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
    }
    
    .dropdown-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .two-col {
        flex-direction: column !important;
        gap: 40px;
    }

    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section {
        padding: 60px 0;
    }

    .vm-block {
        padding: 30px;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 40px;
    }

    /* Chairman Section */
    .chairman-premium-section {
        padding: 80px 0;
    }

    .chairman-text-content h2 {
        font-size: 30px;
    }

    .quote-icon {
        font-size: 60px;
    }

    .quote-text {
        font-size: 16px;
    }

    .chairman-quote {
        padding-left: 40px;
    }

    /* Timeline */
    .timeline-section {
        padding: 80px 0;
    }

    .timeline-year {
        font-size: 24px;
        padding: 12px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    /* Leadership */
    .leader-image {
        height: 350px;
    }

    .leader-content h3 {
        font-size: 22px;
    }

    /* Contact Page */
    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .map-section {
        margin: 60px 0;
    }

    .map-container {
        height: 350px;
    }

    .map-overlay-card {
        margin-top: -60px;
    }

    .location-card {
        padding: 25px;
    }

    .location-icon {
        font-size: 48px;
    }

    .location-details h3 {
        font-size: 20px;
    }

    /* Mobile Nav Adjustments */
    .main-nav {
        top: 82px;
        max-height: calc(100vh - 82px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn-gold {
        padding: 12px 24px;
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .card-body {
        padding: 20px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .vm-block h3 {
        font-size: 24px;
    }

    /* Hero Badge */
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    /* Stats */
    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Chairman */
    .chairman-text-content h2 {
        font-size: 26px;
    }

    .quote-text {
        font-size: 15px;
    }

    .signature-name {
        font-size: 18px;
    }

    .chairman-badge {
        padding: 12px 16px;
    }

    .badge-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }

    .badge-title {
        font-size: 14px;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-year {
        font-size: 20px;
        padding: 8px;
        flex: 0 0 80px;
        left: -10px;
    }

    .timeline-content {
        padding: 16px;
    }

    /* Leadership Cards */
    .leader-image {
        height: 300px;
    }

    .leader-content {
        padding: 20px;
    }

    .leader-content h3 {
        font-size: 20px;
    }

    /* Contact Page */
    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-header p {
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card .card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .business-hours-card {
        padding: 24px;
    }

    .business-hours-card h3 {
        font-size: 18px;
    }

    .map-container {
        height: 300px;
    }

    .map-overlay-card {
        margin-top: -50px;
    }

    .location-card {
        padding: 20px;
    }

    .location-icon {
        font-size: 40px;
    }

    .location-details h3 {
        font-size: 18px;
    }

    .location-details p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--primary-gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--black);
}

/* ===== PRODUCTS PAGE STYLES ===== */

/* Products Hero */
.products-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(26, 26, 26, 0.75)),
                url('../images/products-hero.webp');
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent);
    border-radius: 50%;
}

.products-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.products-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.products-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Product Search Bar */
.product-search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.product-search-bar .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.product-search-bar input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-search-bar input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.2);
}

.product-search-bar input::placeholder {
    color: var(--text-light);
}

/* Category Filter Section */
.category-filter-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 92px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-filters {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.category-btn.active {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.category-icon {
    font-size: 20px;
}

/* Products Section */
.products-section {
    padding: 60px 0 100px;
    background: var(--light-gray);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-count {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

.products-count span {
    color: var(--primary-gold);
    font-weight: 700;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-sort label {
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 500;
}

.products-sort select {
    padding: 10px 36px 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.products-sort select:hover {
    border-color: var(--primary-gold);
}

.products-sort select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product Image */
.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .quick-view-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

/* Product Info */
.product-info {
    padding: 24px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.learn-more svg {
    transition: var(--transition);
}

.product-card:hover .learn-more {
    color: var(--dark-gold);
}

.product-card:hover .learn-more svg {
    transform: translateX(4px);
}

/* No Results */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.no-results p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
    max-width: 400px;
}

/* Categories Showcase */
.categories-showcase {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
}

.category-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-showcase-card:hover .category-showcase-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    padding: 32px;
    transition: var(--transition);
}

.category-showcase-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
}

.category-overlay-content {
    color: var(--white);
}

.category-overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.category-overlay-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.category-link:hover {
    color: var(--white);
}

.category-link svg {
    transition: var(--transition);
}

.category-link:hover svg {
    transform: translateX(4px);
}

/* Responsive - Products Page */
@media (max-width: 968px) {
    .products-hero h1 {
        font-size: 40px;
    }

    .products-hero p {
        font-size: 16px;
    }

    .category-filter-section {
        top: 82px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .category-showcase-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 80px 0 60px;
    }

    .products-hero h1 {
        font-size: 34px;
    }

    .product-search-bar input {
        font-size: 15px;
        padding: 16px 20px 16px 50px;
    }

    .category-filters {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .products-section {
        padding: 40px 0 80px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 220px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-showcase-card {
        height: 280px;
    }

    .category-overlay {
        padding: 24px;
    }

    .category-overlay-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 28px;
    }

    .products-hero p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .product-search-bar input {
        font-size: 14px;
        padding: 14px 16px 14px 45px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .category-icon {
        font-size: 18px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 16px;
    }

    .category-showcase-card {
        height: 250px;
    }

    .no-results {
        padding: 60px 20px;
    }

    .no-results-icon {
        font-size: 48px;
    }

    .no-results h3 {
        font-size: 20px;
    }
}

/* ===== CATEGORY PAGE STYLES ===== */

/* Category Hero Banner */
.category-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.category-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-gold);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
    color: var(--white);
    font-weight: 600;
}

/* Category Hero Content */
.category-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.category-icon-badge {
    font-size: 72px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.category-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Stats */
.category-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-icon {
    font-size: 24px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
}

/* Subcategories Section */
.subcategories-section {
    padding: 80px 0;
    background: var(--white);
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.subcategory-card {
    background: var(--light-gray);
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.subcategory-card:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.subcategory-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.subcategory-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.subcategory-card p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
}

.subcategory-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--primary-gold);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
}

.subcategory-card:hover .subcategory-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Category Filter Bar */
.category-filter-bar {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 92px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Category Search */
.category-search {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.category-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.category-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.category-search input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Filter Sort */
.filter-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sort label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
    white-space: nowrap;
}

.filter-sort select {
    padding: 10px 36px 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-sort select:hover,
.filter-sort select:focus {
    border-color: var(--primary-gold);
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 4px;
    background: var(--light-gray);
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    color: var(--text-medium);
}

.view-btn:hover {
    color: var(--text-dark);
}

.view-btn.active {
    background: var(--white);
    color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.view-btn svg {
    display: block;
}

/* Active Filters */
.active-filters {
    padding-top: 16px;
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 500;
}

.active-filters span {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Category Products Section */
.category-products-section {
    padding: 60px 0 100px;
    background: var(--light-gray);
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* List View */
.category-products-grid.list-view {
    grid-template-columns: 1fr;
}

.category-products-grid.list-view .category-product-card {
    display: flex;
    flex-direction: row;
}

.category-products-grid.list-view .product-card-image {
    width: 250px;
    height: 200px;
    flex-shrink: 0;
}

.category-products-grid.list-view .product-card-info {
    flex: 1;
}

/* Category Product Card */
.category-product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product Card Image */
.product-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-product-card:hover .product-card-image img {
    transform: scale(1.1);
}

/* Quick View Badge */
.quick-view-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-product-card:hover .quick-view-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Stock Badge */
.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-badge.in-stock {
    background: rgba(34, 197, 94, 0.9);
    color: var(--white);
}

.stock-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
}

/* Product Card Info */
.product-card-info {
    padding: 28px;
}

.product-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Features List */
.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.product-features-list li {
    font-size: 13px;
    color: var(--text-medium);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.5;
}

.product-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
}

/* Product Card Footer */
.product-card-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.view-details-btn svg {
    transition: var(--transition);
}

.category-product-card:hover .view-details-btn {
    color: var(--dark-gold);
}

.category-product-card:hover .view-details-btn svg {
    transform: translateX(4px);
}

/* Empty State */
.empty-category-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-category-state h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.empty-category-state p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Benefits Section */
.category-benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Related Categories */
.related-categories-section {
    padding: 80px 0;
    background: var(--white);
}

.related-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.related-category-card {
    background: var(--light-gray);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.related-category-card:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-cat-icon {
    font-size: 40px;
}

.related-category-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.explore-link {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.related-category-card:hover .explore-link {
    color: var(--dark-gold);
    transform: translateX(4px);
}

/* Responsive - Category Page */
@media (max-width: 968px) {
    .category-hero {
        padding: 120px 0 60px;
    }

    .category-hero h1 {
        font-size: 42px;
    }

    .category-icon-badge {
        font-size: 56px;
    }

    .category-stats {
        gap: 16px;
    }

    .stat-badge {
        padding: 10px 18px;
    }

    .subcategories-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .category-filter-bar {
        top: 82px;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .category-search {
        min-width: 100%;
    }

    .filter-sort {
        width: 100%;
        justify-content: space-between;
    }

    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .category-hero {
        padding: 100px 0 50px;
    }

    .category-hero h1 {
        font-size: 34px;
    }

    .category-description {
        font-size: 16px;
    }

    .category-icon-badge {
        font-size: 48px;
    }

    .breadcrumbs {
        font-size: 13px;
    }

    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-products-grid.list-view .product-card-image {
        width: 100%;
        height: 220px;
    }

    .category-products-grid.list-view .category-product-card {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .category-hero h1 {
        font-size: 28px;
    }

    .category-description {
        font-size: 15px;
    }

    .category-icon-badge {
        font-size: 40px;
    }

    .stat-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .stat-number {
        font-size: 20px;
    }

    .subcategory-card {
        padding: 24px 20px;
    }

    .product-card-info {
        padding: 20px;
    }

    .product-card-name {
        font-size: 18px;
    }

    .empty-icon {
        font-size: 60px;
    }

    .empty-category-state h3 {
        font-size: 24px;
    }
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Product Breadcrumb Section */
.product-breadcrumb-section {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Product Main Section */
.product-main-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
    align-self: start;
}

.main-image-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.main-product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

/* Image Zoom Hint */
.image-zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: var(--transition);
}

.main-image-container:hover .image-zoom-hint {
    opacity: 1;
}

/* Product Stock Badge */
.product-stock-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-stock-badge.in-stock {
    background: rgba(34, 197, 94, 0.95);
    color: var(--white);
}

.product-stock-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.95);
    color: var(--white);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
}

.thumbnail-item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    background: var(--white);
}

.thumbnail-item:hover {
    border-color: var(--primary-gold);
}

.thumbnail-item.active {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Info Panel */
.product-info-panel {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* Product Header */
.product-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-category-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.product-sku {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.product-sku strong {
    color: var(--text-dark);
}

/* Product Description */
.product-description {
    margin-bottom: 32px;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
}

/* Product Features */
.product-features {
    margin-bottom: 32px;
}

.product-features h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Quick Info Cards */
.quick-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.info-card {
    background: var(--light-gray);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.product-actions .btn-gold,
.product-actions .btn-outline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Product Share */
.product-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.share-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

/* Tabs Section */
.product-tabs-section {
    padding: 80px 0;
    background: var(--white);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.specifications-grid {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
    line-height: 1.8;
}

.details-content,
.applications-content {
    padding: 24px 0;
}

.details-content h3,
.applications-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.detail-item {
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
}

.detail-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.applications-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.applications-list li {
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-medium);
}

/* Inquiry Form Section */
.inquiry-form-section {
    padding: 100px 0;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.inquiry-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.inquiry-subtitle {
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 16px;
}

.product-inquiry-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* Inquiry Contact Info */
.inquiry-contact-info {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 40px;
    border-radius: 16px;
    color: var(--white);
}

.inquiry-contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.inquiry-contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-details a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-gold);
}

/* Response Time Badge */
.response-time-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.response-time-badge svg {
    flex-shrink: 0;
}

.response-time-badge strong {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 4px;
    font-size: 15px;
}

.response-time-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Related Products Section */
.related-products-section {
    padding: 100px 0;
    background: var(--white);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-product-card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--white);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.08);
}

.related-product-info {
    padding: 20px;
}

.related-product-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-product-link {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.related-product-card:hover .view-product-link {
    color: var(--dark-gold);
}

/* Responsive - Product Page */
@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 30px;
    }

    .quick-info-cards {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .detail-list {
        grid-template-columns: 1fr;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-main-section {
        padding: 40px 0;
    }

    .product-info-panel {
        padding: 28px;
    }

    .product-title {
        font-size: 26px;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .inquiry-form-section {
        padding: 60px 0;
    }

    .product-inquiry-form {
        padding: 28px;
    }

    .inquiry-contact-info {
        padding: 28px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 22px;
    }

    .product-info-panel {
        padding: 24px;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
    }

    .product-actions {
        gap: 8px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }

    .product-inquiry-form {
        padding: 24px;
    }

    .inquiry-form-wrapper h2 {
        font-size: 26px;
    }
}

/* ===== MODERN CATEGORY HERO ===== */
.category-hero-modern {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Info */
.category-hero-left {
    padding-right: 20px;
}

.breadcrumbs-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumbs-modern a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-modern a:hover {
    color: var(--primary-gold);
}

.breadcrumbs-modern .separator {
    color: var(--text-light);
}

.breadcrumbs-modern .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* Category Badge */
.category-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.category-icon-modern {
    font-size: 24px;
}

.category-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Title */
.category-title-modern {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.category-desc-modern {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 0 32px 0;
    max-width: 540px;
}

/* Stats Row */
.category-stats-modern {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item-modern {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-modern {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-icon-modern {
    font-size: 24px;
    line-height: 1;
}

.stat-label-modern {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Actions */
.category-hero-actions {
    display: flex;
    gap: 12px;
}

.category-hero-actions .btn-gold,
.category-hero-actions .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Right Side - Image */
.category-hero-right {
    position: relative;
}

.category-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Floating Quality Badge */
.floating-quality-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.floating-quality-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive - Modern Hero */
@media (max-width: 968px) {
    .category-hero-modern {
        padding: 60px 0;
    }

    .category-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .category-hero-left {
        padding-right: 0;
    }

    .category-title-modern {
        font-size: 42px;
    }

    .category-stats-modern {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .category-hero-actions {
        flex-direction: column;
    }

    .category-hero-actions .btn-gold,
    .category-hero-actions .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .category-hero-modern {
        padding: 40px 0;
    }

    .category-title-modern {
        font-size: 36px;
    }

    .category-desc-modern {
        font-size: 16px;
    }

    .stat-number-modern {
        font-size: 28px;
    }

    .category-image-wrapper {
        border-radius: 16px;
    }

    .floating-quality-badge {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .category-title-modern {
        font-size: 30px;
    }

    .category-desc-modern {
        font-size: 15px;
    }

    .category-badge-modern {
        padding: 8px 16px;
    }

    .category-icon-modern {
        font-size: 20px;
    }

    .category-stats-modern {
        padding: 20px 0;
    }

    .stat-number-modern {
        font-size: 24px;
    }

    .floating-quality-badge {
        padding: 10px 14px;
        font-size: 12px;
    }
}
