/* =====================================================
   MASSIVE SERVICES LLC - Main Stylesheet
   ===================================================== */

/* Import Modern Design System */
@import url('styles-modern.css');

/* Import Enhanced Mobile Styles */
@import url('styles-mobile.css');

/* ===== Base Reset & Variables ===== */
:root {
    --primary-color: #2E4E7C;
    --primary-dark: #1B242B;
    --primary-light: #5474A2;
    --secondary-color: #F7A801;
    --secondary-dark: #d69001;
    --accent-color: #F7A801;
    --success-color: #10b981;
    --success-dark: #059669;
    --text-dark: #2E4E7C;
    --text-light: #757981;
    --text-lighter: #A1A2A4;
    --background: #ffffff;
    --background-alt: #F6F6F7;
    --border-color: #e5e7eb;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #1B242B 0%, #2E4E7C 100%);
    --gradient-secondary: linear-gradient(135deg, #F7A801 0%, #d69001 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #1B242B 0%, #2E4E7C 50%, #5474A2 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
}

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

/* ===== Modern Header & Navigation ===== */
.header {
    background: #2e4e7c;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #2e4e7c;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 150px;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
}

.logo a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-text {
    color: white;
    font-weight: 800;
}

.logo-img {
    height: 128px;
    width: 145px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

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

.nav-item {
    position: relative;
}

.nav-item > a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-item:hover > a::after {
    width: 100%;
}

.nav-item:hover > a {
    color: #F7A801;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    overflow: hidden;
    padding-top: 0;
}

/* Create a hover bridge to prevent dropdown from disappearing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--background-alt);
    color: var(--secondary-color);
    padding-left: 25px;
}

.cta-button a {
    background: #F7A801;
    color: #2e4e7c;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 168, 1, 0.3);
}

.cta-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 168, 1, 0.4);
}

/* ===== Modern Hero Section ===== */
.hero {
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="1440" height="700" viewBox="0 0 1440 700" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="1200" cy="100" r="200" fill="white" opacity="0.02"/><circle cx="200" cy="600" r="150" fill="white" opacity="0.03"/><circle cx="1400" cy="400" r="300" fill="white" opacity="0.02"/><path d="M0 400Q360 300 720 350T1440 400V700H0Z" fill="white" opacity="0.03"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #F7A801;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== Modern Service Cards ===== */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-alt) 0%, white 50%);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0 8px 25px;
    color: var(--text-dark);
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* ===== Modern Location Cards ===== */
.locations-section {
    padding: 100px 0;
    background: white;
}

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

.location-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid var(--border-color);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.location-card:hover::before {
    opacity: 1;
}

.location-card > * {
    position: relative;
    z-index: 1;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.location-card:hover h3 {
    color: white;
}

.location-highlight {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.location-card:hover .location-highlight {
    color: var(--secondary-color);
}

.location-cities {
    list-style: none;
    margin-bottom: 20px;
}

.location-cities li {
    padding: 5px 0;
    color: var(--text-light);
    transition: color 0.4s ease;
}

.location-card:hover .location-cities li {
    color: rgba(255, 255, 255, 0.9);
}

.location-cta {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.location-card:hover .location-cta {
    color: white;
    gap: 12px;
}

/* ===== Industries Section ===== */
.industries-section {
    padding: 100px 0;
    background: var(--background-alt);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-card ul {
    list-style: none;
}

.industry-card ul li {
    padding: 8px 0 8px 25px;
    color: var(--text-dark);
    position: relative;
}

.industry-card ul li::before {
    content: '▸';
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
}

/* ===== Safety Section ===== */
.safety-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 168, 1, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.safety-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--background-alt);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safety-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.safety-features ul {
    list-style: none;
}

.safety-features ul li {
    padding: 12px 0 12px 35px;
    color: var(--text-dark);
    position: relative;
}

.safety-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--gradient-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.safety-certifications {
    background: var(--background-alt);
    border-radius: 20px;
    padding: 40px;
}

.safety-certifications h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cert-badge {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--gradient-secondary);
    color: var(--primary-dark);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="1440" height="400" viewBox="0 0 1440 400" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 100L48 93.3C96 86.7 192 73.3 288 80C384 86.7 480 113.3 576 126.7C672 140 768 140 864 133.3C960 126.7 1056 113.3 1152 106.7C1248 100 1344 100 1392 100L1440 100V400H1392C1344 400 1248 400 1152 400C1056 400 960 400 864 400C768 400 672 400 576 400C480 400 384 400 288 400C192 400 96 400 48 400L0 400Z" fill="white" opacity="0.05"/></svg>') no-repeat center;
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 168, 1, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.cta-emergency {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.contact-form-wrapper p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form-wrapper iframe {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 8px 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #F7A801;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #F7A801;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 75px;
    }
    
    .nav-container {
        min-height: 100px;
        padding: 12px 15px;
        background: #2e4e7c;
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100%;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #2e4e7c !important;
        flex-direction: column !important;
        padding: 100px 0 40px !important;
        gap: 0 !important;
        transition: right 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3) !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: -1;
        pointer-events: none;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu.active .nav-item {
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.3s forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(7) { animation-delay: 0.35s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-item > a {
        display: block !important;
        padding: 18px 30px !important;
        color: #ffffff !important;
        background: transparent !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .nav-item > a:hover,
    .nav-item > a:focus {
        background: linear-gradient(90deg, transparent 0%, rgba(247, 168, 1, 0.1) 50%, transparent 100%) !important;
        color: #F7A801 !important;
        padding-left: 35px !important;
    }
    
    .nav-item > a::after {
        display: none;
    }
    
    /* Dropdown styles for mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu a {
        padding: 14px 30px 14px 45px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        background: transparent !important;
        font-size: 14px !important;
        display: block !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        border: none !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(247, 168, 1, 0.1) !important;
        color: #F7A801 !important;
        padding-left: 50px !important;
    }
    
    /* CTA button in mobile menu */
    .nav-item.cta-button {
        margin-top: 20px;
        border: none;
    }
    
    .nav-item.cta-button a {
        background: linear-gradient(135deg, #F7A801 0%, #ff8c00 100%);
        color: white;
        margin: 0 20px;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(247, 168, 1, 0.3);
    }
    
    .nav-item.cta-button a:hover {
        background: linear-gradient(135deg, #ff8c00 0%, #F7A801 100%);
        padding-left: 30px;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(247, 168, 1, 0.4);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .locations-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}