/* ============================================
   TWIN CITIES CONCRETE DEMOLITION
   Industrial Contractor Design System
   ============================================ */

/* COLOR PALETTE */
:root {
    --primary-orange: #FF6600;
    --orange-dark: #E65C00;
    --orange-light: #FF7A1F;
    --primary-black: #1A1A1A;
    --secondary-black: #2D2D2D;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #4A4A4A;
    --success-green: #28A745;
    --warning-red: #DC3545;
    --overlay-dark: rgba(26, 26, 26, 0.85);
}

/* TYPOGRAPHY */
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
    background: var(--primary-black);
    padding: 12px 0;
    border-bottom: 2px solid var(--primary-orange);
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: var(--white);
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: "»";
    margin: 0 10px;
    color: var(--primary-orange);
}

.breadcrumb-item a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
}

/* ============================================
   TOP NAVIGATION BAR (For non-homepage pages)
   ============================================ */
.top-nav {
    background: var(--primary-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-nav-phone {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-nav-phone:hover {
    color: var(--primary-orange);
}

.top-nav-phone i {
    color: var(--primary-orange);
}

.top-nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-nav-menu > li {
    position: relative;
}

.top-nav-menu > li > a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
}

.top-nav-menu > li > a:hover,
.top-nav-menu > li > a.active {
    color: var(--primary-orange);
}

/* Dropdown Menu Styles */
.top-nav-menu .dropdown {
    position: relative;
}

.top-nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-nav-menu .dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 3px;
}

.top-nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-black);
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-top: 2px solid var(--primary-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    z-index: 1001;
}

.top-nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-nav-menu .dropdown-menu li {
    padding: 0;
}

.top-nav-menu .dropdown-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    transition: background 0.3s ease, color 0.3s ease;
}

.top-nav-menu .dropdown-menu a:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.top-nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav-quote {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.btn-nav-quote:hover {
    background: var(--orange-dark);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .top-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-black);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }
    
    .top-nav-menu.active {
        display: flex;
    }
    
    .top-nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--primary-black);
        display: none;
    }
    
    .top-nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .top-nav-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-nav-quote {
        width: 100%;
        text-align: center;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--primary-black);
}

h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.7;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
    background: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-large {
    padding: 20px 50px;
    font-size: 20px;
}

.btn-phone {
    background: var(--success-green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-phone:hover {
    background: #218838;
}

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

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

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

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--primary-black);
    color: var(--white);
}

.section-gray {
    background: var(--gray-light);
}

.section-orange {
    background: var(--primary-orange);
    color: var(--white);
}

/* GRID SYSTEM */
.grid {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* CARDS */
.card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.card-text {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* HERO SECTIONS */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(255, 102, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BREADCRUMBS */
.breadcrumb {
    padding: 15px 0;
    background: var(--gray-light);
    font-size: 14px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--gray-dark);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.breadcrumb-item::after {
    content: '›';
    margin-left: 10px;
    color: var(--gray-medium);
}

.breadcrumb-item:last-child::after {
    display: none;
}

/* SERVICE/CITY CARDS */
.service-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.step-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-description {
    font-size: 15px;
    color: var(--gray-dark);
}

/* FAQ SECTION */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* TESTIMONIALS */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial-location {
    font-size: 14px;
    color: var(--gray-dark);
}

.testimonial-rating {
    color: var(--primary-orange);
    font-size: 18px;
    margin-bottom: 15px;
}

/* PRICING TABLE */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-tier {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.pricing-name {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CALL TO ACTION SECTIONS */
.cta-section {
    background: var(--primary-orange);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.trust-badge-icon {
    font-size: 32px;
    color: var(--primary-orange);
}

.trust-badge-text {
    text-align: left;
}

.trust-badge-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.trust-badge-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

/* IMAGE GALLERY */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* CONTACT FORM */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    h1 {
        font-size: 38px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
    }
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background: var(--primary-orange);
}

.bg-black {
    background: var(--primary-black);
}

.bg-white {
    background: var(--white);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}
