/* Premium Architecture Styling Sheet Rules - Corporate Standard Design Pattern */

/* Base Design Variable Configurations */
:root {
    --primary-deep-slate: #0f172a;
    --secondary-pure-slate: #1e293b;
    --accent-gold-rich: #d4af37;
    --accent-gold-hover: #b8962e;
    --text-pure-white: #ffffff;
    --text-charcoal-dark: #334155;
    --text-muted-grey: #64748b;
    --background-light-cream: #f8fafc;
    --background-pure-white: #ffffff;
    --whatsapp-green-color: #25d366;
    --whatsapp-green-hover: #20ba5a;
    --error-crimson-red: #ef4444;
    --border-smooth-grey: #e2e8f0;
    --font-primary-stack: 'Plus Jakarta Sans', sans-serif;
    --font-serif-stack: 'Playfair Display', serif;
}

/* Reset Box Constraints */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    font-family: var(--font-primary-stack);
    color: var(--text-charcoal-dark);
    background-color: var(--background-light-cream);
}

body {
    overflow-x: hidden;
    line-height: 1.7;
}

/* Base Utilities Layouts */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden-honeypot-field {
    display: none !important;
    visibility: hidden !important;
}

/* Core Buttons Base Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary-gold {
    background-color: var(--accent-gold-rich);
    color: var(--primary-deep-slate);
}
.btn-primary-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary-whatsapp {
    background-color: var(--whatsapp-green-color);
    color: var(--text-pure-white);
}
.btn-secondary-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-pure-white);
    border: 2px solid var(--text-pure-white);
}
.btn-outline-white:hover {
    background-color: var(--text-pure-white);
    color: var(--primary-deep-slate);
}

/* Premium Loading Spinner Overlay */
.loader-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-deep-slate);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-backdrop.fade-out-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--secondary-pure-slate);
    border-top: 5px solid var(--accent-gold-rich);
    border-radius: 50%;
    animation: masterSpinnerRotate 1s linear infinite;
}
@keyframes masterSpinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main Header Design Layouts */
.main-header {
    background-color: var(--background-pure-white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.top-announcement-bar {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 500;
}
.announcement-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact-links a {
    color: var(--accent-gold-rich);
    text-decoration: none;
    font-weight: 600;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}
.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-deep-slate);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo-accent {
    color: var(--accent-gold-rich);
}
.navigation-menu-desktop .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-link {
    text-decoration: none;
    color: var(--secondary-pure-slate);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--accent-gold-rich);
}
.header-action-btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.header-action-btn:hover {
    background-color: var(--accent-gold-rich);
    color: var(--primary-deep-slate);
}
.mobile-hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-deep-slate);
    transition: all 0.3s ease;
}

/* Mobile Drawer Menu Overlays */
.mobile-navigation-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--background-pure-white);
    z-index: 2000;
    box-shadow: -10px 0 4px rgba(15, 23, 42, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
}
.mobile-navigation-drawer.drawer-active-open {
    right: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
.drawer-close-btn {
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-deep-slate);
}
.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.drawer-link {
    text-decoration: none;
    color: var(--primary-deep-slate);
    font-size: 1.2rem;
    font-weight: 600;
}
.drawer-footer-ctas {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.drawer-cta-btn {
    text-decoration: none;
    padding: 14px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
}
.drawer-cta-btn.phone-btn {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
}
.drawer-cta-btn.whatsapp-btn {
    background-color: var(--whatsapp-green-color);
    color: var(--text-pure-white);
}

/* Breadcrumbs Section Element */
.breadcrumb-container {
    background-color: var(--background-pure-white);
    border-bottom: 1px solid var(--border-smooth-grey);
    padding: 12px 0;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
    font-size: 0.85rem;
}
.breadcrumb-list li+li::before {
    content: "/";
    color: var(--text-muted-grey);
    padding-right: 8px;
}
.breadcrumb-list a {
    color: var(--text-muted-grey);
    text-decoration: none;
}
.breadcrumb-list a:hover {
    color: var(--accent-gold-rich);
}
.breadcrumb-list li.active {
    color: var(--primary-deep-slate);
    font-weight: 600;
}

/* Hero Slider Graphics Architecture */
.hero-slider-section {
    position: relative;
    height: auto;
    min-height: 680px;
    background-color: var(--primary-deep-slate);
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    padding: 100px 0;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.slide-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slide-text-block {
    max-width: 720px;
}
.badge-accent {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold-rich);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.slide-text-block h1, .slide-text-block h2 {
    font-family: var(--font-serif-stack);
    font-size: 3.5rem;
    color: var(--text-pure-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-lead-text {
    font-size: 1.15rem;
    color: var(--border-smooth-grey);
    margin-bottom: 32px;
}
.hero-bullet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.bullet-item {
    color: var(--text-pure-white);
    font-weight: 500;
    font-size: 0.95rem;
}
.bullet-item span {
    color: var(--accent-gold-rich);
    font-weight: 700;
    margin-right: 6px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}
.slider-arrow:hover {
    background-color: var(--accent-gold-rich);
    color: var(--primary-deep-slate);
}
.arrow-prev { left: 24px; }
.arrow-next { right: 24px; }

/* Counter Metrics Dashboard Styles */
.metrics-counter-section {
    background-color: var(--background-pure-white);
    padding: 60px 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    position: relative;
    z-index: 20;
    margin-top: -40px;
    border-radius: 8px;
    max-width: 1192px;
    margin-left: auto;
    margin-right: auto;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}
.metric-number-wrapper {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-deep-slate);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-primary-stack);
}
.metric-label {
    font-size: 0.95rem;
    color: var(--text-muted-grey);
    font-weight: 600;
}

/* Navigational Index / Table of Contents */
.table-of-contents-section {
    padding: 40px 0 20px 0;
}
.toc-wrapper {
    background-color: var(--background-pure-white);
    border: 1px solid var(--border-smooth-grey);
    border-radius: 8px;
    padding: 32px;
}
.toc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-deep-slate);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-gold-rich);
    padding-left: 12px;
}
.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 12px 24px;
}
.toc-list a {
    text-decoration: none;
    color: var(--text-charcoal-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.toc-list a:hover {
    color: var(--accent-gold-rich);
    text-decoration: underline;
}

/* Operational Overview / Conversion Form Panel */
.comprehensive-overview-section {
    padding: 60px 0;
}
.operational-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}
.overview-text-content h2 {
    font-family: var(--font-serif-stack);
    font-size: 2.5rem;
    color: var(--primary-deep-slate);
    line-height: 1.2;
    margin-bottom: 24px;
}
.overview-text-content p {
    font-size: 1.05rem;
    color: var(--text-charcoal-dark);
    margin-bottom: 20px;
}
.premium-form-box {
    background-color: var(--background-pure-white);
    border: 1px solid var(--border-smooth-grey);
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}
.premium-form-box h3 {
    font-size: 1.4rem;
    color: var(--primary-deep-slate);
    margin-bottom: 8px;
    font-weight: 700;
}
.premium-form-box p {
    font-size: 0.9rem;
    color: var(--text-muted-grey);
    margin-bottom: 28px;
}
.interactive-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-deep-slate);
}
.form-input-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-smooth-grey);
    border-radius: 4px;
    font-family: var(--font-primary-stack);
    font-size: 0.95rem;
    color: var(--primary-deep-slate);
    transition: border-color 0.2s ease;
}
.form-input-control:focus {
    outline: none;
    border-color: var(--accent-gold-rich);
}
.texarea-control {
    min-height: 100px;
    resize: vertical;
}
.field-error-msg {
    font-size: 0.8rem;
    color: var(--error-crimson-red);
    display: none;
    margin-top: 4px;
}
.form-field-group.validation-error .form-input-control {
    border-color: var(--error-crimson-red);
}
.form-field-group.validation-error .field-error-msg {
    display: block;
}
.btn-form-submit-block {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}
.btn-form-submit-block:hover {
    background-color: var(--accent-gold-rich);
    color: var(--primary-deep-slate);
}

/* Global Section Title Components */
.section-title-wrapper {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px auto;
}
.section-subtitle {
    display: block;
    color: var(--accent-gold-rich);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.section-title-wrapper h2 {
    font-family: var(--font-serif-stack);
    font-size: 2.6rem;
    color: var(--primary-deep-slate);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title-wrapper p {
    font-size: 1rem;
    color: var(--text-muted-grey);
}

/* Core Services Catalog Layouts */
.services-portfolio-section {
    background-color: var(--background-pure-white);
    padding: 80px 0;
}
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}
.detailed-service-card {
    background-color: var(--background-light-cream);
    border: 1px solid var(--border-smooth-grey);
    border-radius: 6px;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.detailed-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: var(--accent-gold-rich);
}
.card-icon-container {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1;
}
.detailed-service-card h3 {
    font-size: 1.35rem;
    color: var(--primary-deep-slate);
    font-weight: 700;
    margin-bottom: 16px;
}
.detailed-service-card p {
    font-size: 0.95rem;
    color: var(--text-charcoal-dark);
    margin-bottom: 24px;
}
.card-feature-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-feature-list li {
    font-size: 0.88rem;
    color: var(--text-muted-grey);
    position: relative;
    padding-left: 20px;
}
.card-feature-list li::before {
    content: "•";
    color: var(--accent-gold-rich);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}
.card-action-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--primary-deep-slate);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.card-action-link:hover {
    color: var(--accent-gold-rich);
}

/* Portfolio Filter Gallery Sections */
.gallery-portfolio-section {
    padding: 80px 0;
}
.gallery-filter-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.gallery-filter-btn {
    background-color: var(--background-pure-white);
    border: 1px solid var(--border-smooth-grey);
    padding: 10px 24px;
    font-family: var(--font-primary-stack);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    border-color: var(--primary-deep-slate);
}
.gallery-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.gallery-item-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 260px;
    background-color: var(--primary-deep-slate);
}
.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}
.gallery-item-card:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0) 100%);
    padding: 32px 24px 24px 24px;
    color: var(--text-pure-white);
}
.gallery-item-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.gallery-item-overlay p {
    font-size: 0.85rem;
    color: var(--border-smooth-grey);
}

/* Service Locations Matrix Grid */
.service-areas-grid-section {
    background-color: var(--background-pure-white);
    padding: 80px 0;
}
.geographic-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.zone-card-item {
    background-color: var(--background-light-cream);
    border-left: 3px solid var(--accent-gold-rich);
    padding: 24px;
    border-radius: 0 4px 4px 0;
}
.zone-card-item h5 {
    font-size: 1.1rem;
    color: var(--primary-deep-slate);
    margin-bottom: 8px;
    font-weight: 700;
}
.zone-card-item p {
    font-size: 0.88rem;
    color: var(--text-muted-grey);
}

/* Deep Longform Optimization Articles Framework */
.longform-articles-section {
    padding: 80px 0;
}
.articles-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.longform-article-entry {
    background-color: var(--background-pure-white);
    border: 1px solid var(--border-smooth-grey);
    border-radius: 8px;
    padding: 48px;
}
.longform-article-entry h3 {
    font-size: 1.6rem;
    color: var(--primary-deep-slate);
    margin-bottom: 8px;
}
.article-meta {
    font-size: 0.85rem;
    color: var(--text-muted-grey);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-body-content p {
    font-size: 1rem;
    color: var(--text-charcoal-dark);
    margin-bottom: 16px;
}
.article-body-content p:last-child {
    margin-bottom: 0;
}

/* Testimonial Mechanics Carousels */
.testimonials-slider-section {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    padding: 80px 0;
}
.testimonials-slider-section .section-title-wrapper h2 {
    color: var(--text-pure-white);
}
.testimonials-slider-viewport {
    display: flex;
    gap: 32px;
    overflow-x: hidden;
    position: relative;
    padding: 20px 0;
}
.testimonial-slide-card {
    min-width: calc(33.333% - 22px);
    background-color: var(--secondary-pure-slate);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 40px;
    flex-shrink: 0;
}
.review-rating-stars {
    color: var(--accent-gold-rich);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.review-text-body {
    font-size: 0.98rem;
    color: var(--border-smooth-grey);
    font-style: italic;
    margin-bottom: 28px;
}
.review-author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-pure-white);
}
.review-author-info span {
    font-size: 0.85rem;
    color: var(--accent-gold-rich);
}
.slider-nav-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.slider-control-btn {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-pure-white);
    padding: 10px 24px;
    font-family: var(--font-primary-stack);
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}
.slider-control-btn:hover {
    background-color: var(--accent-gold-rich);
    color: var(--primary-deep-slate);
    border-color: var(--accent-gold-rich);
}

/* FAQ Technical Accordion System CSS */
.faq-accordion-section {
    padding: 80px 0;
}
.faq-accordion-layout-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accordion-item-box {
    background-color: var(--background-pure-white);
    border: 1px solid var(--border-smooth-grey);
    border-radius: 6px;
    overflow: hidden;
}
.accordion-trigger-header {
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    background: transparent;
    border: none;
    font-family: var(--font-primary-stack);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-trigger-header::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-gold-rich);
    font-weight: 400;
}
.accordion-item-box.accordion-active-panel .accordion-trigger-header::after {
    content: "−";
}
.accordion-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 32px;
}
.accordion-item-box.accordion-active-panel .accordion-panel-content {
    padding: 0 32px 24px 32px;
}
.accordion-panel-content p {
    font-size: 0.98rem;
    color: var(--text-charcoal-dark);
}

/* Interlinks Navigation Matrix Blocks */
.geographic-interlinks-matrix {
    background-color: var(--background-pure-white);
    padding: 32px 0;
    border-top: 1px solid var(--border-smooth-grey);
    text-align: center;
}
.link-matrix-wrapper h4 {
    font-size: 0.9rem;
    color: var(--text-muted-grey);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.links-flex-container {
    font-size: 0.9rem;
    color: var(--border-smooth-grey);
}
.links-flex-container a {
    color: var(--primary-deep-slate);
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
}
.links-flex-container a:hover {
    color: var(--accent-gold-rich);
}

/* Premium Authority Footer Layouts */
.premium-authority-footer {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--accent-gold-rich);
}
.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
}
.footer-corporate-brand-column .brand-logo {
    color: var(--text-pure-white);
    display: block;
    margin-bottom: 20px;
}
.footer-corporate-brand-column p {
    font-size: 0.9rem;
    color: var(--border-smooth-grey);
    margin-bottom: 20px;
}
.operational-hours-sign {
    font-size: 0.85rem !important;
    color: var(--accent-gold-rich) !important;
    font-weight: 600;
}
.footer-links-column h5, .footer-contact-info-column h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}
.footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-column a {
    color: var(--border-smooth-grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-links-column a:hover {
    color: var(--accent-gold-rich);
}
.footer-contact-info-column p {
    font-size: 0.9rem;
    color: var(--border-smooth-grey);
    margin-bottom: 12px;
}
.footer-contact-info-column a {
    color: var(--accent-gold-rich);
    text-decoration: none;
    font-weight: 600;
}
.footer-copyright-bottom-bar {
    background-color: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted-grey);
}
.bottom-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile Bottom Dock Bar CTAs */
.mobile-sticky-cta-dock-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--background-pure-white);
    z-index: 1500;
    box-shadow: 0 -4px 10px rgba(15, 23, 42, 0.1);
}
.dock-action-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    gap: 8px;
}
.call-dock-trigger {
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
}
.whatsapp-dock-trigger {
    background-color: var(--whatsapp-green-color);
    color: var(--text-pure-white);
}

/* Popup Overlay Core Framework Engine */
.popup-system-backdrop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.7);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-system-backdrop-overlay.popup-visible-show {
    opacity: 1;
    visibility: visible;
}
.popup-window-container {
    background-color: var(--background-pure-white);
    border-radius: 8px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.popup-system-backdrop-overlay.popup-visible-show .popup-window-container {
    transform: scale(1);
}
.popup-dismiss-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted-grey);
}
.popup-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold-rich);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.emergency-badge {
    background-color: rgba(239, 68, 68, 0.1) !important;
    color: var(--error-crimson-red) !important;
}
.popup-window-container h3 {
    font-size: 1.6rem;
    color: var(--primary-deep-slate);
    margin-bottom: 12px;
}
.popup-window-container p {
    font-size: 0.95rem;
    color: var(--text-charcoal-dark);
    margin-bottom: 28px;
}
.popup-btn-confirm {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background-color: var(--primary-deep-slate);
    color: var(--text-pure-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}
.popup-btn-confirm:hover {
    background-color: var(--accent-gold-rich);
    color: var(--primary-deep-slate);
}
.call-now-popup-btn {
    background-color: var(--error-crimson-red) !important;
}
.call-now-popup-btn:hover {
    background-color: #dc2626 !important;
    color: white !important;
}

/* Scroll Reveal Structural Engine Elements */
.reveal-element {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-element.reveal-visible-active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Structural Media Queries Breaks */
@media (max-width: 1024px) {
    .footer-grid-layout {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .footer-contact-info-column {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .navigation-menu-desktop, .header-call-btn { display: none !important; }
    .mobile-hamburger-btn { display: flex; }
    .operational-grid { grid-template-columns: 1fr; }
    .slide-text-block h1, .slide-text-block h2 { font-size: 2.4rem; }
    .footer-grid-layout { grid-template-columns: 1fr; }
    .footer-links-column, .footer-contact-info-column { grid-column: span 1; }
    .bottom-bar-wrapper { flex-direction: column; text-align: center; }
    body { padding-bottom: 60px; }
    .mobile-sticky-cta-dock-bar { display: flex; }
    .testimonial-slide-card { min-width: 100%; }
}