:root {
    --primary-dark: #0a1128;
    --primary-blue: #1e3a8a;
    --accent-orange: #f97316;
    --accent-bright: #fb923c;
    --neutral-100: #f8fafc;
    --neutral-200: #e2e8f0;
    --neutral-700: #334155;
    --neutral-900: #0f172a;
}

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

body {
    font-family: 'Barlow', sans-serif;
    color: var(--neutral-900);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    color: var(--accent-bright);
    font-size: 0.9rem;
    letter-spacing: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

.main-nav a:hover {
    color: var(--accent-bright);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-bright);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: white;
    transform: scale(1.05);
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%),
                url('../images/chicago-skyline.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-orange) 0%, transparent 50%);
    opacity: 0.05;
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-text h1 span {
    color: var(--accent-bright);
    display: block;
    font-size: 3.5rem;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--accent-orange);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

.promo-box {
    background: var(--accent-orange);
    padding: 2.5rem;
    position: relative;
    animation: slideInRight 0.8s ease-out 0.4s backwards;
}

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

.promo-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--accent-bright);
    z-index: -1;
    pointer-events: none;
}

.promo-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.promo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.promo-details {
    font-size: 0.9rem;
    opacity: 0.9;
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--neutral-100);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--neutral-700);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-left: 5px solid var(--accent-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--neutral-700);
}

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

/* Why Choose Section */
.why-choose {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, var(--accent-orange) 0%, transparent 100%);
    opacity: 0.1;
    transform: rotate(-15deg);
    pointer-events: none;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.why-item p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Service Area Section */
.service-area {
    padding: 6rem 2rem;
    background: white;
}

.area-container {
    max-width: 1400px;
    margin: 0 auto;
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.area-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.neighborhoods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.neighborhood {
    padding: 0.8rem;
    background: var(--neutral-100);
    border-left: 3px solid var(--accent-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.neighborhood:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateX(5px);
}

.area-map {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
}

.area-map img {
    position: absolute;
    top: 0;
    left: 0;
}

.area-map::before {
    content: '🗺️';
    font-size: 8rem;
    position: absolute;
    opacity: 0.1;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: var(--neutral-100);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    position: relative;
    border-top: 4px solid var(--accent-orange);
}

.stars {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--neutral-700);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Widget Sections */
.reviews-widget-section {
    padding: 6rem 2rem;
    background: white;
}

.faq-widget-section {
    padding: 6rem 2rem;
    background: var(--neutral-100);
}

.widget-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--accent-orange);
    padding: 1.2rem 3rem;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--neutral-100);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 3px solid white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: white;
    color: var(--accent-orange);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--accent-bright);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-bright);
}

.review-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.review-badge:hover {
    background: var(--accent-orange);
    transform: translateX(5px);
}

.badge-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text h1 span {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .promo-box {
        padding: 2rem;
    }
    
    .promo-amount {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .area-content {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}