:root {
    --bg-dark: #0f1115;
    --bg-card: #1a1d24;
    --text-main: #f0f2f5;
    --text-muted: #9ba3af;
    --primary: #ff6b00;
    --primary-glow: rgba(255, 107, 0, 0.4);
    --secondary: #252830;
    --accent: #ffd000;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e65100);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: #323640;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
}

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

.logo i {
    color: var(--primary);
    margin-right: 5px;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

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

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

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

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.hero-content strong {
    color: var(--text-main);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(255,107,0,0) 70%);
    z-index: 1;
    border-radius: 50%;
}

/* Floating animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        margin-top: 40px;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #121419;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card h3 {
    margin-bottom: 15px;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.price-tag.eco {
    background: #2ed573;
}

/* Delivery Section */
.delivery {
    padding: 100px 0;
}

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

.delivery-content p {
    margin-bottom: 30px;
}

.delivery-content span {
    color: var(--accent);
}

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

.delivery-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-list i {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.delivery-image {
    position: relative;
}

.delivery-image img {
    max-width: 100%;
    z-index: 2;
    position: relative;
    border-radius: 20px;
}

.glow-bg-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.moving-truck {
    animation: moveTruck 4s ease-in-out infinite alternate;
}

@keyframes moveTruck {
    0% { transform: translateX(-10px) rotate(-1deg); }
    100% { transform: translateX(10px) rotate(1deg); }
}

@media (max-width: 992px) {
    .delivery-container {
        grid-template-columns: 1fr;
    }
    .delivery-image {
        order: -1;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #121419;
}

.contact-card {
    background: linear-gradient(145deg, var(--bg-card), #14161b);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h2 {
    margin-bottom: 20px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.info-item h4 {
    color: var(--text-main);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--text-muted);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary);
}

.contact-action {
    background: rgba(255, 107, 0, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px dashed rgba(255, 107, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-action p {
    margin: 15px 0 25px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-joke {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}
