/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Navy Palette - Based on reference image */
    --primary-dark: #0a1628;
    --primary: #0d1b2a;
    --primary-light: #12243b;
    --primary-lighter: #1a3050;
    --card-bg: #111d2e;
    
    /* Gold Palette */
    --accent: #c9a962;
    --accent-dark: #b8943f;
    --accent-light: #d4b872;
    --accent-muted: #a68c4b;
    
    /* Neutral Colors */
    --text-dark: #0d1b2a;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --bg-dark: #0a1628;
    --bg-navy: #0d1b2a;
    --bg-light: #0a1628;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #0d1b2a 0%, #12243b 50%, #1a3050 100%);
    --bg-gradient-dark: linear-gradient(135deg, #0a1628 0%, #0d1b2a 100%);
    
    --border-color: rgba(201, 169, 98, 0.25);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --glass: rgba(17, 29, 46, 0.8);
    --glass-border: rgba(201, 169, 98, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight {
    color: var(--accent);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - White and Bigger */


.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--accent);
}

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

.header .btn-primary {
    margin-left: 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    max-width: 650px;
    position: relative;
    z-index: 1;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-dark) 0%, transparent 30%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Us Section */
.why-us {
    padding: 140px 0;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

.why-us h2 {
    font-size: 2.75rem;
    letter-spacing: 0.1em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.feature-card {
    padding: 50px 40px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 98, 0.1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: var(--accent);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* How We Work Section */
.how-we-work {
    padding: 140px 0;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-we-work .section-label {
    background: rgba(201, 169, 98, 0.1);
    color: var(--accent);
    border-color: rgba(201, 169, 98, 0.3);
}

.how-we-work h2 {
    color: var(--text-white);
}

.how-we-work .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.process-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(17, 29, 46, 0.9);
    box-shadow: var(--shadow-gold);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 14px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.25);
}

.process-card h4 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--text-white);
}

.process-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 140px 0;
    background: var(--bg-dark);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 32px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Brands Section */
.brands {
    padding: 140px 0 100px;
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.brands h2 {
    color: var(--text-white);
}

.brands h2 em {
    color: var(--accent);
    font-style: italic;
}

.brands .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.brands .btn {
    margin: 35px 0 60px;
}

.brands-label {
    font-size: 0.75rem;
    color: var(--accent-dark);
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Brands Carousel/Slider - Full Width */
.brands-carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
}

.brands-carousel-container::before,
.brands-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-dark) 0%, transparent 100%);
}

.brands-carousel-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--primary-dark) 100%);
}

.brands-carousel {
    display: flex;
    gap: 30px;
    animation: scrollBrands 25s linear infinite;
    width: fit-content;
    padding: 0 30px;
}

.brands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    background: rgba(17, 29, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: var(--transition);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

.brand-item:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    transform: scale(1.08);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--accent);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 28px 0;
}

.mobile-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 50px 40px;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-image {
        min-height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav, .header .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-content {
        padding: 40px 24px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-carousel {
        gap: 20px;
    }
    
    .brand-item {
        padding: 16px 28px;
        font-size: 0.8rem;
    }
    
    .why-us, .how-we-work, .about, .brands {
        padding: 80px 0;
    }
    
    .logo img {
        height: 45px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .process-card {
        padding: 35px 25px;
    }
    
    h2 {
        font-size: 1.85rem;
    }
    
    .logo img {
        height: 40px;
        padding: 5px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
