/* Fix for sticky header blocking anchor links */
html {
    scroll-padding-top: 160px;
}

/* Global */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #333333;
}

/* Brand Colors */
:root {
    --gold: #c9a44b;
    --text-main: #222222;
    --text-muted: #666666;
    --border-soft: #e6e6e6;
    --bg-soft: #f7f7f7;
}

/* Top Bar */
.top-bar {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.top-bar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.top-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 200px;
    width: auto;
    filter: brightness(1.1);
}

/* Navigation */
.nav a {
    margin-left: 18px;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.top-bar.scrolled .nav a {
    color: var(--text-muted) !important;
}

.top-bar.scrolled .nav a:hover {
    color: var(--text-main) !important;
}

/* Hero */
.hero {
    padding: 60px 20px 70px;
    background: linear-gradient(to bottom, #000000 0%, #000000 20%, #ffffff 100%);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.15rem;
    color: #dddddd;
    margin-bottom: 24px;
    max-width: 520px;
}

.primary-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 24px;
    background: var(--gold);
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
}

.primary-button:hover {
    filter: brightness(1.05);
}

.hero-image {
    max-width: 360px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Sections */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section h2 {
    text-align: center;
    font-size: 1.9rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Card Section */
.section-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
    border-top: 4px solid var(--gold);
}

.bullet-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Solutions */
.solutions-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.solution-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
    padding: 20px 20px 26px;
    border: 1px solid var(--border-soft);
}

/* Product Images */
.solution-image {
    width: 100%;
    height: 360px;
    object-fit: contain;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover .solution-image {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* ENLARGED PERFUME MACHINE */
.solution-image-large {
    transform: scale(1.5);
    transform-origin: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits */
.benefits-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-item {
    background: #fff9e8;
    border-radius: 14px;
    padding: 18px 18px 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}

.highlight {
    border: 3px solid var(--gold);
}

/* Contact */
.contact-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
    border-top: 4px solid var(--gold);
    padding: 30px 26px 32px;
    text-align: center;
}

/* Contact Form */
.contact-form {
    margin-top: 25px;
    text-align: left;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 4px rgba(201,164,75,0.4);
}

/* Contact details at bottom */
.contact-details-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    text-align: center;
    font-size: 1.1rem;
}

.contact-details-bottom p {
    margin: 6px 0;
    color: #000;
    font-weight: 600;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-soft);
    padding: 16px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 26px;
    right: 26px;
    background: var(--gold);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 9999;
}

.floating-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}