:root {
    --primary: #f39c12; /* Safety Orange */
    --secondary: #2c3e50; /* Charcoal */
    --accent: #e67e22; /* Burnt Orange */
    --text: #ffffff;
    --muted: #bdc3c7;
    --dark: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass: rgba(10, 10, 10, 0.85);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.35) contrast(1.1);
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--primary);
    display: block;
}

.hero p {
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 45px;
    color: var(--muted);
    font-weight: 300;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

.section-subtitle {
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.brands-grid-img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: #0d0d0d;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-card h3 {
    font-size: 56px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

/* Services */
.services {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    font-weight: 800;
}

.section-title span {
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(243, 156, 18, 0.1);
}

.card-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
    font-size: 15px;
    flex-grow: 1;
}

.highlight-ev {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.highlight-ev h3 {
    color: #2ecc71;
}

/* About */
.about {
    padding: 120px 0;
    background: #0d0d0d;
}

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

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    font-size: 19px;
    color: var(--muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.about-list {
    list-style: none;
}

.about-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

.about-list i {
    color: var(--primary);
    font-size: 20px;
}

.about-img-container {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 1), rgba(10, 10, 10, 1));
    padding: 80px 60px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-box h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 800;
}

.contact-box h2 span {
    color: var(--primary);
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info p {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--muted);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
}

.btn-secondary {
    border: 2px solid var(--text);
    color: var(--text);
}

.btn-secondary:hover {
    background-color: var(--text);
    color: var(--dark);
    transform: translateY(-5px);
}

.btn-accent {
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
}

.btn-accent:hover {
    background-color: #1ebe57;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    background: #000;
}

footer p {
    color: #666;
    font-size: 14px;
}

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

.fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        padding: 60px 30px;
    }
    
    .contact-actions {
        flex-direction: column;
    }
}
