@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --primary-red: #e53935; /* Bold Red */
    --primary-red-hover: #c62828;
    --dark-bg: #0a0a0a; /* Almost Black */
    --dark-gray: #1a1a1a;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-dark: #222222;
    --text-gray: #666666;
    --border-light: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}
.btn:hover { background-color: var(--primary-red-hover); }

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 0.5rem 5%;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}
.top-bar-info {
    display: flex;
    gap: 1.5rem;
}
.top-bar-info i {
    color: var(--primary-red);
    margin-right: 0.3rem;
}

/* Navbar */
nav {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}
.logo span { color: var(--primary-red); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a.menu-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-links a.menu-item:hover { color: var(--primary-red); }

/* Hero Section */
.hero {
    position: relative;
    background: url('../img/hero_bg.png') center/cover no-repeat;
    padding: 8rem 5%;
    color: var(--white);
    display: flex;
    align-items: center;
    min-height: 80vh;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Dark overlay */
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--primary-red); }
.hero p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: var(--white);
    display: flex;
    gap: 4rem;
    align-items: center;
}
.about-text { flex: 1; }
.about-text .tag {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}
.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.about-list li i {
    color: var(--primary-red);
    font-size: 1.2rem;
}
.about-image {
    flex: 1;
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
    padding: 6rem 5% 10rem;
    color: var(--white);
    text-align: center;
}
.services-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.services-section p {
    color: #999;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    /* Overlapping effect */
    margin-bottom: -15rem; 
}
.service-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-card .icon-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 16rem 5% 6rem; /* Padding top large to account for overlapping cards */
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}
.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}
.stat-item p {
    color: var(--text-gray);
    font-weight: 600;
}

/* Forms (Order Page) */
.form-container {
    max-width: 700px;
    margin: 4rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fafafa;
    color: var(--text-dark);
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.error-msg {
    color: var(--primary-red);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

/* Alert */
.alert { padding: 1rem; border-radius: 4px; margin-bottom: 1.5rem; font-weight: 600; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 5% 2rem;
    margin-top: auto;
    border-top: 5px solid var(--primary-red);
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 2px;
    background: var(--primary-red);
}
.footer-col p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}
.footer-contact li i {
    color: var(--primary-red);
    margin-top: 0.2rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary-red);
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer-social a {
    background: rgba(255,255,255,0.1);
    color: white;
    width: 35px; height: 35px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary-red);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .about { flex-direction: column; }
    .hero h1 { font-size: 3rem; }
    .services-cards { margin-bottom: 0; }
    .stats { padding-top: 4rem; flex-direction: column; gap: 2rem; }
    .nav-links .menu-item { display: none; }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.floating-wa:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}
