/* --- BRAND COLORS --- */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root { 
    /* Core Brand Colors */
    --primary-color: #005f9e; 
    --accent-color: #0088cc; 
    --cta-color: #e67e22; 
    
    /* Light Theme (Default) */
    --bg-body: #e3eaf2; 
    --bg-card: #ffffff;
    --bg-nav: rgba(26, 26, 26, 0.8);
    --bg-footer: #1a1a1a;
    
    --text-main: #1a202c; 
    --text-muted: #4a5568; 
    --text-on-dark: #ffffff;
    
    --white: #ffffff; /* Keep for legacy absolute white references */
    --dark-bg: #1a1a1a; /* Keep for legacy */
    --light-bg: var(--bg-body); /* Map to new var */
    --text-color: var(--text-main); /* Map to new var */
    
    --border-color: #eeeeee; /* Light Mode Border */
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --nav-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);

    /* Banner Variables */
    --top-bar-bg: #004a7c;
    --top-bar-gradient: linear-gradient(135deg, #004a7c 0%, #003a63 100%);
    --top-bar-text: rgba(255,255,255,0.9);
    --verse-text: rgba(255,255,255,0.8);
    --banner-overlay: rgba(0,0,0,0.6);
}

[data-theme="dark"] {
    /* Dark Theme - Matte Gunmetal */
    --bg-body: #121212; /* Near-Black Matte Charcoal */
    --bg-card: #1e1e1e; /* Deep Gunmetal Gray */
    --bg-nav: rgba(18, 18, 18, 0.9);
    --bg-footer: #0a0a0a;
    
    --text-main: #e0e0e0; /* Light Gray/Silver */
    --text-muted: #cccccc; /* Light Silver for Body */
    --text-color: var(--text-main);
    
    --border-color: #333333; /* Distinct Gunmetal Border */
    
    --light-bg: var(--bg-body);
    --card-shadow: 0 4px 20px rgba(0,0,0,0.5);
    --nav-shadow: 0 4px 20px rgba(0,0,0,0.3);

    /* Banner Variables */
    --top-bar-bg: #000000;
    --top-bar-gradient: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --top-bar-text: rgba(255,255,255,0.9);
    --verse-text: rgba(255,255,255,0.7);
    --banner-overlay: rgba(0,0,0,0.5);
}

/* --- DARK MODE GLOBAL OVERRIDES --- */
[data-theme="dark"] .white-bg, 
[data-theme="dark"] .bg-white,
[data-theme="dark"] .content-section,
[data-theme="dark"] .mission-section,
[data-theme="dark"] .features-section,
[data-theme="dark"] .services-section,
[data-theme="dark"] .it-preview,
[data-theme="dark"] .solutions-section,
[data-theme="dark"] .pricing-section,
[data-theme="dark"] .gallery-preview,
[data-theme="dark"] .highlight-section,
[data-theme="dark"] .logo-strip,
[data-theme="dark"] .breakfix-welcome,
[data-theme="dark"] .hours-box,
[data-theme="dark"] .cta-footer,
[data-theme="dark"] .value-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .tool-card,
[data-theme="dark"] .it-card,
[data-theme="dark"] .quote-summary-box,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .faq-answer {
    background-color: var(--bg-card) !important;
    background: var(--bg-card) !important;
    color: var(--text-main) !important;
    border-color: var(--border-color);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6,
[data-theme="dark"] strong,
[data-theme="dark"] b {
    color: var(--text-main) !important;
}

[data-theme="dark"] p, 
[data-theme="dark"] li, 
[data-theme="dark"] span, 
[data-theme="dark"] label {
    color: var(--text-muted);
}

/* Form Inputs in Dark Mode */
[data-theme="dark"] input, 
[data-theme="dark"] select, 
[data-theme="dark"] textarea {
    background-color: #2d2d2d !important;
    color: var(--text-main) !important;
    border: 1px solid #444 !important;
}

/* Dropdown Menus in Dark Mode */
[data-theme="dark"] .dropdown-content {
    background-color: #2d2d2d !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .dropdown-content a {
    color: var(--text-main) !important;
}

[data-theme="dark"] .dropdown-content a:hover {
    background-color: #3d3d3d !important;
}

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Ubuntu', sans-serif; 
    line-height: 1.6; 
    color: var(--text-main); 
    background-color: var(--bg-body); 
    /* Subtle Global Background */
    background-image: linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)), url('river.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    margin: 0; 
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
    background-image: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('river.png');
    background-blend-mode: multiply;
}

/* --- TYPOGRAPHY --- */
h1, h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

p, li, span, a, input, select, textarea, button {
    font-family: 'Ubuntu', sans-serif;
}

/* --- GLOBAL RESET --- */
a { text-decoration: none !important; }
a:hover { text-decoration: none !important; }

/* --- NAVIGATION --- */
.navbar {
    background: var(--bg-nav); /* Semi-Transparent Dark */
    backdrop-filter: blur(12px); /* Blur Effect */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--nav-shadow);
    padding: 0 5%;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* --- TOP BAR (Hours) --- */
.top-bar {
    background: var(--top-bar-gradient);
    color: var(--top-bar-text);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    gap: 15px;
    transition: all 0.3s ease;
}
.top-bar i {
    color: var(--accent-color);
    margin-right: 8px;
}
.verse-span {
    flex: 1;
    text-align: center;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--verse-text);
    max-width: 50%;
    transition: color 0.3s ease;
}
@media (max-width: 900px) {
    .verse-span {
        display: none; /* Hide verse on mobile to save space */
    }
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: 40px;
}

/* Links Section (Center) */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0 auto;
}

.nav-links a, .dropbtn {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 10px 0;
}

.nav-links a:hover, .dropdown:hover .dropbtn {
    color: var(--accent-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-bg);
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-top: 2px solid var(--accent-color);
}

.dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background-color: #2c2c2c;
    color: var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Action Section (Right) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-login {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-login:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.nav-phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--accent-color);
}

/* --- PARTNER LOGO STRIP --- */
.logo-strip {
    padding: 40px 5%;
    background-color: var(--white); /* Force white background for contrast */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.logo-strip p {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.7;
}
.logo-grid img {
    height: 35px; /* Adjust based on logo aspect ratios */
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s, opacity 0.3s;
    opacity: 0.8;
}
.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- FAQ SECTION --- */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}
.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Add shadow for lift on blue bg */
}
.faq-question {
    padding: 20px;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background: var(--bg-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    background-color: #f9f9f9;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fdfdfd;
    color: var(--text-muted);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    padding: 20px; /* Add padding when open */
    max-height: 500px; /* Arbitrary large height */
    border-top: 1px solid var(--border-color);
}
.faq-icon {
    transition: transform 0.3s;
    color: var(--accent-color);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- INTERACTIVE PRICING --- */
.price-card {
    background: var(--bg-card); border-radius: 10px; padding: 40px; text-align: center; box-shadow: var(--card-shadow); border-top: 5px solid var(--border-color); transition: transform 0.3s; position: relative;
    border: 2px solid transparent; /* Prepare for border change */
    background-color: var(--white); /* Ensure white bg */
}
.price-card.selected {
    border-color: var(--primary-color);
    background-color: #f8fbff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,95,158,0.15);
}
.select-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}
.select-btn:hover {
    background: var(--primary-color);
    color: white;
}
.price-card.selected .select-btn {
    background: var(--primary-color);
    color: white;
}
.qty-container {
    display: none; /* Hidden by default */
    margin-top: 15px;
    text-align: center;
    background: #eef6ff;
    padding: 10px;
    border-radius: 5px;
}
.price-card.selected .qty-container {
    display: block; /* Show when selected */
    animation: fadeIn 0.3s ease;
}
.qty-container label {
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 10px;
}
.qty-input {
    width: 60px;
    padding: 5px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-builder-section {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--accent-color);
}
.quote-summary-box {
    background: var(--bg-body);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}
.selected-items-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    color: var(--text-muted);
}
.selected-items-list li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}
.empty-selection-msg {
    color: #999;
    font-style: italic;
}

/* CTA Button */
.nav-btn {
    background: linear-gradient(135deg, var(--cta-color) 0%, #d35400 100%);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    filter: brightness(1.1);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 1001;
}

/* --- GALLERY IMAGES --- */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 80px 5%;
    background-color: var(--light-bg); /* Matches global background */
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    text-align: left;
}
.testimonial-card i {
    color: #e0e0e0;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}
.testimonial-company {
    font-size: 0.9rem;
    color: #888;
}

/* --- CLICKABLE CARDS --- */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}
.card-link:hover {
    text-decoration: none;
}
.card-link h3, .card-link p, .card-link i {
    text-decoration: none;
}

/* --- PARALLAX MISSION SECTION --- */
.mission-section {
    position: relative;
    background-image: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 5%;
    text-align: center;
    border-radius: 16px;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    z-index: 10;
}

.hero {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding: 120px 20px 140px; 
    text-align: center;
    overflow: hidden;
    background-color: #000; /* Fallback */
    color: var(--white);
    transition: background 0.3s ease;
}

.hero-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    clip-path: polygon(0 94.5%, 100% 89.5%, 100% 95.5%, 0 100.5%);
    z-index: 5;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--banner-overlay), var(--banner-overlay)), url('porch.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 20s infinite alternate ease-in-out;
    will-change: transform;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -2%); }
}

.hero h1 { position: relative; z-index: 1; font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { position: relative; z-index: 1; font-size: 1.5rem; margin-bottom: 30px; max-width: 800px; margin: 0 auto 30px auto; opacity: 0.95; }
.hero-buttons { position: relative; z-index: 1; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-primary { background-color: var(--accent-color); color: var(--white); padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 1.1rem; }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 1.1rem; }
.btn-primary:hover { background-color: var(--primary-color); }
.btn-outline:hover { background-color: var(--bg-card); border: 1px solid var(--border-color); color: var(--primary-color); }

/* --- GLOBAL PAGE HEADER UPGRADE (Internal Pages) --- */
.page-header {
    background-attachment: fixed !important; /* Force Parallax */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); /* Unified Slant */
    padding: 160px 20px 140px !important; /* More top padding to show image */
    min-height: 250px;
    margin-bottom: 60px; /* Spacing after the header */
    background-color: var(--text-main); /* Fallback */
    text-align: center; /* Ensure header text is centered */
    /* FORCE TEXT COLOR for readability on dark images */
    color: var(--white) !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.4rem;
    color: var(--white) !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* --- FOOTER UPGRADE --- */
.main-footer {
    background-color: var(--dark-bg);
    color: #aaa;
    padding: 60px 5% 20px 5%;
    margin-top: 0; /* Remove top margin to let blue bg flow to it */
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: #888;
    margin: 0 10px;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hamburger { display: block; }
    
    .navbar { padding: 0 20px; }

    .nav-menu-container {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
        margin: 0;
        justify-content: flex-start;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        padding-top: 0;
    }
    
    .nav-menu-container.active {
        height: auto;
        padding-bottom: 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-links a, .dropbtn {
        display: block;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dropdown { width: 100%; }

    .dropdown-content {
        position: static;
        background-color: var(--text-main);
        box-shadow: none;
        display: none; 
        border-top: none;
    }
    
    .dropdown:hover .dropdown-content { display: block; }

    .nav-actions {
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .nav-login { display: block; padding: 10px 0; }

    .nav-btn {
        margin: 0 auto;
        display: inline-block;
        width: 80%;
        text-align: center;
    }
    
    .testimonial-card { text-align: center; }
}

/* --- PRICING SECTION --- */
.pricing-section { padding: 80px 5%; background-color: var(--light-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; align-items: start; }

.price-card {
    background: var(--bg-card); border-radius: 10px; padding: 40px; text-align: center; box-shadow: var(--card-shadow); border-top: 5px solid var(--border-color); transition: transform 0.3s; position: relative;
}
.price-card.popular { transform: scale(1.05); border-top: 5px solid var(--accent-color); box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 10; }

.price-card h3 { color: var(--text-main); font-size: 1.5rem; margin-bottom: 10px; }
.price-sub { color: #888; font-size: 0.9rem; margin-bottom: 30px; display: block; }
.price-list { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.price-list li { padding: 10px 0; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; }
.price-list li i { color: green; margin-right: 10px; }
.price-list li.missing { color: #ccc; text-decoration: line-through; }
.price-list li.missing i { color: #ccc; }

.price-btn { display: inline-block; background: var(--dark-bg); color: white; padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; width: 100%; }
.price-card.popular .price-btn { background: var(--accent-color); }
.price-btn:hover { opacity: 0.9; }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; text-transform: uppercase; }

/* New Pricing Styles */
.price-amount {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 15px 0;
}
.price-amount span {
    font-size: 1rem;
    color: #888;
    font-weight: normal;
}

@media (max-width: 768px) {
    .price-card.popular { transform: scale(1); margin: 20px 0; }
}

/* --- GENERIC CARD CONTAINER --- */
/* For standard text sections or areas needing white background */
.content-card, .white-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.box-highlight {
    background-color: #f0f8ff;
    border: 1px solid #d1e7fd;
    border-radius: 8px;
    padding: 40px;
    margin-top: 50px; /* Default margin, can be overridden */
}

[data-theme="dark"] .box-highlight {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-main);
}

/* Ensure sections have the right background */
.features-section, .services-section, .it-preview, .content-section, .solutions-section, .mission-section, .contact-section, .gallery-section, .pricing-section, .quote-builder-section, .status-container, .container, .news-section {
    background-color: var(--light-bg) !important;
    /* Default to centered text for headers, grids handle their own items */
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1200px;
}

/* Override for specific white areas if needed, but default to blue */
.gallery-preview {
    background-color: var(--white) !important; /* Keep gallery preview white for contrast */
}

/* --- APP-STYLE ICON TILES --- */
.icon-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px; /* Squircle appearance */
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0; /* Prevent squishing in flex containers */
}

.icon-tile svg, .icon-tile i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-tile:hover {
    transform: translateY(-2px);
}

/* Color Variants */
.tile-danger {
    background-color: #FFE5E5;
    color: #D93025;
}

.tile-primary {
    background-color: #E3F2FD;
    color: #1976D2;
}

.tile-warning {
    background-color: #FFF9C4;
    color: #FBC02D;
}

/* --- THIN LINE ICONS --- */
.icon-thin {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 20px;
    display: block; /* Ensure it sits on its own line */
}

/* --- SOLUTION LISTS (CHECKMARKS) --- */
.service-card ul, .solution-card ul, .it-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-card li, .solution-card li, .it-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-card li::before, .solution-card li::before, .it-card li::before {
    content: "\f00c"; /* FontAwesome Checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2ecc71; /* Fresh Green */
    font-size: 0.85rem;
}

/* --- UTILITY CLASSES --- */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-main { color: var(--text-main) !important; }
.text-white { color: var(--white) !important; }

/* Dark Mode fixes for Gallery */
[data-theme="dark"] .gallery-preview {
    background-color: var(--bg-card) !important;
    border-top: 1px solid var(--border-color);
}

/* --- ALERTS --- */
.alert-success { background-color: #d4edda; color: #155724; padding: 15px; border-radius: 4px; margin-bottom: 20px; border: 1px solid #c3e6cb; }
.alert-warning { background-color: #fff3cd; color: #856404; padding: 15px; border-radius: 4px; margin-bottom: 20px; border: 1px solid #ffeeba; }
.alert-danger { background-color: #f8d7da; color: #721c24; padding: 15px; border-radius: 4px; margin-bottom: 20px; border: 1px solid #f5c6cb; }

[data-theme="dark"] .alert-success { background-color: #155724; color: #d4edda; border-color: #1e7e34; }
[data-theme="dark"] .alert-warning { background-color: #856404; color: #fff3cd; border-color: #d39e00; }
[data-theme="dark"] .alert-danger { background-color: #721c24; color: #f8d7da; border-color: #bd2130; }

/* --- COMPARISON TABLE --- */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.comparison-table th, .comparison-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--border-color); }
.comparison-table th { background-color: #f1f1f1; color: var(--text-main); font-weight: bold; }
.comparison-table th.highlight { background-color: var(--primary-color); color: white; border-radius: 8px 8px 0 0; }
.comparison-table td.highlight-col { background-color: #f0f8ff; color: var(--primary-color); font-weight: bold; border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); }

[data-theme="dark"] .comparison-table th { background-color: #2c2c2c; }
[data-theme="dark"] .comparison-table td.highlight-col { background-color: #252525; color: var(--accent-color); }

/* --- LABELS --- */
label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-main); font-size: 0.95rem; }

/* --- STATUS PAGE --- */
.status-container { max-width: 800px; margin: 60px auto; padding: 0 20px; }
.status-header { text-align: center; margin-bottom: 50px; }
.status-header h1 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.last-updated { color: var(--text-muted); font-size: 0.9rem; }

.system-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.system-card:hover { transform: translateX(5px); }

.system-info h3 { margin: 0 0 5px 0; color: var(--text-main); }
.system-info p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.platform-link {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.platform-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}
.platform-link a:hover { text-decoration: underline; }

/* --- STATUS BADGES --- */
.status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #d4edda;
    color: #155724;
}
.status-badge.issue {
    background-color: #fff3cd;
    color: #856404;
}
.status-badge.down {
    background-color: #f8d7da;
    color: #721c24;
}

[data-theme="dark"] .status-badge { background-color: #155724; color: #d4edda; }
[data-theme="dark"] .status-badge.issue { background-color: #856404; color: #fff3cd; }
[data-theme="dark"] .status-badge.down { background-color: #721c24; color: #f8d7da; }

/* --- RESTORED LAYOUT UTILITIES --- */

/* Grids */
.features-grid, .services-grid, .solutions-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 40px auto 0 auto;
}

/* Cards */
.feature-card, .service-card, .solution-card, .it-card, .price-card, .tool-card, .blog-card, .system-card {
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: var(--card-shadow); 
    /* Cards usually have left-aligned text for readability */
    text-align: left; 
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover, .service-card:hover, .solution-card:hover, .it-card:hover, .price-card:hover, .tool-card:hover, .blog-card:hover, .system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
}

.feature-card i, .service-card svg, .solution-card svg {
    color: var(--primary-color); 
    margin-bottom: 15px; 
}

.feature-card h3, .service-card h3, .solution-card h3 {
    margin-bottom: 10px; 
    color: var(--text-main);
}

.feature-card p, .service-card p, .solution-card p {
    color: var(--text-muted);
}

/* Specific overrides */
.contact-section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; /* Keep default left align for form */ }

/* Audit Section Restore */
.audit-section { background-color: var(--primary-color); color: white; padding: 40px 20px; text-align: center; }
.audit-container { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }
.audit-text { text-align: left; }
.audit-text h3 { margin: 0; font-size: 1.5rem; }
.audit-btn-small { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--primary-color); padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: bold; }

/* IT Services Preview Restore */
.it-preview { background-color: #f0f8ff; padding: 80px 5%; text-align: center; border-top: 1px solid var(--border-color); }
[data-theme="dark"] .it-preview { background-color: var(--bg-card); }
.it-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1000px; margin: 40px auto; }
.it-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 30px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); text-align: left; border-left: 5px solid var(--primary-color); }
.it-card h3 { margin-bottom: 10px; color: var(--primary-color); }
.it-card ul { padding-left: 20px; color: var(--text-muted); }

/* Section Titles Restore */
.section-title { color: var(--primary-color); font-size: 2.2rem; margin-bottom: 20px; }
.section-sub { color: var(--text-muted); max-width: 700px; margin: 0 auto 50px auto; font-size: 1.1rem; }

/* BREAKFIX FIX */
.breakfix-welcome { 
    margin-left: auto !important; 
    margin-right: auto !important; 
    max-width: 900px;
}

/* CONTENT CYCLING */
.feature-card-inner {
    transition: opacity 0.5s ease-in-out;
}
.feature-card-inner.fade-out {
    opacity: 0;
}

/* --- RESOURCE PAGE --- */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}
.tool-card:hover { transform: translateY(-5px); }
.tool-card h3 { color: var(--text-main); margin-bottom: 10px; }
.tool-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.tool-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.tool-btn:hover { background-color: var(--accent-color); }

.news-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}
[data-theme="dark"] .news-section { background-color: #1a1a1a; }

.news-link { text-decoration: none; display: block; height: 100%; }
.news-link .tool-card { height: 100%; box-sizing: border-box; cursor: pointer; }
.news-link:hover .tool-card { border-color: var(--accent-color); }

.section-header { margin-bottom: 40px; }

/* --- BLOG PAGE --- */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); }

.blog-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 15px;
    display: block;
}
.blog-title:hover { text-decoration: underline; }

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-btn {
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
}
.read-btn:hover { text-decoration: underline; }

.newsletter-box {
    background-color: #f0f8ff;
    padding: 60px 40px;
    border-radius: 8px;
    margin-top: 80px;
    text-align: center;
    border: 1px solid var(--border-color);
}
[data-theme="dark"] .newsletter-box { background-color: #1a1a1a; }

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.newsletter-form button:hover { background-color: var(--accent-color); }

@media (max-width: 600px) {
    .newsletter-form { flex-direction: column; }
}

/* --- BLOG POST SPECIFICS --- */
.blog-meta { color: var(--text-muted); font-style: italic; margin-bottom: 40px; display: block; text-align: center; }
.cta-box { 
    background-color: #f0f8ff; 
    border-left: 5px solid var(--accent-color); 
    padding: 30px; 
    margin-top: 60px; 
    border-radius: 4px;
    text-align: left;
}
[data-theme="dark"] .cta-box { 
    background-color: var(--bg-card); 
    border-color: var(--accent-color);
}
.cta-box h3 { margin-top: 0; color: var(--primary-color); }

/* --- REFINED BLOG POST STYLING --- */
.blog-post-container {
    max-width: 800px;
    margin: 0 auto !important;
    text-align: left !important;
    padding: 60px 20px;
}

.blog-post-body {
    text-align: left !important;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.blog-post-body p {
    margin-bottom: 20px;
}

/* Callout Box */
.callout-box {
    background: var(--bg-card);
    border-left: 5px solid var(--accent-color);
    padding: 25px;
    margin: 40px 0;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.callout-box h4 {
    margin-top: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- CHECKBOX STYLING --- */
.checklist-category input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    background-color: var(--bg-card);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checklist-category input[type="checkbox"]:checked {
    background-color: var(--accent-color);
}

.checklist-category input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checklist-category input[type="checkbox"]:hover {
    box-shadow: 0 0 5px var(--accent-color);
}

.checklist-category li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.checklist-category span {
    color: var(--text-main);
    line-height: 1.5;
}

/* --- CUSTOM ICON SYSTEM --- */
.icon-custom {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.icon-large { font-size: 1.5rem; }
.icon-xl { font-size: 2rem; }
.icon-accent { color: var(--accent-color); }

/* SVG Icons defined as classes for consistency */
.icon-clock { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>'); }
.icon-shield { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>'); }
.icon-phone { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>'); }
.icon-location { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>'); }
.icon-check { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>'); }

.icon-digital { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="17 8 12 3 7 8"/><line x1="12" y1="3" x2="12" y2="15"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="17 8 12 3 7 8"/><line x1="12" y1="3" x2="12" y2="15"/></svg>'); }
.icon-power { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>'); }
.icon-comment { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.1a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.1a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"/></svg>'); }

/* --- HIGHLIGHT SECTION --- */
.highlight-section {
    padding: 80px 5%;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.highlight-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.highlight-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .highlight-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .highlight-text {
        text-align: center;
    }
}

.icon-sun { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/><line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/><line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/></svg>'); }
.icon-moon { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>'); }

/* --- CHECKBOX STYLING --- */
.checklist-category input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    background-color: var(--bg-card);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checklist-category input[type="checkbox"]:checked {
    background-color: var(--accent-color);
}

.checklist-category input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checklist-category input[type="checkbox"]:hover {
    box-shadow: 0 0 5px var(--accent-color);
}

.checklist-category li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.checklist-category span {
    color: var(--text-main);
    line-height: 1.5;
}

/* --- GALLERY PAGE --- */
.gallery-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    padding: 20px;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 250px;
    }
}

.icon-network { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="8" rx="2" ry="2"/><rect x="2" y="14" width="20" height="8" rx="2" ry="2"/><line x1="6" y1="6" x2="6.01" y2="6"/><line x1="6" y1="18" x2="6.01" y2="18"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="8" rx="2" ry="2"/><rect x="2" y="14" width="20" height="8" rx="2" ry="2"/><line x1="6" y1="6" x2="6.01" y2="6"/><line x1="6" y1="18" x2="6.01" y2="18"/></svg>'); }

.icon-bars { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="18" x2="21" y2="18"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="18" x2="21" y2="18"/></svg>'); }
.icon-caret { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>'); }
.icon-envelope { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>'); }

.icon-info { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/></svg>'); }

/* --- INDUSTRY PAGE REFINEMENTS --- */
.section-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.industry-solution-grid {
    text-align: left;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.industry-solution-item {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.industry-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-solution-item h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.industry-solution-item p {
    margin-bottom: 0;
    line-height: 1.8;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideUp 0.5s ease-out;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: var(--primary-color);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
}

/* --- SEARCH SYSTEM --- */
.icon-search { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>'); background-color: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>'); }

#search-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
}

.search-container {
    background: var(--bg-card);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.search-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-family: 'Ubuntu', sans-serif;
    outline: none;
}

.search-results {
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px;
}

.search-result-item {
    padding: 15px;
    border-radius: 8px;
    transition: background 0.2s;
    text-decoration: none;
    display: block;
}

.search-result-item:hover {
    background: rgba(0, 95, 158, 0.05);
}

.search-result-item h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.search-result-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-close {
    padding: 10px;
    cursor: pointer;
    color: var(--text-muted);
}
