/******************************************************************************
*
*   ##  ADOSTROPHE - FINAL PRODUCTION STYLES (REVISED & CORRECTED)  ##
*
*   This file contains all styles for the Adostrophe website.
*   It is organized, de-duplicated, and ready for launch.
*
*   (c) 2025 Adostrophe. All Rights Reserved.
*
******************************************************************************/

/*
TABLE OF CONTENTS
-----------------
1.  Global Styles & Variables
2.  Utility Classes
3.  Header & Navigation
4.  Hero Section
5.  Services Section
6.  Benefits of Matterport Section
7.  Industries Section
8.  FAQ Section
9.  Blog Section
10. Contact & Newsletter Section
11. Final CTA Section
12. Footer
13. AI Chat Widget
14. Animations & Transitions
15. Responsive Design
16. Inner Page Styles
17. Blog Post Specific Styles
18. Page-Specific Component Styles
*/

/* --- 1. Global Styles & Variables --- */
:root {
    --primary-color: #3A6A94; /* Steel Blue */
    --primary-hover: #315B7F;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-grey: #f4f4f4;
    --border-color: #e0e0e0;
    --white-color: #ffffff;
    --black-color: #000000;
    --success-color: #28a745;
    --error-color: #dc3545;
    
    --font-family: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --focus-outline: 2px solid var(--primary-color);
    --focus-outline-offset: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 120px; }
body { font-family: var(--font-family); color: var(--dark-grey); background-color: var(--white-color); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary-color); transition: color var(--transition-speed) ease; }
a:hover { color: var(--dark-grey); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.container.small { max-width: 800px; }
.text-center { text-align: center; }
section { padding: 5rem 0; }

/* --- Centralized Accessibility Focus State --- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.dropdown a:focus-visible,
.card-link-overlay:focus-visible {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
    box-shadow: 0 0 0 4px rgba(58, 106, 148, 0.3);
}
.card-link-overlay:focus-visible { outline: none; }
.dropdown-menu a:focus-visible { outline-offset: -2px; }

/* --- 2. Utility Classes --- */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; border: 0; }
.card-link-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; border-radius: 12px; }

/* --- Buttons --- */
.button-primary { display: inline-block; background-color: var(--primary-color); color: var(--white-color); padding: 12px 28px; border-radius: 50px; font-weight: 600; transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease; border: none; cursor: pointer; }
.button-primary:hover { transform: translateY(-3px); background-color: var(--primary-hover); color: var(--white-color); }
.button-primary.large { padding: 18px 40px; font-size: 1.1rem; }
.button-secondary { display: inline-block; background-color: transparent; color: var(--dark-grey); padding: 10px 28px; border-radius: 50px; font-weight: 600; border: 2px solid #e0e0e0; transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, border-color var(--transition-speed) ease; cursor: pointer; }
.button-secondary:hover { background-color: var(--dark-grey); color: var(--white-color); border-color: var(--dark-grey); }

/* --- 3. Header & Navigation --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-header nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 0; flex-shrink: 0; }
.logo img { max-height: 50px; width: auto; display: block; margin-right: 30px; transition: max-height 0.3s ease; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 2rem; }
.nav-links a { color: var(--medium-grey); font-weight: 600; display: flex; align-items: center; gap: 0.2rem; }
.nav-links a:hover, .nav-links a.active { color: var(--black-color); }
.nav-links .nav-contact { color: var(--white-color); }
.nav-links .nav-contact:hover { color: var(--white-color); }
.nav-links .nav-contact { padding: 8px 24px; }
.dropdown { position: relative; }
.dropdown-menu a { padding: 0.5rem; width: 100%; }
.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 2rem; color: var(--dark-grey); z-index: 1001; }

/* --- Section Styling --- */
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title span { color: var(--primary-color); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.5rem; }
.section-title h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }

/* --- 4. Hero Section --- */
.hero-section { padding-top: 4rem; padding-bottom: 4rem; min-height: 80vh; display: flex; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; font-weight: 700; }
.hero-text p { font-size: 1.1rem; color: var(--medium-grey); margin-bottom: 2rem; }
.hero-text a { margin-right: 1rem; }
.hero-image img { border-radius: 12px; }

/* --- 5. Services Section --- */
.services-section { background-color: var(--light-grey); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card {
    position: relative;
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}
.service-card .material-icons-outlined { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-card.service-card--cta { background-color: #eef3f7; border: 1px solid var(--primary-color); }
.service-card.service-card--cta:hover { background-color: #e3eaf0; border-color: var(--primary-color); }

/* --- 6. Benefits Section --- */
.benefits-section { background-color: var(--white-color); }
.benefit-grid { margin-bottom: 4rem; }
.benefit-grid.reverse { grid-auto-flow: dense; }
.benefit-grid.reverse .benefit-text { grid-column: 1; }
.benefit-grid.reverse .benefit-image { grid-column: 2; }
.benefit-text { display: flex; flex-direction: column; justify-content: center; }
.benefit-text h3 { font-size: 2rem; margin-bottom: 1rem; }
.benefit-image img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; height: auto; object-fit: cover; }
.review-snippet { margin-top: 1.5rem; font-weight: 600; }
.review-snippet .stars { color: #FFC107; }

/* --- 7. Industries Section --- */
.industries-section { background-color: var(--light-grey); }
.industry-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.industry-card { position: relative; border-radius: 12px; overflow: hidden; height: 400px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.industry-card:hover img { transform: scale(1.1); }
.industry-card:focus-within { outline: var(--focus-outline); outline-offset: var(--focus-outline-offset); }
.industry-card figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem; color: var(--white-color); background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent); transition: background var(--transition-speed) ease; }
.industry-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.industry-card p { font-size: 0.9rem; opacity: 0.8; transition: opacity var(--transition-speed) ease; }
.industry-card:hover p { opacity: 1; }

/* --- 8. FAQ Section --- */
.faq-section { background-color: var(--light-grey); }
.faq-accordion details { border-bottom: 1px solid #e0e0e0; padding: 1.5rem 0; }
.faq-accordion summary { font-size: 1.2rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary .material-icons-outlined { transition: transform var(--transition-speed) ease; }
.faq-accordion details[open] summary .material-icons-outlined { transform: rotate(45deg); }
.faq-accordion p { margin-top: 1rem; color: var(--medium-grey); }
.faq-button-container { margin-top: 3rem; }

/* --- 9. Blog Section --- */
.blog-section { background-color: var(--light-grey); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.blog-card { position: relative; background-color: var(--white-color); border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.blog-card:focus-within { outline: var(--focus-outline); outline-offset: var(--focus-outline-offset); }
.blog-card .blog-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card .blog-category { font-size: 0.8rem; font-weight: 600; color: var(--primary-color); text-transform: uppercase; margin-bottom: 0.5rem; }
.blog-card .blog-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.blog-card .blog-content p { color: var(--medium-grey); font-size: 0.95rem; margin-bottom: 1rem; }
.blog-card .read-more { font-weight: 600; color: var(--dark-grey); margin-top: auto; }
.blog-card img { width: 100%; height: 250px; object-fit: cover; }

/* --- 10. Contact & Newsletter Section --- */
.contact-section { background-color: var(--white-color); }
.contact-form, .newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea, .newsletter-form input { width: 100%; padding: 1rem; border: 1px solid #ccc; border-radius: 8px; font-family: var(--font-family); font-size: 1rem; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.newsletter-box { background-color: var(--light-grey); padding: 3rem; border-radius: 12px; }
.form-notice { font-size: 0.8rem; color: var(--medium-grey); margin-top: 1.5rem; text-align: center; }
.form-status { text-align: center; padding: 1rem; margin-top: 1.5rem; border-radius: var(--border-radius-sm); font-weight: 600; border: 1px solid transparent; }
.form-status.success { background-color: #e9f7ec; color: var(--success-color); border-color: var(--success-color); }
.form-status.error { background-color: #fbe9e7; color: var(--error-color); border-color: var(--error-color); }

/* --- 11. Final CTA Section --- */
.final-cta { background-image: linear-gradient(45deg, var(--primary-color), var(--primary-hover)); color: var(--white-color); }
.final-cta h2 { font-size: 2.5rem; color: var(--white-color); }
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* --- 12. Footer --- */
.main-footer { background-color: var(--black-color); color: #ccc; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: inline-block; margin-bottom: 1.5rem; }
.footer-logo img { max-height: 50px; width: auto; }
.footer-grid h3 { font-size: 1.2rem; color: var(--white-color); margin-bottom: 1.5rem; }
.footer-links ul, .contact-list { list-style: none; padding: 0; }
.footer-links ul li, .contact-list li { margin-bottom: 0.8rem; }
.footer-links a, .contact-list a { color: #ccc; }
.footer-links a:hover, .contact-list a:hover { color: var(--white-color); text-decoration: underline; }
.social-icons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.social-icons a { font-size: 1.5rem; color: #ccc; }
.social-icons a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; border-top: 1px solid #444; padding-top: 2rem; font-size: 0.9rem; }

/* --- 13. AI Chat Widget --- */
.ai-chat-bubble { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background-color: var(--primary-color); color: var(--white-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 1001; transition: transform var(--transition-speed) ease; font-size: 2rem; }
.ai-chat-bubble:hover { transform: scale(1.1); }
.ai-chat-window { position: fixed; bottom: 6rem; right: 2rem; width: 350px; max-width: 90vw; height: 500px; background-color: var(--white-color); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 1000; display: none; flex-direction: column; opacity: 0; transform: translateY(20px); transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease; }
.ai-chat-window.active { opacity: 1; transform: translateY(0); }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background-color: var(--dark-grey); color: var(--white-color); border-top-left-radius: 12px; border-top-right-radius: 12px; }
.chat-header button { background: none; border: none; color: var(--white-color); font-size: 1.5rem; cursor: pointer; }
.chat-body { flex-grow: 1; padding: 1rem; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.ai-message { background-color: var(--light-grey); padding: 0.8rem 1rem; border-radius: 15px 15px 15px 0; max-width: 80%; align-self: flex-start; word-wrap: break-word; }
.user-message { background-color: var(--primary-color); color: var(--white-color); padding: 0.8rem 1rem; border-radius: 15px 15px 0 15px; max-width: 80%; align-self: flex-end; word-wrap: break-word; }
.chat-input { display: flex; padding: 1rem; border-top: 1px solid #e0e0e0; gap: 0.5rem; }
.chat-input input { flex-grow: 1; border: 1px solid #ccc; border-radius: 50px; padding: 0.8rem; font-family: inherit; font-size: 1rem; }
.chat-input button { background-color: var(--primary-color); color: var(--white-color); border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: background-color var(--transition-speed) ease; font-size: 1.5rem; }
.chat-input button:hover { background-color: var(--primary-hover); }

/* --- 14. Animations & Transitions --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.service-grid .animate-on-scroll,
.industry-grid .animate-on-scroll,
.blog-grid .animate-on-scroll {
    transition-delay: var(--stagger-delay, 0s);
}
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background-color: var(--primary-hover); color: var(--white-color); }
.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--white-color);
    list-style: none;
    padding: 1rem;
    padding-top: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dropdown:hover .dropdown-menu,
.dropdown a[aria-expanded="true"] + .dropdown-menu,
.dropdown a:focus + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- 15. Responsive Design --- */
@media (max-width: 992px) {
    .hero-section { display: block; min-height: auto; padding-top: 2rem; padding-bottom: 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero-text { text-align: center; order: 2; }
    .hero-image { order: 1; margin-bottom: 2rem; }
    .benefit-grid.reverse .benefit-text, .benefit-grid.reverse .benefit-image { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .logo img { max-height: 45px; margin-right: 20px; }
    .nav-links { gap: 1.5rem; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 300px; background-color: var(--white-color); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transform: translateX(100%); transition: transform var(--transition-speed) ease-in-out; box-shadow: -5px 0 20px rgba(0,0,0,0.1); z-index: 1000; }
    .nav-links.active { transform: translateX(0); }
    .hamburger { display: block; }
    section { padding: 4rem 0; }
    .section-title h2 { font-size: 2.2rem; }
    .hero-text h1 { font-size: 2.8rem; }
    .main-header nav { flex-wrap: nowrap; justify-content: space-between; }
    .logo img { max-height: 40px; margin-right: 0; }
    .logo { width: auto; text-align: left; }
    .industry-card:nth-child(n+5) { display: none; }
}

/* --- 16. Inner Page Styles --- */
.page-hero { padding: 4rem 0; min-height: auto; background-color: var(--light-grey); }
.page-hero .hero-text { max-width: 800px; margin: auto; text-align: center; }
.breadcrumb { list-style: none; padding: 0 0 1.5rem 0; display: flex; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: var(--medium-grey); flex-wrap: wrap; }
.breadcrumb li:not(:last-child)::after { content: '»'; margin-left: 0.5rem; }
.breadcrumb a { color: var(--primary-color); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.iframe-container { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--box-shadow); width: 100%; padding-bottom: 56.25%; height: 0; background-color: #000; }
.iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.iframe-facade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; justify-content: center; align-items: center; cursor: pointer; transition: background-color 0.3s ease; border: none; color: var(--white-color); font-family: inherit; z-index: 2; }
.iframe-facade:hover { background: rgba(0,0,0,0.7); }
.iframe-facade .material-icons-outlined { font-size: 5rem; }
.iframe-facade p { font-weight: 600; margin-top: 1rem; }
.section-title.text-left { text-align: left; margin-bottom: 1rem; }
.bg-light-grey { background-color: var(--light-grey); }
.benefit-text .button-secondary { align-self: flex-start; margin-top: 1.5rem; }
.image-container { position: relative; border-radius: 12px; overflow: hidden; display: block; }
.image-container .image-overlay-caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1rem 1.5rem; background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 30%, transparent); color: var(--white-color); font-size: 0.9rem; font-style: italic; text-align: center; pointer-events: none; }
.feature-list { list-style: none; padding: 0; margin-top: 1rem; }
.feature-list li { position: relative; padding-left: 2.8rem; margin-bottom: 0.75rem; }
.feature-list li .material-icons-outlined { position: absolute; left: 0; top: 0.1em; font-size: 1.8rem; color: var(--primary-color); }
.feature-list li .bold-text { font-weight: 700; color: var(--dark-grey); }
.highlight-text { font-weight: 700; color: var(--primary-color); }
.stats-section { padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; margin-top: 4rem; }
.stat-item h3 { font-size: 3.5rem; color: var(--primary-color); font-weight: 700; }
.stat-item p { font-weight: 600; color: var(--medium-grey); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.feature-card { display: flex; align-items: flex-start; gap: 1.5rem; }
.feature-card .material-icons-outlined { font-size: 2.5rem; color: var(--primary-color); margin-top: 5px; }

/* --- 17. Blog Post Specific Styles --- */
.blog-post-hero { background-color: var(--light-grey); }
.blog-post-hero .hero-text { max-width: 900px; }
.blog-post-hero h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 1rem; }
.blog-post-meta { font-size: 0.95rem; color: var(--medium-grey); margin-bottom: 2rem; }
.blog-post-meta span { margin-right: 1rem; }
.blog-post-meta .material-icons-outlined { font-size: 1.1rem; vertical-align: middle; margin-right: 0.2rem; }
.article-main { line-height: 1.8; }
.article-main h2 { font-size: 2.2rem; margin-top: 3rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem; }
.article-main h3 { font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.article-main p { margin-bottom: 1.5rem; }
.article-main ul { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.article-main ul li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.article-main ul li::before { content: 'check_circle'; font-family: 'Material Icons Outlined'; position: absolute; left: 0; color: var(--primary-color); font-size: 1.2rem; line-height: 1.7; }
.bold-text { font-weight: 700; }
.highlight-text { font-weight: 700; color: var(--primary-color); }
.sources-note { text-align: center; font-size: 0.8rem; color: var(--medium-grey); margin-top: 2rem; }
.carousel-container { position: relative; max-width: 800px; margin: 2rem auto; overflow: hidden; border-radius: 12px; box-shadow: var(--box-shadow); }
.carousel-wrapper { display: flex; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; box-sizing: border-box; }
.carousel-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.5); color: white; border: none; padding: 10px; cursor: pointer; z-index: 10; border-radius: 50%; }
#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

/* --- 18. Page-Specific Component Styles --- */
.faq-hero, .blog-hero { background-color: var(--light-grey); }
.faq-search-container, .blog-search-container { position: relative; max-width: 600px; margin: 2rem auto 0; }
.faq-search-container .material-icons-outlined, .blog-search-container .material-icons-outlined { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); color: var(--medium-grey); pointer-events: none; }
#faq-search, #blog-search { width: 100%; padding: 1rem 1rem 1rem 4rem; border-radius: 50px; border: 1px solid #ccc; font-size: 1.1rem; font-family: var(--font-family); }
.faq-nav { position: sticky; top: 80px; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 900; padding: 1rem 0; border-bottom: 1px solid #e0e0e0; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
.faq-nav-links { display: flex; justify-content: center; gap: 1rem; }
.faq-nav-links a { color: var(--medium-grey); font-weight: 600; padding: 0.5rem 1rem; border-radius: 50px; transition: all 0.3s ease; flex-shrink: 0; }
.faq-nav-links a:hover, .faq-nav-links a.active { color: var(--white-color); background-color: var(--primary-color); }
.faq-service-section { padding: 4rem 0; border-bottom: 1px solid #e0e0e0; scroll-margin-top: 150px; }
.faq-service-section:last-of-type { border-bottom: none; }
.faq-service-section h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.faq-column h3 { font-size: 1.5rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem; }
.faq-section-cta { text-align: center; margin-top: 3rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } .faq-nav { top: 70px; } .faq-nav-links { justify-content: flex-start; padding: 0 5%; } .faq-service-section { scroll-margin-top: 130px; } }
.blog-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.load-more-container { text-align: center; margin-top: 3rem; }
#location-header { font-size: 1.2rem; font-weight: 600; color: var(--dark-grey); text-align: center; margin-bottom: 2rem; padding: 1rem; background-color: var(--light-grey); border-radius: 8px; }
.pricing-calculator { background: linear-gradient(145deg,var(--white-color) 0%,#fcfcfc 100%); border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.15); padding: 3rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; border: 1px solid rgba(0,0,0,.05); }
@media (min-width: 992px) { .pricing-calculator { grid-template-columns: 2fr 1.2fr; } }
.calculator-inputs .form-group { margin-bottom: 2rem; }
.calculator-inputs label { font-weight: 700; margin-bottom: .8rem; font-size: 1.1rem; display: block; }
.calculator-inputs input[type=number] { width: 100%; padding: 12px 15px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 1.1rem; font-family: var(--font-family); box-shadow: inset 0 1px 3px rgba(0,0,0,.05); }
.calculator-inputs input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; background: var(--light-grey); border-radius: 5px; outline: none; opacity: .7; transition: opacity .2s; margin-top: 10px; }
.calculator-inputs input[type=range]:hover { opacity: 1; }
.calculator-inputs input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: var(--primary-color); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,.2); border: 3px solid var(--white-color); }
.calculator-inputs input[type=range]::-moz-range-thumb { width: 24px; height: 24px; background: var(--primary-color); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,.2); border: 3px solid var(--white-color); }
.calculator-inputs .checkbox-group { display: flex; align-items: center; margin-bottom: .8rem; font-size: 1.05rem; }
.calculator-inputs .checkbox-group input[type=checkbox] { margin-right: .75rem; width: 20px; height: 20px; accent-color: var(--primary-color); }
.calculator-summary { background-color: var(--primary-color); color: var(--white-color); border-radius: 12px; padding: 2.5rem 1.5rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: inset 0 0 15px rgba(0,0,0,.2); }
.calculator-summary h3 { font-size: 1.8rem; margin-top: 0; margin-bottom: .5rem; color: var(--white-color); }
.calculator-summary #total-cost { font-size: 3.8rem; font-weight: 700; color: var(--white-color); margin: 1.5rem 0; text-shadow: 0 2px 5px rgba(0,0,0,.2); }
.calculator-summary #total-cost span { font-size: .8em; vertical-align: super; margin-right: .1em; }
#demo-offer { background-color: #e0f7fa; color: #006064; padding: .75rem; border-radius: 4px; font-weight: 600; display: none; margin-top: 1rem; width: 100%; text-align: center; }
.logos-container img { transition: filter 0.3s ease, opacity 0.3s ease; }
.logos-container img:hover { filter: grayscale(0%); opacity: 1; }