/* Ironclad Pest Control - Premium Clean Aesthetics */
:root {
    --primary-color: #22c55e; /* Green for safety/eco-friendliness */
    --primary-dark: #16a34a;
    --primary-glow: rgba(34, 197, 94, 0.4);
    --accent-color: #facc15; /* Yellow for attention/warning but aesthetic */
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-card: #1e293b; /* Slate 800 */
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Sections */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--white);
}

.neon-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 1px;
    border-radius: 4px;
}

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

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

.btn-yellow {
    background-color: var(--accent-color);
    color: #000;
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(250, 204, 21, 0.3);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 45px; font-size: 1.1rem; }

/* Top Bar */
.top-bar {
    background: #000;
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #1e293b;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.top-actions {
    display: flex;
    gap: 15px;
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block; width: 25px; height: 3px; background-color: var(--white); margin: 5px auto; transition: all 0.3s ease;
}

.nav-link {
    margin-left: 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.cta-link {
    background: var(--primary-color);
    padding: 10px 25px;
    margin-left: 25px;
    color: #fff !important;
    border-radius: 4px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: var(--bg-card); min-width: 260px;
    display: none; border: 1px solid #334155; padding: 10px 0; border-radius: 4px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 12px 25px; font-size: 0.85rem; border-bottom: 1px solid #334155; }
.dropdown-menu a:hover { background: var(--primary-color); color: #fff; }

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 10; }

.status-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(34, 197, 94, 0.1);
    color: var(--primary-color); padding: 5px 15px; border: 1px solid var(--primary-color);
    font-size: 0.8rem; font-weight: 800; margin-bottom: 25px; border-radius: 20px;
}

.dot {
    width: 8px; height: 8px; background: var(--primary-color); border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-text h1 {
    font-size: 5rem; line-height: 1; margin-bottom: 25px; letter-spacing: -2px; color: var(--white);
}

.hero-text p {
    font-size: 1.4rem; color: var(--text-muted); max-width: 600px; margin-bottom: 45px;
}

.hero-ctas { display: flex; gap: 20px; margin-bottom: 50px; }

.hero-trust-indicators {
    display: flex; align-items: center; gap: 15px; font-weight: 700; color: #fff;
}

.v-divider { width: 1px; height: 30px; background: #334155; }

/* Fast Features */
.fast-features {
    background: var(--bg-card);
    padding: 50px 0;
    border-bottom: 1px solid #334155;
}

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}

.fast-feature { display: flex; align-items: center; gap: 20px; }
.fast-feature i { font-size: 2.5rem; color: var(--primary-color); }
.fast-feature h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--white); }
.fast-feature p { font-size: 0.9rem; color: var(--text-muted); }

/* Services */
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
}

.service-card {
    background: var(--bg-card); padding: 40px 30px; border: 1px solid #334155;
    transition: var(--transition); border-radius: 8px;
}

.service-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }

.service-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 25px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.3rem; color: var(--white); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; }
.service-link { color: var(--primary-color); font-weight: 800; font-size: 0.85rem; }

/* Testimonials */
.testimonials { background-color: var(--bg-dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--bg-card); color: var(--text-main); padding: 35px; border-radius: 8px;
    border-top: 3px solid var(--primary-color); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); border-top-color: var(--accent-color); }
.stars { color: var(--accent-color); margin-bottom: 15px; }
.testimonial-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 20px; }
.customer { font-weight: 700; color: var(--white); }

/* FAQ */
.faq-item { transition: var(--transition); }

/* Footer */
footer { background: #000; padding: 100px 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 80px; padding-bottom: 80px; }
.f-col h3 { color: var(--white); margin-bottom: 30px; }
.f-col p, .f-col ul li { color: var(--text-muted); }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 15px; }
.f-col ul a:hover { color: var(--primary-color); }
.emergency-badge { padding: 10px 20px; font-weight: 900; font-family: var(--font-heading); margin-top: 20px; border-radius: 4px; }
.footer-bottom { background: #050505; text-align: center; padding: 30px 0; font-size: 0.8rem; color: #444; border-top: 1px solid #111; }

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3.5rem; }
    .features-grid, .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-bg-video { opacity: 0.3; }
    .hero-overlay { background: rgba(15, 23, 42, 0.9); }
}

/* Chat Widget */
.chat-widget { position: fixed; bottom: 20px; right: 20px; z-index: 999; }
.chat-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.chat-popup { position: absolute; bottom: 75px; right: 0; width: 320px; background: #fff; border-radius: 8px; overflow: hidden; display: none; }
.chat-header { color: #fff; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-body { padding: 20px; background: #f8fafc; color: #333; }
.chat-btn:hover { transform: scale(1.1); }
.chat-popup.active { display: block; animation: slideUp 0.3s ease; }

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
