/* QE TEAM - Premium Industrial Dark Theme */
:root {
    --bg-dark: #0a0a0a;
    --bg-dark-alt: #121212;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gold: #fbc02d;
    --orange: #f57c00;
    --orange-glow: rgba(245, 124, 0, 0.5);
    --gold-glow: rgba(251, 192, 45, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-gold {
    color: var(--gold);
}

.text-orange {
    color: var(--orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #ff9800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--orange-glow);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

.btn-glow {
    box-shadow: 0 0 15px var(--orange-glow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.logo-text .accent {
    color: var(--gold);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn) {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0a0a0a;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    /* Slightly wider */
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--orange);
}

.hero-top-text {
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-dark-alt);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-text h3 {
    font-size: 1.5rem;
    line-height: 1;
}

.stat-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Services */
.services-section {
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: var(--orange);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #202020;
    border-color: var(--orange);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px var(--orange-glow);
}

.service-card.active {
    border-color: var(--orange);
    box-shadow: 0 0 40px rgba(245, 124, 0, 0.15);
    background: linear-gradient(145deg, #1e1e1e, #121212);
}

.service-card-icon {
    font-size: 4.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    color: var(--orange);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
    width: 100%;
}

.service-card ul {
    list-style: none;
    width: 100%;
}

.service-card li {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.service-card li i {
    color: var(--orange);
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-dark-alt);
    border-radius: 12px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Reviews / About */
.bg-dark-alt {
    background-color: #0d0d0d;
}

.row {
    display: flex;
    gap: 60px;
}

.col-6 {
    flex: 1;
}

.align-center {
    align-items: center;
}

.sub-heading {
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.review-box {
    margin-top: 40px;
    padding: 40px;
    background: #1a1a1a;
    border-left: 5px solid var(--gold);
    border-radius: 4px;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mini-review {
    padding: 25px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mini-review p {
    font-style: italic;
    margin-bottom: 10px;
}

.mini-review span {
    color: var(--text-gray);
    font-weight: 600;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.location-map iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050505;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 20px var(--orange-glow);
    transition: var(--transition);
}

.floating-call-btn:hover {
    transform: scale(1.1);
}

.btn-text {
    position: absolute;
    right: 85px;
    background: var(--orange);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    pointer-events: none;
}

.floating-call-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--orange);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Process Section */
.process-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
}

.process-step h3 {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.process-step p {
    position: relative;
    z-index: 2;
    color: var(--text-gray);
}

.process-icon-connector {
    color: var(--orange);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-category {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pricing-category:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-category.highlight {
    background: linear-gradient(145deg, #1e1e1e, #121212);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(245, 124, 0, 0.1);
}

.pricing-category h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-category h3 i {
    color: var(--orange);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.price-list li:last-child {
    border-bottom: none;
}

.price {
    color: var(--orange);
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-dark-alt);
    border-radius: 8px;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Updated Responsive Rules for Process */
@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
        gap: 40px;
    }

    .process-icon-connector {
        transform: rotate(90deg);
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }


    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}