/* Additional Custom Styles */

/* Header Phone Button */
.header-phone:hover {
    background: #ff8555 !important;
    box-shadow: 0 4px 12px rgba(255,107,53,0.4) !important;
    transform: translateY(-2px);
}

/* Hero Section Variations */
.hero-section.hero-business {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.hero-section.hero-residential {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

/* Section Spacing */
.section {
    padding: 2.5rem 20px;
}

.section-alt {
    background-color: var(--bg-light);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem 20px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.service-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.contact-info-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-info-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Blog/Archive Styles */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.post-card h2 {
    margin-bottom: 1rem;
}

.post-card h2 a {
    color: var(--text-dark);
}

.post-card h2 a:hover {
    color: var(--primary-color);
}

.entry-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-excerpt {
    margin-bottom: 1rem;
}

/* Contact Form Textarea */
textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    resize: vertical;
}

/* Error States */
input.error,
textarea.error,
select.error {
    border-color: var(--error-color);
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Hero CTA Button Hover Effects */
.hero-cta-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3) !important;
}

/* Header Experience Navigation */
.header-experience-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.header-experience-nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Address Search Responsive */
@media (max-width: 768px) {
    .hero-section form > div {
        flex-direction: column !important;
        border-radius: 12px !important;
        padding: 0.75rem !important;
    }
    
    .hero-section form input {
        border-radius: 12px !important;
        padding: 1rem 1.25rem !important;
    }
    
    .hero-section form button {
        border-radius: 12px !important;
        padding: 1rem 2rem !important;
        width: 100%;
    }
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES FOR BUSINESS PAGE
   ============================================ */

/* Tablets and below (768px) */
@media (max-width: 767px) {
    
    /* Make hero section more compact */
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
    }
    
    /* Business feature cards - 2 columns on mobile */
    [style*="minmax(180px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    /* Make all feature cards more compact on mobile */
    [style*="padding: 1.25rem"] {
        padding: 0.9rem !important;
    }
    
    /* Resize icons on mobile */
    [style*="font-size: 2rem"] {
        font-size: 1.6rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* Resize card titles */
    h5[style*="font-size: 0.95rem"] {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }
    
    /* Resize card descriptions */
    p[style*="font-size: 0.8rem"] {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }
    
    /* Section headings smaller */
    h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Reduce section padding */
    .section {
        padding: 2rem 0 !important;
    }
    
    /* Make containers have less side padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Stack industries section in single column */
    [style*="minmax(200px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    /* Make CTA buttons full width on mobile */
    .btn-large {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
    
    /* Stack CTA button groups vertically */
    [style*="display: flex"][style*="gap: 1rem"] {
        flex-direction: column !important;
    }
    
    /* Reduce Google Reviews section */
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Small phones (400px and below) */
@media (max-width: 400px) {
    
    /* Single column for very small screens */
    [style*="minmax(180px"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="minmax(200px"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Even smaller text */
    .hero-section h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.3rem !important;
    }
    
    /* Tighter padding */
    .section {
        padding: 1.5rem 0 !important;
    }
    
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

/* ============================================
   MOBILE HEADER & HAMBURGER MENU
   ============================================ */

/* Hide mobile header on desktop */
.mobile-header {
    display: none;
}

/* Show mobile header, hide desktop header on mobile */
@media (max-width: 767px) {
    .mobile-header {
        display: block;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .desktop-header {
        display: none !important;
    }
    
    /* Mobile top bar (phone icon + my account) */
    .mobile-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--primary-color);
        padding: 0.5rem 1rem;
    }
    
    .mobile-phone-icon {
        font-size: 1.4rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .mobile-phone-icon:hover {
        transform: scale(1.1);
    }
    
    .mobile-account-btn {
        background: #ff6b35;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(255,107,53,0.3);
        transition: all 0.3s;
    }
    
    .mobile-account-btn:hover {
        background: #e05a2e;
        transform: translateY(-2px);
    }
    
    /* Mobile main bar (hamburger + logo) */
    .mobile-main-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        background: white;
    }
    
    .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .mobile-menu-spacer {
        width: 44px; /* Same width as hamburger for centering */
    }
    
    /* Hamburger menu icon */
    .hamburger-menu {
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px;
        position: relative;
        z-index: 1001;
    }
    
    .hamburger-menu span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: all 0.3s;
        border-radius: 2px;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Mobile slide-out menu */
    .mobile-slide-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1002;
        overflow-y: auto;
    }
    
    .mobile-slide-menu.active {
        left: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 1rem;
        background: var(--primary-color);
        color: white;
    }
    
    .mobile-menu-header h3 {
        margin: 0;
        font-size: 1.3rem;
        color: white;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 2.5rem;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-list li {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-list a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 1.05rem;
        transition: background 0.2s;
    }
    
    .mobile-menu-list a:hover {
        background: #f5f5f5;
        color: var(--primary-color);
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 1001;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Careers page */
.careers-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    padding: 3.5rem 0;
}

.careers-hero .hero-content {
    text-align: center;
}

.careers-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.careers-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.careers-section {
    padding: 3rem 0 4rem;
    background: #f4f6f9;
}

.careers-container-wide {
    max-width: 1100px;
}

.careers-notice {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.careers-notice a {
    color: inherit;
    font-weight: 600;
}

.careers-notice-success {
    background: #edf7ed;
    color: #1e4620;
    border: 1px solid #c8e6c9;
}

.careers-notice-error {
    background: #fdecea;
    color: #611a15;
    border: 1px solid #f5c6cb;
}

.careers-empty {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.careers-empty h2 {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.careers-empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Master-detail board */
.careers-board {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    min-height: 520px;
}

.careers-list-panel {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.careers-list-header {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.careers-list-header h2 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.careers-list-count {
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: nowrap;
}

.careers-position-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    overflow-y: auto;
    max-height: 560px;
    flex: 1;
}

.careers-position-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    font-family: inherit;
}

.careers-position-item:hover {
    background: #eef2ff;
}

.careers-position-item.is-active {
    background: #fff;
    border-left-color: var(--primary-color);
    box-shadow: inset -1px 0 0 #fff;
}

.careers-position-title {
    display: block;
    font-size: 0.975rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.careers-position-item.is-active .careers-position-title {
    color: var(--primary-color);
}

.careers-position-meta {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

.careers-detail-panel {
    padding: 0;
    background: #fff;
    min-width: 0;
}

.careers-detail-view {
    padding: 2rem 2.25rem;
}

.careers-detail-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.careers-detail-header h2 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.careers-job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.careers-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.careers-badge-location {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.careers-badge-type {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.careers-badge-compensation {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.careers-job-description {
    color: #334155;
    line-height: 1.75;
    font-size: 0.975rem;
    margin-bottom: 2rem;
}

.careers-job-description p {
    margin-bottom: 1rem;
}

.careers-job-description p:last-child,
.careers-job-description ul:last-child {
    margin-bottom: 0;
}

.careers-job-description ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.careers-job-description li {
    margin-bottom: 0.35rem;
}

.careers-apply-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
}

.careers-apply-section h3 {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.careers-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.careers-form-group {
    margin-bottom: 1rem;
}

.careers-form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.875rem;
}

.careers-file-hint {
    display: block;
    margin-top: 0.35rem;
    color: #64748b;
    font-size: 0.8rem;
}

.careers-form-group input[type="text"],
.careers-form-group input[type="email"],
.careers-form-group input[type="tel"],
.careers-form-group textarea,
.careers-form-group input[type="file"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.925rem;
    box-sizing: border-box;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.careers-form-group input:focus,
.careers-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

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

.careers-submit-btn {
    margin-top: 0.25rem;
    min-width: 180px;
}

.careers-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .careers-board {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .careers-list-panel {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .careers-position-list {
        max-height: 220px;
    }

    .careers-detail-view {
        padding: 1.5rem 1.25rem;
    }

    .careers-detail-header h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2rem;
    }

    .careers-form-row {
        grid-template-columns: 1fr;
    }

    .careers-submit-btn {
        width: 100%;
    }
}

/* ============================================
   FALL 2026 PHOTO HEROES + LINE ICONS
   ============================================ */

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.85rem;
    color: var(--primary-color, #0066cc);
}

.feature-icon svg {
    width: 2.15rem;
    height: 2.15rem;
}

.feature-icon-lg {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
}

.feature-icon-lg svg {
    width: 2.5rem;
    height: 2.5rem;
}

.hero-section.hero-photo .hero-content h1,
.hero-section.hero-photo .hero-content p {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-section.hero-photo.hero-photo-residential,
.experience-residential .hero-section.hero-photo-residential {
    background-color: #0a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section.hero-photo-residential[data-hero-option="1"],
.experience-residential .hero-section.hero-photo-residential[data-hero-option="1"] {
    background-image: url("../images/heroes/home-option-1.jpg");
}
.hero-section.hero-photo-residential[data-hero-option="2"],
.experience-residential .hero-section.hero-photo-residential[data-hero-option="2"] {
    background-image: url("../images/heroes/home-option-2.jpg");
}
.hero-section.hero-photo-residential[data-hero-option="3"],
.experience-residential .hero-section.hero-photo-residential[data-hero-option="3"] {
    background-image: url("../images/heroes/home-option-3.jpg");
}
.hero-section.hero-photo-residential[data-hero-option="4"],
.experience-residential .hero-section.hero-photo-residential[data-hero-option="4"] {
    background-image: url("../images/heroes/home-option-4.jpg");
    background-position: center 40%;
}
.hero-section.hero-photo-residential[data-hero-option="5"],
.experience-residential .hero-section.hero-photo-residential[data-hero-option="5"] {
    background-image: url("../images/heroes/home-option-5.jpg");
}

.hero-option-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    min-width: 7.5rem;
    height: auto;
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-option-picker {
    position: relative;
    z-index: 2;
    margin: 0 auto 0;
    max-width: 520px;
}

.hero-option-picker p {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-option-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-option-buttons button {
    width: 2.6rem;
    height: 2.6rem;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
}

.hero-option-buttons button.is-active {
    background: #ff6b35;
    border-color: #fff;
}

.hero-section.hero-photo.hero-photo-business,
.experience-business .hero-section.hero-photo-business {
    background-color: #0a1a2e;
    background-image: url("../images/heroes/business-768.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section.hero-photo.hero-photo-enterprise,
.experience-enterprise .hero-section.hero-photo-enterprise {
    background-color: #0a1a2e;
    background-image: url("../images/heroes/enterprise-768.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section.hero-photo.hero-photo-contact {
    background-color: #0a1a2e;
    background-image: url("../images/heroes/contact-768.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section.hero-photo.hero-photo-careers,
.careers-hero.hero-photo-careers {
    background-color: #0a1a2e;
    background-image: url("../images/heroes/careers-768.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section.hero-photo.hero-photo-about {
    background-color: #0a1a2e;
    background-image: url("../images/heroes/about-768.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .hero-section.hero-photo.hero-photo-business,
    .experience-business .hero-section.hero-photo-business {
        background-image: url("../images/heroes/business-1920.webp");
    }

    .hero-section.hero-photo.hero-photo-enterprise,
    .experience-enterprise .hero-section.hero-photo-enterprise {
        background-image: url("../images/heroes/enterprise-1920.webp");
    }

    .hero-section.hero-photo.hero-photo-contact {
        background-image: url("../images/heroes/contact-1920.webp");
    }

    .hero-section.hero-photo.hero-photo-careers,
    .careers-hero.hero-photo-careers {
        background-image: url("../images/heroes/careers-1920.webp");
    }

    .hero-section.hero-photo.hero-photo-about {
        background-image: url("../images/heroes/about-1920.webp");
    }
}

.careers-hero.hero-photo {
    background: #0a1a2e;
    background-size: cover;
    background-position: center;
    padding: 5.5rem 20px;
}

@media (max-width: 768px) {
    .hero-section.hero-photo,
    .careers-hero.hero-photo {
        min-height: 380px;
        padding: 3.5rem 16px !important;
    }
}

