:root {
    --primary-color: #00FF41; /* Recycling Green */
    --secondary-color: #C0C0C0; /* Metallic Silver */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #e0e0e0;
    --accent-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo svg {
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(180deg) scale(1.1);
}

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

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

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.premium-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.premium-title span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.premium-p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #ccc;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    margin-right: 1.5rem;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* Quote Section - Decompressed & Modern */
.quote-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, #050505 0%, #111 100%);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.quote-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.quote-content {
    text-align: left;
    max-width: 650px;
    margin: 0;
}

.quote-content h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.quote-content p {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 0;
}

.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 300px;
}

.quote-actions .btn {
    text-align: center;
    padding: 1.5rem;
}

@media (max-width: 968px) {
    .quote-section { padding: 8rem 0; }
    .quote-section .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .quote-content { text-align: center; max-width: 100%; }
    .quote-content h2 { font-size: 2.8rem; }
    .quote-actions { width: 100%; min-width: unset; }
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--darker-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(0.5) contrast(1.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sub-title {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #aaa;
    font-size: 1.1rem;
}

/* Services */
.services {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #888;
}

/* Floating Buttons */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1001;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-wa { background-color: #25d366; }
.float-call { background-color: #007bff; }

.float-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 6rem 0 2rem;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    margin-top: 1.5rem;
    color: #666;
    max-width: 400px;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-contact p {
    color: #888;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background-color: #080808;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.cat-item:hover {
    background: var(--primary-color);
    color: #000;
}

/* Regions Section */
.regions {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #121212, #0a0a0a);
    width: 100%;
    overflow: hidden;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.region-col h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.region-col p {
    color: #888;
    line-height: 1.8;
}

.seo-tagline {
    margin-top: 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
}

/* Footer Bottom Updates */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
}

/* Why Us Section */
.why-us {
    padding: 8rem 0;
    background-color: var(--dark-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.why-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-item p {
    color: #999;
}

/* SEO Content */
.seo-content {
    padding: 5rem 0;
    background-color: #0d0d0d;
}

.seo-content h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.seo-content p {
    margin-bottom: 1.5rem;
    color: #888;
    max-width: 900px;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background-color: var(--darker-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.faq-item p {
    color: #777;
}

/* SEO Text Block */
.seo-text-block {
    padding: 6rem 0;
    background-color: var(--darker-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.seo-text-block p {
    color: #888;
    max-width: 900px;
    line-height: 1.8;
}

/* Updated Responsive */
@media (max-width: 968px) {
    .premium-title { font-size: 2.8rem; }
    .about-grid, .services-grid, .footer-grid, .why-us-grid, .faq-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .region-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .hero-content { text-align: center; }
    .btn { width: 100%; margin: 0.5rem 0; }
    .hero-btns { display: flex; flex-direction: column; }
    .section-header h2 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .premium-title { font-size: 2.2rem; }
    .container { padding: 0 1.5rem; }
    .logo { font-size: 1.4rem; gap: 8px; }
    .logo svg { width: 35px; height: 35px; }
    .about-text h2 { font-size: 1.8rem; }
    .section-header h2 { font-size: 2rem; }
    .cat-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1rem; }
    .floating-contact { right: 1rem; bottom: 1rem; }
    .footer-grid { gap: 2rem; }
}

/* Fix for AOS potential overflow */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}
