:root {
    /* Industrial Premium Dark Mode Palette */
    --bg-color: #0b0d10;
    --text-main: #f0f2f5;
    --text-muted: #9aa2b1;
    --accent-color: #f7b731; /* Construction Yellow/Gold */
    --accent-hover: #fa8231;
    
    --card-bg: rgba(20, 24, 30, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --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 {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients */
.bg-gradient-spot {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.id-spot-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    top: -200px;
    left: -200px;
}

.id-spot-2 {
    width: 500px;
    height: 500px;
    background: #20bf6b; /* Agricultural Green Accent */
    bottom: -100px;
    right: -100px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-accent {
    color: var(--accent-color);
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(11, 13, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-bold { font-weight: 900; }
.logo-light { font-weight: 400; opacity: 0.8; }

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

.nav-links a:not(.btn) {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--card-border);
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-main);
    text-decoration: none;
    padding: 1rem 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Layout Utilities */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 120px;
    gap: 2rem;
}

.hero-content {
    flex: 0.8;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(247, 183, 49, 0.1);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(247, 183, 49, 0.2);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Visual */
.hero-visual {
    flex: 1.3;
    position: relative;
}

.visual-card {
    position: relative;
    padding: 1rem;
    height: auto;
    aspect-ratio: 16 / 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-image: url('hero.jpg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

.floating-stat {
    position: absolute;
    background: rgba(20, 24, 30, 0.5);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.stat-1 {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 40px;
    right: -40px;
    animation-delay: 3s;
}

.accent-icon {
    color: var(--accent-color);
}

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

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    text-align: center;
    padding: 1.5rem;
}

.video-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-main);
}

.featured-video {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: #000;
}

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

.service-card {
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 183, 49, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(247, 183, 49, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    padding-bottom: 4rem;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(20,24,30,0.8), rgba(247, 183, 49, 0.05));
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    background: #060709;
    padding: 6rem 2rem 2rem 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer a, .footer p {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        width: 100%;
        margin-top: 2rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    
    .hero-title { font-size: 2.8rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .stat-1, .stat-2 {
        display: none;
    }
}

/* Pricing Section */
.pricing-category {
    margin-bottom: 4rem;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cat-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    background: rgba(247, 183, 49, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.cat-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.cat-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.table-responsive {
    overflow-x: auto;
}

.glass-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.glass-table th, .glass-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.glass-table th {
    background: rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.glass-table tr:last-child td {
    border-bottom: none;
}

.glass-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.glass-table .price {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.pricing-disclaimer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(20,24,30,0.8), rgba(247, 183, 49, 0.05));
    border-radius: 16px;
    padding: 2.5rem;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 992px) {
    .pricing-disclaimer {
        flex-direction: column;
        text-align: center;
    }
    .disclaimer-content {
        flex-direction: column;
    }
}
