:root {
    --primary: #1a1a1a;
    --accent: #c8a96e;
    --gold: #c9a227;
    --light-bg: #f7f7f7;
    --white: #ffffff;
    --topbar-bg: #E8EDF3;
    --trusted-bg: #D2DBE2;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--primary);
    background-color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: #E8EDF3;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #787A7C;
}

.top-bar-content span {
    white-space: nowrap;
}

.top-bar i {
    margin-right: 0.4rem;
    color: #787A7C;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #e0e0e0;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

/* Hero */
.hero {
    min-height: 45vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.hero-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin: 0;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* Category Cards */
.category-card {
    aspect-ratio: 4 / 5;
    background-color: #e0e0e0;
}

.category-card img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s ease;
}

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

.category-title {
    background: rgba(0,0,0,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: background 0.3s;
}

.category-card:hover .category-title {
    background: rgba(0,0,0,0.7);
}

/* Trusted By */
.trusted-by {
    background-color: #E8EDF3;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.trusted-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trusted-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #787A7C;
    margin-bottom: 0.25rem;
}

.trusted-subtitle {
    font-family: 'Ponomar', cursive;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.28;
    color: #515151;
    display: block;
}

.trusted-items {
    position: relative;
}

.trust-item {
    position: relative;
    padding: 1.25rem 0.5rem;
    text-align: center;
}

.trust-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 133px;
    background-color: #D2DBE2;
}

.trust-icon {
    width: 56px;
    height: auto;
    display: block;
    margin: 0 auto 0.75rem auto;
    color: #787A7C;
}

.trust-item i.trust-icon {
    font-size: 56px;
    color: #787A7C;
    display: block;
    margin-bottom: 0.75rem;
}

.trust-item p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.28;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #787A7C;
    margin-bottom: 0;
}

/* Social Bar */
.social-bar {
    background-color: #FFFFFF;
}

.social-bar a {
    color: #000000;
    font-size: 22px;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-bar a:hover {
    color: #787A7C;
}

/* Footer */
.footer {
    background-color: #404143;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.footer i {
    margin-right: 0.3rem;
}

/* Lazy loading fade-in */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s;
}
