/* Orange Theme Overrides */

/* Header/Navigation Bar - Separated from Hero */
.main-header {
    background-color: rgba(255, 92, 0, 0.95); /* Semi-transparent background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
    display: block !important;
    visibility: visible !important;
    margin-bottom: 20px; /* Add space between nav and hero content */
}

/* Straight line navigation */
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
}

/* ==== Anchor header container to left ==== */
.main-header .container {
  /* instead of margin:0 auto; */
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* ==== Reset logo margins ==== */
.logo {
  /* remove any clamp or left‑margin hacks */
  margin-left: 0 !important;
  margin-right: 60px; /* keep your desired gap to the nav */
}


.logo img {
    height: 50px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}


/* ============ Burger + Sidebar (≤576px) ============ */
@media (max-width: 576px) {
  /* 1) Hide inline menu, show burger */
  .main-header nav { display: none !important; }
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px; height: 20px;
    cursor: pointer;
    margin-left: auto;
  }
  .burger-menu span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 2px;
  }

  /* 2) Sidebar panel (off‑canvas) */
  .sidebar {
    position: fixed;
    top: 0; left: -260px;  /* hide off‑screen */
    width: 260px; height: 100%;
    background: white;
    box-shadow: 2px 0 12px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 200;
    padding: 20px;
  }
  .sidebar .close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    top: 12px; right: 12px;
  }
  .sidebar ul {
    list-style: none;
    padding: 60px 0 0;
  }
  .sidebar li {
    margin-bottom: 20px;
  }
  .sidebar a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* 3) Logo sizing adjustment */
  .logo img {
    height: 40px;
  }

  /* 4) When active, slide sidebar in */
  body.sidebar-open .sidebar {
    left: 0;
  }
  /* and prevent body scroll if you like */
  body.sidebar-open {
    overflow: hidden;
  }
}





.main-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-menu li {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 30px;
}

.main-menu a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0;
    text-transform: none;
}

.contact-button {
    margin-left: auto;
    padding-right: 15px;
}

.contact-btn {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.contact-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.main-menu {
    display: flex !important;
    visibility: visible !important;
}

.main-menu a {
    color: white;
    font-weight: 500;
    display: block;
}

.main-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.main-menu .submenu {
    background-color: white;
    margin-top: 10px;
}

.main-menu .submenu a {
    color: #333;
}

.main-menu .submenu a:hover {
    color: var(--primary-color);
}

.main-menu .submenu h4 {
    color: var(--primary-color);
}

/* Remove down arrow from Services button */
.main-menu .menu-item-has-children > a:before {
    display: none;
}

.mobile-menu-toggle i {
    color: white;
}

:root {
    --primary-color: #ff5c00;
    --primary-dark: #e65c00;
    --primary-light: #fff4eb;
    --secondary-color: #4a4a4a;
}

/* Hero Section Overrides */
/* Hero Section Styles */
.hero {
    background-color: var(--primary-color);
    padding: 0 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 30px 0 20px;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    overflow: visible;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.hero-image {
    flex: 1;
    max-width: 850px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
}

/* Hero Services Styles */
.hero-services {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: space-between;
}

.hero-services-row-2 {
    margin-top: 20px;
}

.hero-service-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 24%;
    transition: all 0.3s ease;
}

.hero-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-service-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 8px;
}

.hero-service-image img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-service-info {
    padding: 8px;
    text-align: center;
    background-color: white;
}

.hero-service-info h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.hero-service-btn {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-service-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive styles for hero services */
@media (max-width: 1200px) {
    .hero-service-image { height: 100px; }
    .hero-service-image img { max-height: 80px; }
    .hero-service-info h3 { font-size: 0.9rem; }
}

@media (max-width: 992px) {
    .hero-services { gap: 8px; }
    .hero-service-image { height: 90px; }
    .hero-service-image img { max-height: 70px; }
    .hero-service-info { padding: 10px 8px; }
    .hero-service-info h3 { font-size: 0.8rem; margin-bottom: 8px; }
    .hero-service-btn { padding: 5px 12px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
    .hero-services { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hero-service-card { width: 48%; margin-bottom: 0; }
    .hero-service-image { height: 100px; }
    .hero-service-info h3 { font-size: 0.9rem; }
    .hero-services-row-2 { margin-top: 10px; }
}

/* PHONE-ONLY OVERRIDES (≤576px) */
@media (max-width: 576px) {
    /* Add side padding so container isn't flush to edges */
    .hero-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Two cards per row */
    .hero-services {
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero-service-card {
        width: 48%;
    }

    /* Larger, wrap‑friendly text */
    .hero-content h1 {
        font-size: 3rem;
        white-space: normal;
        margin: 20px 0;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    /* Allow hero image to scale freely */
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    /* Bigger service‑card images */
    .hero-service-image {
        height: 120px;
    }
    .hero-service-image img {
        max-height: 100px;
    }

    /* Headings in cards */
    .hero-service-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    /* More tappable buttons */
    .hero-service-btn {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

/* SMALLER PHONES (≤480px) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.3rem; }
    .hero-service-image img { max-height: 90px; }
    .hero-service-btn { padding: 7px 18px; font-size: 0.95rem; }
    .hero-service-card { width: 48%; }
}

/* Form styles removed */

/* For Internet Explorer */
.form-control:-ms-input-placeholder {
    color: rgba(255, 92, 0, 0.6);
}

/* For Microsoft Edge */
.form-control::-ms-input-placeholder {
    color: rgba(255, 92, 0, 0.6);
}

.get-quote-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ff5c00;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-quote-btn:hover {
    background-color: #e65200;
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.availability-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.availability-notice i {
    color: var(--primary-color);
}

/* Service Categories Section */
.service-categories-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
}

.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.service-card {
    flex: 1;
    min-width: 200px;
    max-width: 230px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-info {
    padding: 15px;
    text-align: center;
}

.service-info h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: var(--primary-dark);
}

/* Navigation Contact Button */
.contact-button {
    margin-left: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn:hover {
    background-color: var(--primary-dark);
}

/* Button styles */
.cta-button, 
.service-btn, 
.learn-more, 
.chat-button, 
.partner-link, 
.business-link,
.submit-btn,
.quote-button,
.book-now-btn,
.contact-btn {
    background-color: var(--primary-color);
}

.cta-button:hover, 
.service-btn:hover, 
.chat-button:hover, 
.partner-link:hover, 
.business-link:hover,
.submit-btn:hover,
.quote-button:hover,
.book-now-btn:hover {
    background-color: var(--primary-dark);
}

/* Icon colors */
.service-nav-item i,
.step-icon,
.service-features li i,
.contact-option i,
.option-icon i,
.contact-details li i,
.location-details p i {
    color: var(--primary-color);
}

/* Text link colors */
.learn-more,
.map-link,
.contact-details a:hover,
.view-all-faq {
    color: var(--primary-color);
}

.learn-more:hover,
.map-link:hover,
.view-all-faq:hover {
    color: var(--primary-dark);
}

/* Background colors */
.step-number,
.category-tab.active,
.form-header {
    background-color: var(--primary-color);
}

/* Border colors */
.faq-group h2 {
    border-bottom: 2px solid var(--primary-color);
}

.faq-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 119, 0, 0.2);
}

/* Highlighted backgrounds */
.faq-item.active .faq-question {
    background-color: rgba(255, 119, 0, 0.05);
}

/* Fix white backgrounds that were incorrectly changed */
.service-nav-item,
.process-step,
.category-tab,
.contact-option-card,
.location-card,
.quick-link {
    background-color: var(--white);
}

.service-nav-item:hover,
.quick-link:hover {
    background-color: var(--primary-light);
}

/* Fix light backgrounds */
.faq-search,
.still-questions,
.faq-quick-links {
    background-color: var(--primary-light);
}

/* Fix alternate backgrounds */
.service-detail.alt-bg {
    background-color: var(--light-gray);
}

/* Active menu items */
.main-menu a.active {
    color: var(--primary-color);
}

/* Notification colors */
.notification.success {
    background-color: var(--primary-color);
}
