@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Fluid typography: scales from 13px on small mobiles to 17px on large desktops */
    font-size: clamp(13px, 0.5vw + 11px, 17px);
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #050A14;
    color: #E0E0E0;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}

::selection {
    background: #C0A062;
    color: #000;
}

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #C0A062;
    --gold-dim: rgba(192, 160, 98, 0.15);
    --gold-border: rgba(192, 160, 98, 0.2);
    --dark: #050A14;
    --darker: #020408;
    --surface: rgba(255, 255, 255, 0.03);
    --text-muted: #8A93A8;
    --text-light: #CDD0D9;
    --serif: 'DM Serif Display', serif;
    --sans: 'DM Sans', sans-serif;
    --display: 'Outfit', sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0% {
        filter: brightness(0.65);
    }

    50% {
        filter: brightness(1.3);
    }

    100% {
        filter: brightness(0.65);
    }
}

@keyframes drawLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== SCROLL-REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.from-left {
    transform: translateX(-40px);
}

.reveal.from-right {
    transform: translateX(40px);
}

.reveal.scale-in {
    transform: scale(0.92);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.delay-4 {
    transition-delay: 0.4s;
}

.reveal.delay-5 {
    transition-delay: 0.5s;
}

.reveal.delay-6 {
    transition-delay: 0.6s;
}

/* Animated underline */
.animated-line {
    display: block;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    width: 0;
    margin-top: 8px;
    transition: width 0.9s ease 0.3s;
}

.is-visible+.animated-line,
.reveal.is-visible .animated-line,
.sub-title.is-visible~.animated-line {
    width: 100%;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    backdrop-filter: blur(14px);
    background-color: rgba(5, 10, 20, 0.85);
    border-bottom: 1px solid var(--gold-border);
}

header.solid {
    background-color: rgba(5, 10, 20, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gold-border);
}

.logo {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-name {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

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

.nav-btn {
    padding: 9px 22px;
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    background-color: transparent;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
}

.nav-btn:hover {
    background-color: var(--gold);
    color: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 1.2s ease-in-out;
}

#hero-bg {
    filter: brightness(2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5, 10, 20, 0.55) 0%, rgba(5, 10, 20, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 680px;
    animation: fadeInUp 1s ease-out forwards;
}

.tagline {
    color: var(--gold);
    font-family: var(--display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    font-weight: 500;
    display: block;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    animation: float 7s ease-in-out infinite;
}

.company-note {
    display: block;
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 2.2rem;
    max-width: 580px;
    font-weight: 300;
}

/* ===== HERO BUTTON GROUP ===== */
.hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    padding: 14px 32px;
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--gold);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(192, 160, 98, 0.35);
}

.cta-btn.outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cta-btn.outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ===== FLOATING CIRCLES ===== */
.floating-circle {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(192, 160, 98, 0.15);
    animation: float 7s ease-in-out infinite;
    z-index: 1;
    display: none;
}

@media (min-width: 1024px) {
    .floating-circle {
        display: block;
    }
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68%;
    height: 68%;
    border-radius: 50%;
    border: 1px solid rgba(192, 160, 98, 0.3);
    animation: float 7s ease-in-out infinite reverse;
}

/* ===== HOMEPAGE CONTENT SECTIONS ===== */
.home-section {
    width: 100%;
    padding: 100px 6%;
    position: relative;
}

.home-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Section labels */
.section-label {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

/* Section headings */
.section-heading {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-body {
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    max-width: 720px;
    font-weight: 300;
}

/* ===== DIVIDER ===== */
.gold-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.2rem 0 2rem;
    border-radius: 2px;
}

.gold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== COMPANY INTRO SECTION ===== */
.intro-section {
    background: linear-gradient(180deg, #050A14 0%, #07101F 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.intro-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2rem;
}

.intro-stat {
    background: var(--surface);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 24px 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.intro-stat:hover {
    border-color: rgba(192, 160, 98, 0.5);
    transform: translateY(-4px);
}

.intro-stat-value {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.intro-stat-label {
    font-family: var(--sans);
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TECHNOLOGY / PROCESS SECTION ===== */
.tech-section {
    background: #07101F;
    border-bottom: 1px solid var(--gold-border);
}

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

.tech-section-center .section-body {
    margin: 0 auto;
}

.tech-section-center .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

.process-stages {
    display: flex;
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 900px) {
    .process-stages {
        justify-content: center;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.process-stage {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.process-stage::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -30px;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    z-index: 1;
}

.process-stage:last-child::after {
    display: none;
}

.stage-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.process-stage:hover .stage-number {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.stage-label {
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PROJECT CARDS ON HOMEPAGE ===== */
.products-section {
    background: #050A14;
    border-bottom: 1px solid var(--gold-border);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .product-cards {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    background: var(--surface);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(192, 160, 98, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover .product-card-bg {
    opacity: 0.22;
}

.product-card-body {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}

.product-card-tag {
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.product-card-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.25;
}

.product-card-desc {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    flex: 1;
}

.product-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.feature-tag {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== APPLICATIONS SECTION ===== */
.applications-section {
    background: #07101F;
    border-bottom: 1px solid var(--gold-border);
}

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

.app-card {
    background: var(--surface);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 24px 14px;
    text-align: center;
    transition: all 0.35s ease;
}

.app-card:hover {
    background: var(--gold-dim);
    border-color: rgba(192, 160, 98, 0.45);
    transform: translateY(-5px);
}

.app-card-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
}

.app-card-name {
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.4;
}

/* ===== FUTURE TECH SECTION ===== */
.future-section {
    background: #050A14;
    border-bottom: 1px solid var(--gold-border);
}

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

@media (max-width: 768px) {
    .future-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.future-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.future-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 300;
}

.future-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
    box-shadow: 0 0 8px rgba(192, 160, 98, 0.5);
}

.future-visual {
    background: var(--surface);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.future-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(192, 160, 98, 0.06) 0%, transparent 70%);
}

.future-visual-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.future-visual-label {
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

/* ===== PROJECT HERO SECTION CARDS (homepage scrolling) ===== */
#project-1 .hero-bg,
#project-2 .hero-bg {
    animation: glowPulse 5s ease-in-out infinite;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--darker);
    padding: 70px 6% 30px;
    border-top: 1px solid var(--gold);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 200px;
}

.footer-title {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.footer-label {
    font-family: var(--display);
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-link {
    font-family: var(--sans);
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    line-height: 1.9;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-text {
    font-family: var(--sans);
    color: #666;
    max-width: 280px;
    line-height: 1.7;
    font-size: 0.9rem;
    font-weight: 300;
}

.copyright {
    width: 100%;
    text-align: center;
    color: #3A3F4A;
    margin-top: 30px;
    font-size: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    font-family: var(--display);
    letter-spacing: 0.5px;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(192, 160, 98, 0.25);
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.social-icon:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(192, 160, 98, 0.25);
}

/* ===== INNER PAGE CONTAINER ===== */
.page-container {
    width: 100%;
    min-height: 100vh;
    background-color: var(--dark);
    color: #E0E0E0;
    padding: 120px 6% 70px;
    font-family: var(--sans);
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out forwards;
}

.page-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--gold);
    border-bottom: 1px solid rgba(192, 160, 98, 0.2);
    padding-bottom: 20px;
    letter-spacing: -0.3px;
}

.page-title.centered {
    text-align: center;
    border-bottom: none;
}

.section {
    margin-bottom: 3.5rem;
}

.sub-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.body-text {
    font-family: var(--sans);
    line-height: 1.85;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ===== CARD GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.card {
    background-color: var(--surface);
    padding: 28px;
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 160, 98, 0.4);
    background: rgba(192, 160, 98, 0.04);
}

.card-title {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.2px;
}

/* ===== BULLET LIST ===== */
.bullet-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.bullet-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.97rem;
    font-weight: 300;
    opacity: 0;
}

.bullet-item:nth-child(1) {
    animation: fadeInRight 0.5s ease-out forwards 0.5s;
}

.bullet-item:nth-child(2) {
    animation: fadeInRight 0.5s ease-out forwards 0.6s;
}

.bullet-item:nth-child(3) {
    animation: fadeInRight 0.5s ease-out forwards 0.7s;
}

.bullet-item:nth-child(4) {
    animation: fadeInRight 0.5s ease-out forwards 0.8s;
}

.bullet-item:nth-child(5) {
    animation: fadeInRight 0.5s ease-out forwards 0.9s;
}

.bullet-item:nth-child(6) {
    animation: fadeInRight 0.5s ease-out forwards 1.0s;
}

.bullet-point {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(192, 160, 98, 0.5);
}

/* ===== CONTACT FORM ===== */
.form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out forwards;
}

.form-intro-text {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background-color: rgba(255, 255, 255, 0.025);
    padding: 44px;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

@media (max-width: 600px) {
    .input-row {
        grid-template-columns: 1fr;
    }
}

.form-label {
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    padding: 13px 16px;
    background-color: rgba(5, 10, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #fff;
    font-size: 0.97rem;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #3A3F4A;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
}

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

.submit-btn {
    padding: 16px;
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--gold);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 2px;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 160, 98, 0.25);
}

/* ===== UTILITY CLASSES ===== */
.u-flex-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.u-nav-btn-active {
    background: var(--gold);
    color: var(--dark);
}

.u-bg-1 {
    background-image: url('assets/product_1.png');
    opacity: 1;
}

.u-bg-2 {
    background-image: url('assets/product_2.png');
    opacity: 1;
}

.u-hero-min {
    height: 60vh;
    min-height: 400px;
}

.u-hero-overlay {
    background: linear-gradient(rgba(5, 10, 20, 0.6), rgba(5, 10, 20, 0.85));
}

.u-hero-center {
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 60px;
}

.u-hero-anim {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.u-title-anim {
    font-size: clamp(2rem, 4vw, 3.5rem);
    animation: float 6s ease-in-out infinite;
}

.u-gold-line {
    width: 60px;
    height: 3px;
    background-color: #C0A062;
    margin: 0 auto;
    border-radius: 2px;
}

.u-mb-0 {
    margin-bottom: 0;
}

.u-border-box {
    border: 1px solid rgba(192, 160, 98, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.u-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.u-th-bg {
    background: rgba(192, 160, 98, 0.08);
    border-bottom: 1px solid rgba(192, 160, 98, 0.2);
}

.u-th {
    padding: 14px 20px;
    text-align: left;
    color: #C0A062;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.u-tr-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.u-tr-2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.u-td-1 {
    padding: 13px 20px;
    color: #aaa;
}

.u-td-2 {
    padding: 13px 20px;
    color: #e0e0e0;
}

.u-bullet-list {
    opacity: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.u-opacity-1 {
    opacity: 1;
}

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

.u-mt-3 {
    margin-top: 3rem;
}

.u-mt-2 {
    margin-top: 2rem;
}

.u-contact-cta {
    background: #07101F;
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
}

.u-block {
    display: block;
    text-align: center;
}

.u-max-w-600 {
    max-width: 600px;
    margin: 0 auto 1.2rem;
    text-align: center;
}

.u-margin-x-auto {
    margin: 0 auto;
}

.u-margin-b-2 {
    margin: 0 auto 2.5rem;
    text-align: center;
    max-width: 580px;
}

.u-success-msg {
    display: none;
    margin-top: 30px;
    text-align: center;
    padding: 30px;
    background: rgba(192, 160, 98, 0.1);
    border: 1px solid rgba(192, 160, 98, 0.3);
    border-radius: 8px;
}

.u-success-title {
    color: #C0A062;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.u-success-text {
    color: #ccc;
}

.u-success-btn {
    margin-top: 20px;
    display: inline-block;
}

.u-font-sm {
    font-size: 0.95rem;
}

.u-font-sm-margin {
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.u-btn-sm {
    padding: 11px 26px;
    font-size: 0.8rem;
}

.u-margin-t-1-5 {
    margin-top: 1.5rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 900px) {
    header {
        padding: 16px 4%;
    }
    .logo-name {
        font-size: 0.95rem;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 5%;
        background-color: rgba(5, 10, 20, 0.95);
        border-bottom: 1px solid var(--gold-border);
    }
    .logo-name {
        display: none; /* Hide text to save space for nav */
    }
    .logo-img {
        height: 34px;
    }
    .u-flex-nav {
        width: auto;
        justify-content: flex-end;
        gap: 8px;
    }
    .nav-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    .page-container {
        padding-top: 150px;
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-btn-group {
        justify-content: center;
        gap: 12px;
    }
    .form-box {
        padding: 24px;
        gap: 16px;
    }
    .home-section {
        padding: 60px 5%;
    }
    .section-heading {
        font-size: 1.8rem;
    }
    footer {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding: 50px 5% 20px;
    }
    .footer-text {
        margin: 0 auto;
    }
    .social-icons {
        justify-content: center;
    }
    .intro-grid, .future-grid {
        gap: 30px;
    }
}

/* ===== NEW AUTOMATION STYLES ===== */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.submit-btn:disabled {
    background-color: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn:disabled::after {
    display: none;
}