:root {
    /* Colors */
    --color-bg: #F3F1EA;
    /* Warm beige from reference */
    --color-text: #1A1A1A;
    --color-purple: #D4B0FF;
    --color-orange: #FF5A36;
    --color-teal: #00D59D;

    /* Fonts */
    --font-heading: 'Newsreader', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    /* overflow: hidden; Removed to allow scrolling */
    min-height: 100vh;
    width: 100vw;
}

/* === Common Layout === */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    z-index: 100;
    background: rgba(243, 241, 234, 0.9);
    /* Semi-transparent beige match */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--color-text);
}

.logo-img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
}

/* === DROPDOWN MENU === */
.nav-item-dropdown {
    position: relative;
    padding: 10px 0;
    /* Increase hit area */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    /* Slightly less transp for strictness */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Stronger border */
    border-radius: 4px;
    /* Sharper corners for strict look */
    padding: 20px;
    /* Reduced padding */
    width: 480px;
    /* Slightly tighter width */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Reduced shadow spread */
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease-out;
    /* Faster transition */
    z-index: 200;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    /* Reduced gap */
}

.dropdown-header {
    font-family: var(--font-mono);
    /* Match nav font */
    font-weight: 600;
    font-size: 0.75rem;
    /* Match nav size */
    color: var(--color-purple);
    /* Or keep color but font match */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 6px;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Tighter items */
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    padding: 6px 10px;
    border-radius: 4px;
    /* Sharper corners */
    transition: background 0.15s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.03);
    /* More subtle hover */
}

.dropdown-item span {
    font-family: var(--font-mono);
    /* Match nav font */
    font-size: 0.75rem;
    /* Small strict font */
    text-transform: uppercase;
    /* Match nav style? Or just mono? Let's go strict upper/mono */
    font-weight: 500;
    letter-spacing: 0.02em;
}

.dd-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    /* Darker/Stricter icon color */
    opacity: 1;
}

.nav-social {
    display: flex;
    align-items: center;
    color: var(--color-text);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-social:hover {
    transform: scale(1.1);
}

.header-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 16px;
    text-align: right;
}

.header-phone {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.header-hours {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-contact {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    background-color: var(--color-purple);
    padding: 12px 24px;
    border-radius: 999px;
    /* Pill shape */
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
}

/* === Hero Section === */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Fill viewport */
    overflow: hidden;
}

.hero-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background */
/* Background Global */
.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Slight fade to blend with bg color */
    mix-blend-mode: multiply;
}

.bg-overlay-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 40px 40px;
    /* Grid of dots */
    opacity: 0.3;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 10;
}

.headline {
    font-family: var(--font-body);
    font-weight: 600;
    /* Match logo weight */
    font-size: 4rem;
    /* 64px */
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-cta {
    margin-top: 32px;
}

.btn-hero-contact {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--color-text);
    /* Match header button text color */
    background-color: var(--color-purple);
    /* Match header button background */
    padding: 16px 32px;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-hero-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background-color: #C095FF;
    /* Slightly darker purple for hover, or just keep scale effect */
}

/* Floating Data Points */
/* Floating Data Points */
.data-point {
    position: absolute;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.05);
    /* Very transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 4px;
    font-family: var(--font-mono);
    /* Restored */
    font-size: 0.7rem;
    /* Restored */
    line-height: 1.6;
    /* Restored */
    z-index: 5;
    min-width: 200px;
}

.data-point.top-right {
    top: 20%;
    right: 15%;
}

.data-point.bottom-left {
    bottom: 25%;
    left: 15%;
}

.coordinates {
    color: rgba(0, 0, 0, 0.2);
    /* Keep transparent color */
}

.info {
    font-weight: 600;
    /* Restored from 700 */
    margin: 4px 0;
    color: rgba(0, 0, 0, 0.15);
    /* Keep transparent color */
}

.time {
    color: rgba(0, 0, 0, 0.2);
    /* Keep transparent color */
}

/* Decor Dots */
.decor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 2;
}

/* Target UI for Top Right Box */
.top-right .target-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #00D59D;
    /* Teal color */
    border-style: solid;
    border-width: 0;
}

.top-right .tl {
    top: -16px;
    left: -16px;
    border-top-width: 1px;
    border-left-width: 1px;
}

/* === FOOTER === */
/* === CLIENTS SECTION === */
.clients-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.clients-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px;
    /* Space for shadow */
    scroll-behavior: smooth;
    flex-grow: 1;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.clients-track::-webkit-scrollbar {
    display: none;
}

.client-card {
    min-width: 250px;
    height: 140px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card span {
    font-family: var(--font-body);
    font-weight: 600;
    color: #888;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: var(--color-purple);
    color: #fff;
    border-color: var(--color-purple);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: var(--color-purple);
}

/* === FOOTER === */
.site-footer {
    display: block;
    /* Show footer */
    background: rgba(255, 255, 255, 0.3);
    /* Subtle backdrop */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    /* Match header */
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--color-text);
}

.footer-address,
.footer-contact-row {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-row a {
    text-decoration: none;
    color: #444;
}

.btn-footer-cta {
    display: inline-block;
    background: var(--color-purple);
    color: var(--color-text);
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    margin-top: 16px;
    transition: transform 0.2s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #222;
}

.footer-heading-highlight {
    color: var(--color-purple);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--color-purple);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* === SECTIONS COMMON === */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    /* Above background elements if any */
}

.section-title {
    font-family: var(--font-body);
    /* Match Hero Headline */
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

/* === SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #F8F6F0;
    /* Slightly darker than card */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--color-purple);
}

.service-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
    /* Push link to bottom */
}

.service-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-purple);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

.services-cta-wrapper {
    text-align: center;
}

.btn-all-services {
    display: inline-block;
    background: var(--color-purple);
    color: var(--color-text);
    padding: 16px 48px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.btn-all-services:hover {
    transform: scale(1.05);
}

/* === FACILITIES SECTION === */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.facility-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.2s ease;
    cursor: default;
}

.facility-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.facility-card iconify-icon {
    color: #888;
    transition: color 0.2s ease;
}

.facility-card:hover iconify-icon {
    color: var(--color-purple);
}

.facility-card span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #444;
}

/* Removed broken block */

/* === PROCESS SECTION === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.process-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-purple);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.process-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* === QUALITY SECTION === */
.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.quality-list {
    list-style: none;
    /* remove default bullets */
}

.quality-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
}

.quality-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--color-purple);
    font-size: 1.5rem;
    line-height: 1rem;
    top: 4px;
}

/* Fixed CSS structure */
.quality-image {
    height: 400px;
    border-radius: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Ensure image stays within rounded corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.manager-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.sla-badge {
    background: rgba(212, 176, 255, 0.9);
    /* Glassy purple */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.3;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(108, 0, 255, 0.2);
    z-index: 10;
}

/* === REVIEWS SECTION === */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.review-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-header h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
}

.review-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.5;
}

/* === MODAL STYLES === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-orange);
}

.modal-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    margin-left: 4px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #FAFAFA;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    background: #fff;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(212, 176, 255, 0.2);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-submit {
    flex: 1;
    background: var(--color-purple);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #B085FF;
}

.btn-call-urgent {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 54, 0.1);
    color: var(--color-orange);
    text-decoration: none;
    padding: 0 20px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: background 0.2s;
}

.btn-call-urgent:hover {
    background: rgba(255, 90, 54, 0.2);
}

/* Success State */
.modal-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    color: var(--color-teal);
    margin-bottom: 24px;
}

.modal-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.modal-success p {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* === BOTTOM CTA === */
.cta-center {
    text-align: center;
}

.btn-large-cta {
    display: inline-block;
    background: var(--color-purple);
    color: var(--color-text);
    padding: 24px 64px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(212, 176, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-large-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(212, 176, 255, 0.6);
}

@media (max-width: 900px) {


    .quality-content,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === MOBILE OPTIMIZATION === */
/* Default Desktop Styles for Mobile Elements */
.mobile-header-actions,
.mobile-nav-toggle {
    display: none;
}

@media (max-width: 768px) {

    /* Header & Nav */
    .main-nav {
        display: none;
        /* Hide desktop nav */
    }

    .mobile-nav-toggle {
        display: block !important;
        /* Managed by flex container now, but keep for safety */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        /* Remove padding to align well in grid/flex */
        color: var(--color-text);
        z-index: 101;
        display: flex !important;
        align-items: center;
    }

    /* New Mobile Header Actions Container */
    .mobile-header-actions {
        display: flex !important;
        align-items: center;
        gap: 20px;
    }

    .mobile-action-icon {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--color-text);
        transition: transform 0.2s;
    }

    .mobile-action-icon:hover {
        transform: scale(1.1);
    }

    .header-details {
        display: none;
        /* Hide phone in header on mobile to save space */
    }

    .logo {
        font-size: 1.2rem;
    }

    .btn-contact {
        display: none;
        /* Hide CTA in header, moved to menu */
    }

    /* Hero Padding */
    .headline {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    /* Stack Grids */
    .services-grid,
    .facilities-grid,
    .process-grid,
    .contacts-grid,
    .quality-content,
    .reviews-grid,
    .dropdown-grid,
    .hero-row,
    .service-card-large {
        grid-template-columns: 1fr !important;
    }

    /* Adjust Margins */
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .btn-large-cta {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        padding: 24px;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    padding: 80px 24px 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #444;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.mobile-link {
    font-family: var(--font-mono);
    /* Changed from font-body */
    font-size: 1.1rem;
    /* Slightly smaller to fit monospace */
    font-weight: 500;
    text-decoration: none;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-dropdown-trigger {
    font-family: var(--font-mono);
    /* Changed from font-body */
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding-left: 16px;
    border-left: 2px solid var(--color-purple);
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-content a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    /* Slightly smaller than main links */
    font-family: var(--font-mono);
    /* Match parent */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    /* Ensure good tap target */
    padding: 4px 0;
}

.mobile-menu-footer {
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.mobile-phone {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    /* Changed from purple to black (text color) */
    text-decoration: none;
    margin-bottom: 12px;
}

.mobile-socials a {
    color: #444;
    text-decoration: none;
}

/* === TABS COMPONENT === */
.services-tabs {
    margin-bottom: 40px;
}

.tab-toggles {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 999px;
    padding: 12px 32px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #000;
    border-color: #000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: grid;
    /* Assuming grid context, will match services-grid */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .tab-pane.active {
        grid-template-columns: 1fr;
    }
}/* === ALL SERVICES BUTTON === */
.btn-all-services {
    display: inline-block;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 999px;
    padding: 12px 32px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1A1A1A;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-all-services:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
