/* ===========================
   CSS VARIABLES & RESET
   =========================== */

:root {
    --black-primary: #0E0E0E;
    --gray-secondary: #2B2B2B;
    --gray-tertiary: #3A3A3A;
    --yellow-accent: #F5C400;
    --red-emergency: #D92C2C;
    --white-primary: #FFFFFF;
    --white-secondary: #E8E8E8;
    --text-muted: #B0B0B0;
    
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Inter', 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 12px 32px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--black-primary);
    color: var(--white-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: #FFD700;
}

/* ===========================
   UTILITY CLASSES
   =========================== */

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--yellow-accent);
    color: var(--black-primary);
    border-color: var(--yellow-accent);
}

.btn-primary:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--yellow-accent);
    border-color: var(--yellow-accent);
}

.btn-secondary:hover {
    background-color: var(--yellow-accent);
    color: var(--black-primary);
    transform: translateY(-2px);
}

.btn-emergency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--red-emergency);
    color: var(--white-primary);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-emergency:hover {
    background-color: #C51F1F;
    transform: scale(1.05);
}

.btn-emergency-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    background-color: var(--red-emergency);
    color: var(--white-primary);
    border-color: var(--red-emergency);
}

.btn-emergency-large:hover {
    background-color: #C51F1F;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===========================
   STICKY CALL BUTTON
   =========================== */

.sticky-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-call-button.show {
    display: block;
    animation: slideIn 0.3s ease;
}

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

/* ===========================
   FLOATING REQUEST BUTTON
   =========================== */

.floating-request-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 998;
    display: none;
}

.floating-request-btn.show {
    display: block;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--yellow-accent);
    color: var(--black-primary);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-heavy);
}

.btn-float:hover {
    background-color: #FFD700;
    transform: scale(1.1);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.85) 0%, rgba(43, 43, 43, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 196, 0, 0.15);
    color: var(--yellow-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--yellow-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 2rem;
    color: var(--yellow-accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-line {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 196, 0, 0.3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow-accent);
    font-weight: 600;
}

.trust-item i {
    font-size: 1.3rem;
}

/* ===========================
   TRUST STRIP
   =========================== */

.trust-strip {
    background-color: var(--gray-secondary);
    padding: 40px 20px;
    border-top: 4px solid var(--yellow-accent);
    border-bottom: 4px solid var(--yellow-accent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-primary);
    font-weight: 600;
    font-size: 1rem;
}

.trust-badge i {
    color: var(--yellow-accent);
    font-size: 1.5rem;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--black-primary) 0%, var(--gray-secondary) 100%);
}

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

.service-card {
    background-color: var(--gray-tertiary);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(245, 196, 0, 0.2);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(245, 196, 0, 0.1);
    border-color: var(--yellow-accent);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    color: var(--yellow-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--white-secondary);
    line-height: 1.8;
}

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */

.why-choose-us {
    padding: 100px 20px;
    background-color: var(--black-primary);
}

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

.why-card {
    text-align: center;
}

.why-icon {
    font-size: 4rem;
    color: var(--yellow-accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-card p {
    color: var(--white-secondary);
    line-height: 1.8;
}

.why-card strong {
    color: var(--yellow-accent);
}

/* ===========================
   EMERGENCY CTA SECTION
   =========================== */

.emergency-cta {
    background: linear-gradient(135deg, var(--red-emergency) 0%, rgba(217, 44, 44, 0.9) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.emergency-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-cta h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.emergency-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.emergency-subtext {
    font-size: 0.95rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* ===========================
   REVIEWS SECTION
   =========================== */

.reviews {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--gray-secondary) 0%, var(--black-primary) 100%);
}

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

.review-card {
    background-color: var(--gray-tertiary);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--yellow-accent);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--yellow-accent);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    margin-bottom: 15px;
    color: var(--white-secondary);
    font-style: italic;
    line-height: 1.8;
}

.review-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===========================
   SERVICE AREA SECTION
   =========================== */

.service-area {
    padding: 100px 20px;
    background-color: var(--black-primary);
}

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

.service-area-text h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 20px;
    color: var(--yellow-accent);
}

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

.service-areas-list li {
    padding: 10px 0;
    color: var(--white-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-areas-list i {
    color: var(--yellow-accent);
    font-weight: bold;
}

.service-area-map {
    background-color: var(--gray-tertiary);
    border: 2px solid var(--yellow-accent);
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-area-map i {
    font-size: 4rem;
    color: var(--yellow-accent);
    margin-bottom: 20px;
}

.service-area-map p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-secondary);
}

/* ===========================
   REQUEST FORM SECTION
   =========================== */

.request-form-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--black-primary) 0%, var(--gray-secondary) 100%);
}

.request-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--gray-tertiary);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(245, 196, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--yellow-accent);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--black-primary);
    border: 2px solid rgba(245, 196, 0, 0.3);
    border-radius: 4px;
    color: var(--white-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-accent);
    background-color: rgba(245, 196, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */

.final-cta {
    background: linear-gradient(135deg, var(--gray-secondary) 0%, var(--gray-tertiary) 100%);
    padding: 80px 20px;
    text-align: center;
    border-top: 4px solid var(--yellow-accent);
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--white-secondary);
    margin-bottom: 30px;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--black-primary);
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--white-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: var(--yellow-accent);
    transition: var(--transition);
}

.footer-section a:hover {
    color: #FFD700;
    padding-left: 5px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 196, 0, 0.1);
    border-radius: 50%;
    border: 1px solid var(--yellow-accent);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--yellow-accent);
    color: var(--black-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-line {
        gap: 20px;
        font-size: 0.9rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 0.85rem;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .request-form {
        padding: 30px 20px;
    }
    
    .why-grid {
        gap: 30px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .emergency-cta {
        padding: 60px 20px;
    }
    
    .emergency-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-trust-line {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .why-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .sticky-call-button {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-request-btn {
        bottom: 90px;
        right: 10px;
    }
    
    .btn-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .sticky-call-button,
    .floating-request-btn,
    .footer {
        display: none;
    }
}
