/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Top Bar */
.top-bar {
    background-color: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar-left a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-size: 16px;
}

.top-bar-left a:hover {
    color: #10b981;
}

.btn-estimate {
    background-color: #10b981;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 15px;
}

.btn-estimate:hover {
    background-color: #059669;
}

.phone {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.phone:hover {
    color: #10b981;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #dc2626;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #dc2626;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #dc2626;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background-color: #10b981;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #059669;
}

/* Promotional Banner */
.promo-banner {
    background-color: #dc2626;
    color: white;
    padding: 15px 0;
    text-align: center;
}

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

.btn-promo {
    background-color: #10b981;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-promo:hover {
    background-color: #059669;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/heroBG.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    text-align: left;
}

.hero-left h1 {
    color: white;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #fbbf24;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 16px;
    color: #e5e7eb;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.phone-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #dc2626;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
}

.phone-highlight i {
    font-size: 20px;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-guarantee i {
    color: #10b981;
    font-size: 16px;
}

/* Hero Right Side */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #10b981, #dc2626);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
}

.service-card i {
    font-size: 24px;
    color: #dc2626;
    margin-bottom: 10px;
    display: block;
}

.service-card span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.stat-item {
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.testimonial-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #dc2626;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-preview::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 40px;
    color: #dc2626;
    font-family: serif;
    opacity: 0.3;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.testimonial-preview p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.customer-name {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-trust {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.hero-trust p {
    color: #666;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-trust i {
    color: #10b981;
    margin-right: 5px;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #10b981;
}

/* Section Styles */
section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    color: #dc2626;
    font-size: 32px;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* What We Do Section */
.what-we-do {
    background-color: #f9fafb;
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-image {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card li {
    padding: 5px 0;
    color: #666;
}

.btn-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: #b91c1c;
}

/* Booking Process */
.booking-process {
    background-color: #dc2626;
    color: white;
}

.booking-process h2 {
    color: white;
}

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

.step-card {
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.step-card p {
    margin-bottom: 20px;
    color: #666;
}

/* Local Information */
.local-info {
    background-color: #f9fafb;
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.local-text h3 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.local-text h3 i {
    color: #dc2626;
}

.local-text h4 {
    color: #333;
    margin: 20px 0 10px 0;
}

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

.cities-column ul {
    list-style: none;
}

.cities-column li {
    padding: 5px 0;
    color: #666;
}

.map-container {
    background-color: #e5e7eb;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.map-placeholder {
    color: #6b7280;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Why Choose Us */
.why-choose {
    background-color: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit i {
    color: #dc2626;
    font-size: 24px;
    margin-top: 5px;
}

.benefit h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit p {
    color: #666;
}

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

.team-image {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-section {
    background-color: #f9fafb;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
}

/* Special Offers */
.special-offers {
    background-color: white;
    text-align: center;
}

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

.offer-card {
    background-color: #fef3c7;
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
}

.offer-amount {
    font-size: 48px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 20px;
}

.offer-details p {
    color: #666;
    margin-bottom: 10px;
}

.btn-offer {
    background-color: #dc2626;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.btn-offer:hover {
    background-color: #b91c1c;
}

/* How It Works */
.how-it-works {
    background-color: #f9fafb;
    text-align: center;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-simple {
    text-align: center;
}

.step-icon-simple {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.step-simple h3 {
    color: #333;
    font-size: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: #fef3c7;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: #333;
    font-size: 18px;
    margin: 0;
}

.faq-question i {
    color: #dc2626;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 20px;
    background-color: white;
    display: none;
}

.faq-answer p {
    color: #666;
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Get Quote Section */
.get-quote {
    background-color: #f9fafb;
    text-align: center;
}

.quote-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-row input,
.form-row select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.form-checkbox {
    text-align: left;
    margin-bottom: 20px;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-checkbox label {
    color: #666;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #10b981;
    width: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #d1d5db;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #10b981;
}

/* Services Page Styles */
.page-header {
    background-color: #dc2626;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-overview {
    background-color: #f9fafb;
    padding: 60px 0;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.category-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    text-align: left;
}

.category-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.category-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.individual-services {
    background-color: white;
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-detail-text h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail-text h3 i {
    color: #dc2626;
    font-size: 32px;
}

.service-detail-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-text li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-detail-text li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.service-detail-image {
    text-align: center;
    background-color: #f3f4f6;
    padding: 60px 40px;
    border-radius: 8px;
}

.service-detail-image i {
    font-size: 80px;
    color: #dc2626;
}

.process-section {
    background-color: #f9fafb;
    padding: 60px 0;
}

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

.process-step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.step-number {
    background-color: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.process-step p {
    color: #666;
}

.cta-section {
    background-color: #dc2626;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: #dc2626;
}

.nav a.active {
    color: #dc2626;
    font-weight: bold;
}

/* Service Detail Pages */
.service-details {
    background-color: white;
    padding: 60px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-info h2 {
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    font-size: 28px;
}

.service-info p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 40px;
}

.service-features h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #10b981;
    font-size: 16px;
}

.service-process h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 20px;
}

.service-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-process .process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.service-process .step-number {
    background-color: #dc2626;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.service-process .step-content h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.service-process .step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #dc2626;
    text-align: center;
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 15px;
}

.pricing-card p {
    color: #666;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.pricing-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card li i {
    color: #10b981;
    font-size: 16px;
}

/* About Page Styles */
.about-content {
    background-color: white;
    padding: 60px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h2 {
    color: #333;
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.owner-highlight {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    margin-top: 30px;
}

.owner-highlight h3 {
    color: #333;
    margin-bottom: 15px;
}

.about-image {
    text-align: center;
}

.owner-image {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.owner-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.owner-photo:hover {
    transform: scale(1.02);
}

.our-values {
    background-color: #f9fafb;
    padding: 60px 0;
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.value-card p {
    color: #666;
}

.our-process {
    background-color: white;
    padding: 60px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-number {
    background-color: #dc2626;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-content p {
    color: #666;
}

.service-area {
    background-color: #f9fafb;
    padding: 60px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-column h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.area-column li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-area-note {
    background-color: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.service-area-note p {
    color: #333;
    margin: 0;
}

.why-choose-about {
    background-color: white;
    padding: 60px 0;
}

.choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.choose-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.choose-item i {
    color: #dc2626;
    font-size: 24px;
    margin-top: 5px;
}

.choose-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.choose-item p {
    color: #666;
}

.choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.contact-cta {
    background-color: #dc2626;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-cta h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-methods {
    background-color: #f9fafb;
    padding: 60px 0;
}

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

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.contact-link:hover {
    color: #b91c1c;
}

.contact-hours {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.contact-form-section {
    background-color: white;
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container h2 {
    color: #333;
    text-align: left;
    margin-bottom: 15px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item i {
    color: #dc2626;
    font-size: 20px;
    margin-top: 5px;
    width: 20px;
}

.info-item strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    margin: 0;
}

.info-item a {
    color: #dc2626;
    text-decoration: none;
}

.info-item a:hover {
    color: #b91c1c;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li i {
    color: #10b981;
    font-size: 16px;
}

.service-areas-contact {
    background-color: #f9fafb;
    padding: 60px 0;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-group h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.area-group li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-contact {
    background-color: white;
    padding: 60px 0;
}

/* Pricing Page Styles */
.pricing-overview {
    background-color: #f9fafb;
    padding: 60px 0;
}

.pricing-hero {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-large {
    font-size: 72px;
    font-weight: bold;
    color: #dc2626;
}

.pricing-factors {
    background-color: white;
    padding: 60px 0;
}

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

.factor-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.factor-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.factor-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.factor-card p {
    color: #666;
}

.pricing-examples {
    background-color: #f9fafb;
    padding: 60px 0;
}

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

.example-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.example-card.featured {
    border: 2px solid #dc2626;
    transform: scale(1.05);
}

.example-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc2626;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.example-image {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.example-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.example-price {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 20px;
}

.example-card ul {
    list-style: none;
    text-align: left;
}

.example-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.example-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    background-color: white;
    padding: 60px 0;
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-pricing-item {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-pricing-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-pricing-item h3 i {
    color: #dc2626;
}

.pricing-range {
    font-size: 20px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 15px;
}

.service-pricing-item p {
    color: #666;
}

.dumpster-pricing {
    background-color: #f9fafb;
    padding: 60px 0;
}

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

.dumpster-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.dumpster-card.featured {
    border: 2px solid #dc2626;
    transform: scale(1.05);
}

.dumpster-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc2626;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.dumpster-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.dumpster-price {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 20px;
}

.dumpster-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.dumpster-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.dumpster-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.whats-included {
    background-color: white;
    padding: 60px 0;
}

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

.included-item {
    text-align: center;
}

.included-item i {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 20px;
}

.included-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.included-item p {
    color: #666;
}

.special-offers-pricing {
    background-color: #f9fafb;
    padding: 60px 0;
}

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

.offer-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #fef3c7;
}

.offer-amount {
    font-size: 36px;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 15px;
}

.offer-details h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.offer-details p {
    color: #666;
    margin-bottom: 20px;
}

.quote-cta {
    background-color: #dc2626;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote-cta h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.quote-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .close-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 40px;
        color: #dc2626;
        cursor: pointer;
        font-weight: bold;
        z-index: 1001;
        line-height: 1;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .close-btn:hover {
        background-color: #f3f4f6;
        transform: scale(1.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 24px;
        font-weight: 600;
    }
    
    .header-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-banner .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-contact {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .service-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-section {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .local-content {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-categories {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
    }
    
    .choose-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-process .process-steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .areas-grid,
    .areas-list {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .factors-grid,
    .examples-grid,
    .service-pricing-grid,
    .dumpster-grid,
    .included-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .example-card.featured,
    .dumpster-card.featured {
        transform: none;
    }
    
    .price-large {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .services-grid,
    .steps-grid,
    .services-grid-detailed,
    .steps-simple {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .phone-highlight {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Services Categories Home */
.services-categories-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-3px);
}

.service-category h3 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3 i {
    font-size: 20px;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-links a {
    color: #374151;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.service-links a:hover {
    background-color: #f3f4f6;
    border-left-color: #dc2626;
    color: #dc2626;
    transform: translateX(5px);
}

/* Quote Form Iframe */
.quote-form-iframe {
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.quote-form-iframe iframe {
    display: block;
    border: none;
    background: white;
}

/* Service Map Section */
.service-map {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-map h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 32px;
}

.service-map p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 18px;
}

.service-map .map-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive styles for services categories */
@media (max-width: 768px) {
    .services-categories-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-category {
        padding: 20px;
    }
    
    .service-category h3 {
        font-size: 16px;
    }
    
    .service-links a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .quote-form-iframe iframe {
        height: 600px;
    }
    
    .service-map {
        padding: 60px 0;
    }
    
    .service-map h2 {
        font-size: 28px;
    }
    
    .service-map p {
        font-size: 16px;
    }
    
    .service-map .map-container iframe {
        height: 300px;
    }
}
