[data-start="hidden"] {
    visibility: hidden;
}

.page-wrapper {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   GLOBAL CURSOR OVERRIDE - MUST BE HIGH PRIORITY
   Overrides external CSS templates (Looper, Webflow, etc.)
   ========================================= */
/* Force default cursor on html/body - highest specificity */
html {
    cursor: default !important;
}

body {
    cursor: default !important;
}

/* Hide default cursor when custom cursor is active */
body:has(.cursor-fixed) {
    cursor: none !important;
}

html:has(.cursor-fixed) {
    cursor: none !important;
}

/* Explicit cursor: none for custom cursor sections */
.cursor-fixed,
.cursor-default,
.cursor-hover,
.cursor-grab {
    cursor: none !important;
}

/* Override any external CSS that sets cursor: pointer globally */
*:not(a):not(button):not([role="button"]):not(.btn-gold):not(.btn-outline):not(input):not(textarea):not(select):not([tabindex]):not([onclick]):not(.bento-card):not(.works-field) {
    cursor: default !important;
}

/* Custom cursor only for specific draggable elements */
.no-cursor,
.wrapper,
.wrapper w-dyn-items {
    cursor: none !important;
}

.highlight-text {
    display: inline-block;
    line-height: 0.95em;
    height: 0.95em;
    background-image: linear-gradient(120deg, #123654 0%, #123654 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.3s;
}

.brand [data-primary-button] {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.brand [data-primary-button] span {
    display: inline-block;
    position: relative;
    text-shadow: 0px 1.3em currentColor;
    transform: translateY(0em) rotate(0.001deg);
    transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.brand:hover [data-primary-button] span {
    transform: translateY(-1.3em) rotate(0.001deg);
}


.page-wrapper {
    opacity: 0;
    animation: fadeIn 0.25s ease-out forwards;
}

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



/* =========================================
1. THE ULTIMATE THEME CONFIG
========================================= */
:root {
    /* Brand Colors */
    --gold-primary: #E89024;
    --gold-dark: #B8751E;
    --gold-light: #F5CB82;
    --gold-gradient: linear-gradient(135deg, #E89024 0%, #F5CB82 50%, #B8751E 100%);

    /* Dark Mode Palette */
    --bg-deep: #050505;
    --bg-surface: #0F0F0F;
    --bg-card: #141414;
    --border-color: rgba(255, 255, 255, 0.08);

    /* Text */
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;

    /* Effects */
    --glass-bg: rgba(15, 15, 15, 0.85);
    --glass-blur: blur(16px);
    --glow-shadow: 0 0 50px rgba(232, 144, 36, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =========================================
2. GLOBAL RESET & TYPOGRAPHY
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Override any global cursor: pointer from external CSS - ensure default cursor for normal content */
div:not(.bento-card):not(.wrapper):not(.no-cursor):not(.works-field),
section,
article,
main,
header,
footer,
span:not(.text-gradient),
label {
    cursor: default !important;
}

html {
    scroll-behavior: smooth;
    cursor: default !important;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    cursor: default !important;
    /* Subtle Industrial Texture Pattern */
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    cursor: default !important;
}

p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    cursor: default !important;
}

a {
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer !important;
}

button {
    cursor: pointer !important;
}

ul {
    list-style: none;
    cursor: default !important;
}

img {
    display: block;
    max-width: 100%;
    cursor: default !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Utilities */
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 120px 0;
}

/* =========================================
3. FLOATING GLASS NAVIGATION
========================================= */
.nav-wrapper {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    padding: 0 10%;
}

.navbar {
    pointer-events: auto;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    gap: 30px;
}

/* Navbar scroll effect */
.navbar.scrolled {
    top: 15px;
    padding: 10px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--gold-primary);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links .mobile-cta {
    display: none;
}

.nav-links a {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Button */
.navbar .btn-gold {
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
    transition: var(--transition);
}

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

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

.navbar .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 144, 36, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer !important;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* =========================================
4. CINEMATIC HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Ambient Glow Background */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 144, 36, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
    margin-bottom: 30px;
    line-height: 1.05;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer !important;
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Hero Image - 3D Effect */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-img {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.hero-visual:hover .hero-img {
    transform: rotateY(0) rotateX(0);
}

/* Floating Badge */
.hero-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--bg-surface);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.hero-badge i {
    font-size: 2.2rem;
    color: var(--gold-primary);
}

.hero-badge div h4 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
}

.hero-badge div span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* =========================================
5. SCROLLING MARQUEE (TRUST)
========================================= */
.marquee-section {
    background: #000;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 25px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.marquee-item {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    margin: 0 40px;
    display: flex;
    align-items: center;
}

.marquee-item i {
    color: var(--gold-primary);
    font-size: 0.8rem;
    margin-right: 15px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
6. BENTO GRID CATEGORIES
========================================= */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header span {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    group: bento;
    cursor: pointer !important;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Span logic for Bento effect */
.bento-card.large {
    grid-column: span 2;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    opacity: 0.6;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(10px);
    transition: 0.4s ease;
}

.bento-card:hover .bento-img {
    transform: scale(1.1);
    opacity: 0.4;
}

.bento-card:hover {
    border-color: var(--gold-primary);
}

.bento-card:hover .bento-content {
    transform: translateY(0);
}

.bento-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.bento-content p {
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
7. FEATURED PRODUCTS (Interactive)
========================================= */
.product-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prod-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(232, 144, 36, 0.3);
}

.prod-img-box {
    height: 260px;
    background: #0a0a0a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.prod-img-box img {
    width: 90%;
    transition: 0.5s;
}

.prod-card:hover .prod-img-box img {
    transform: scale(1.1) rotate(5deg);
}

.prod-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.prod-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.prod-spec {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.btn-link {
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link i {
    transition: 0.3s;
}

.prod-card:hover .btn-link i {
    transform: translateX(5px);
}

/* =========================================
8. WHY CHOOSE US & STATS
========================================= */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 30px;
}

.feature-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--gold-primary);
    background: rgba(232, 144, 36, 0.05);
}

.f-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 144, 36, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 60px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
9. MANUFACTURING PROCESS
========================================= */
.process-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-container::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-deep);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(232, 144, 36, 0.2);
    transition: var(--transition);
}

.process-step:hover .step-circle {
    background: var(--gold-primary);
    color: #000;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

/* =========================================
10. CONTACT (Dark Mode Form)
========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-surface);
}

.contact-info {
    background: var(--gold-gradient);
    padding: 60px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000;
}

.contact-info p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-list i {
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-form {
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: #080808;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
    cursor: text !important;
}

input,
textarea,
select {
    cursor: text !important;
}

.form-input:focus {
    border-color: var(--gold-primary);
    outline: none;
    background: #111;
}

/* =========================================
11. FOOTER
========================================= */
footer {
    background: #020202;
    border-top: 1px solid #151515;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #666;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    color: #444;
    border-top: 1px solid #111;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* =========================================
RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card.large {
        grid-column: auto;
    }

    .bento-card {
        height: 250px;
    }

    .why-wrapper,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .process-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .process-container::after {
        display: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 0 3%;
    }

    .navbar {
        padding: 12px 25px;
        gap: 20px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .navbar .btn-gold {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        top: 15px;
        padding: 0 4%;
    }

    .navbar {
        padding: 10px 20px;
        border-radius: 20px;
        gap: 15px;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 15px 0;
    }

    .navbar > .btn-gold {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Show CTA button in mobile menu */
    .nav-links .mobile-cta {
        display: block;
        margin-top: 20px;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        top: 10px;
        padding: 0 3%;
    }

    .navbar {
        padding: 8px 15px;
    }

    .logo img {
        height: 35px;
    }

    .nav-links a {
        font-size: 1rem;
    }
}
