:root {
    --primary: #e67e22;
    --dark: #2c3e50;
    --light: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav.scrolled .logo, nav.scrolled .nav-links a { color: var(--dark); }
.logo { color: var(--light); font-size: 1.8rem; font-weight: 800; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: var(--light); text-decoration: none; font-weight: 600; transition: 0.3s; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?q=80&w=3840&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 6rem); /* 4K Scale */
    color: white;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.8rem);
    color: #f1f1f1;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4); }

/* Product Grid */
.products-section { padding: 100px 5%; max-width: 2400px; margin: auto; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 50px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-bg {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.product-card:hover .card-bg { transform: scale(1.15); }

.card-content {
    position: absolute; bottom: 0; width: 100%; padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

/* Coming Soon */
.coming-soon-section {
    padding: 150px 5%;
    text-align: center;
    background: var(--dark);
    color: white;
}

.badge {
    background: var(--primary);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }

.animate-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.floating { animation: float 3s infinite ease-in-out; }

footer { padding: 50px; background: #1a1a1a; text-align: center; color: #777; }

/* --- Contact Section Styles --- */
.contact-section {
    padding: 100px 5%;
    background: #fdfdfd;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Animated Map Placeholder */
.map-container {
    margin-top: 30px;
    height: 250px;
    background: #e0e0e0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #666;
}

.map-pulse {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
}

.map-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(4); opacity: 0; }
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.1);
}

/* Responsive for Contact */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
    .contact-info { text-align: center; }
}