/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF5722;
    --secondary: #1E3A5F;
    --accent: #FFC107;
    --dark: #212121;
    --light: #1A1A1A;
    --text: #E0E0E0;
    --text-light: #B0BEC5;
    --white: #121212;
    --shadow: rgba(255, 87, 34, 0.3);
    --success: #4CAF50;
    --danger: #F44336;
    --gradient: linear-gradient(135deg, #FF5722 0%, #FFC107 100%);
    --steel: linear-gradient(135deg, #1E3A5F 0%, #34495E 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #121212;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark);
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--primary);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
    letter-spacing: 1px;
}

.nav-contact {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.phone-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(255, 193, 7, 0.1);
}

.phone-link:hover {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    padding: 25px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
    border: 3px solid var(--white);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 10px 40px rgba(255, 193, 7, 0.7); }
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    text-align: left;
    color: var(--dark);
}

.badge-text strong {
    display: block;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 900;
    text-transform: uppercase;
}

.badge-text span {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
    background: var(--steel);
    border-color: var(--secondary);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 87, 34, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #1A1A1A;
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 900;
    position: relative;
}

.services h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(33, 33, 33, 0.8);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
    border-left: 5px solid var(--primary);
    border: 2px solid rgba(255, 87, 34, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    border-left-color: var(--accent);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(255, 87, 34, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 800;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.service-card ul li:before {
    content: "✓ ";
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

.service-note {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(33, 33, 33, 0.8);
    border-radius: 10px;
    border: 2px solid rgba(255, 87, 34, 0.3);
}

.service-note p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.service-note a:hover {
    text-decoration: underline;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: #121212;
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(33, 33, 33, 0.8);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid rgba(255, 87, 34, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--success);
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--success), #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 800;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-area {
    text-align: center;
    margin-top: 60px;
}

.service-area h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-area > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.area-map {
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary);
}

.map-placeholder span {
    font-size: 5rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #1A1A1A;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(33, 33, 33, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-top: 4px solid var(--primary);
    border: 2px solid rgba(255, 87, 34, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    border-top-color: var(--accent);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--text);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-badges .badge-icon {
    font-size: 3rem;
    color: var(--success);
}

.trust-badges .badge span:last-child {
    font-weight: 600;
    color: var(--text);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #121212;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.emergency-card {
    background: var(--gradient);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.5);
    border: 3px solid var(--white);
}

.emergency-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.emergency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.emergency-card p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.emergency-phone {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.4rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.emergency-phone:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.info-card {
    background: rgba(33, 33, 33, 0.8);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 87, 34, 0.4);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.2);
    transform: translateY(-3px);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(33, 33, 33, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 87, 34, 0.4);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(18, 18, 18, 0.6);
    color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(176, 190, 197, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s;
}

.contact-form button {
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.demo-notice {
    font-size: 0.9rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .nav-contact {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(33, 33, 33, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 87, 34, 0.3);
        border-top: 2px solid rgba(255, 87, 34, 0.3);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .emergency-badge {
        flex-direction: column;
        text-align: center;
    }

    .badge-text {
        text-align: center;
    }
}
