/* ==========================================
   MTA:: Architecture Website - Complete Styles
   Exact clone + Premium features
   ========================================== */

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: #333;
}

strong { font-weight: 700; }

.respimg { width: 100%; height: auto; }

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ===== Grid System (matching original) ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-2 { width: 16.666%; padding: 0 15px; }
.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-5 { width: 41.666%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-md-7 { width: 58.333%; padding: 0 15px; }
.col-md-8 { width: 66.666%; padding: 0 15px; }
.col-md-12 { width: 100%; padding: 0 15px; }

/* ===== Hidden Title ===== */
.dynamic-title {
    position: fixed;
    top: -9999px;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ===================================================
   LOADER (Exact original match)
   =================================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#movingBallG {
    position: relative;
    width: 200px;
    height: 20px;
}

.movingBallLineG {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

.movingBallG {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    animation: moveBallG 1.4s ease-in-out infinite;
}

@keyframes moveBallG {
    0%, 100% { left: 0; }
    50% { left: calc(100% - 14px); }
}

/* ===================================================
   HEADER (Fixed layout - no overlap)
   =================================================== */
.monolit-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 100;
    transition: all 0.4s ease;
}

.monolit-header.scrolled {
    background: rgba(0, 0, 0, 0.92);
    height: 80px;
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 4vw;
    position: relative;
}

.logo-holder {
    flex-shrink: 0;
    width: 150px;
    z-index: 21;
}

.monolit-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.nav-holder {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 20;
}

.monolit_main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.monolit_main-nav li {
    position: relative;
}

.monolit_main-nav li a {
    display: block;
    padding: 8px 12px;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.monolit_main-nav li a:hover,
.monolit_main-nav li a.act-link {
    color: #fff;
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.96);
    min-width: 230px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid #c19b76;
    backdrop-filter: blur(10px);
}

.has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    padding: 8px 22px !important;
    font-size: 11px !important;
    white-space: nowrap;
    display: block;
}

.sub-menu li a:hover {
    color: #c19b76 !important;
    padding-left: 28px !important;
}

/* Nav Button (Mobile) */
.nav-button-holder {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    z-index: 25;
}

.nav-button {
    width: 28px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.nav-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: all 0.35s ease;
}

.nav-button span:nth-child(1) { top: 0; }
.nav-button span:nth-child(2) { top: 9px; }
.nav-button span:nth-child(3) { top: 18px; }

.nav-button.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.nav-button.active span:nth-child(2) { opacity: 0; }
.nav-button.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* Share button */
.show-share {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
    z-index: 21;
    display: none;
}

.show-share:hover { color: #fff; }

/* ===================================================
   HERO SLIDER (Full Height)
   =================================================== */
.full-height {
    height: 100vh;
    min-height: 90vh;
}

.hero-wrap { position: relative; width: 100%; height: 100%; }

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    opacity: 0.2;
    z-index: 2;
}

.hero-slide .bg {
    position: absolute;
    top: -50px; left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-wrap-item {
    position: absolute;
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.center-item {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-wrap-item h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-wrap-item h2 {
    font-size: 72px;
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-wrap-item h3 { animation: slideUp 0.8s ease forwards 0.3s; }
.hero-slide.active .hero-wrap-item h2 { animation: slideUp 0.8s ease forwards 0.5s; }
.hero-slide.active .hero-wrap-item .hero-link { animation: slideUp 0.8s ease forwards 0.7s; }

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

.hero-link {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 12px 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.hero-link:hover {
    background: #fff;
    color: #333;
    border-color: #fff;
}

/* Slider Nav Arrows */
.customNavigation {
    position: absolute;
    bottom: 50%;
    right: 40px;
    transform: translateY(50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customNavigation a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.customNavigation a:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.dot.active { background: #fff; border-color: #fff; }
.dot:hover { border-color: #fff; }

/* ===================================================
   PAGE SECTIONS
   =================================================== */
.monolit_sec {
    position: relative;
}

.monolit_page_sec {
    padding: 100px 0;
    overflow: hidden;
}

/* Section Numbers */
.sect-subtitle {
    position: absolute;
    font-size: 250px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.1s linear;
}

.right-align-dec { right: -20px; top: 50px; }
.left-align-dec { left: -20px; top: 50px; }

.dark-bg .sect-subtitle { color: rgba(255,255,255,0.05); }

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.algn-right { text-align: right; }

.dec-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c19b76;
    margin-top: 15px;
    margin-left: auto;
}

/* Text styles */
p { margin-bottom: 18px; }

.no-rep {
    font-size: 14px;
    line-height: 1.9;
    color: #777;
}

.dark-bg .section-title { color: #fff; }
.dark-bg p, .dark-bg .no-rep { color: rgba(255,255,255,0.75); }

/* ===== Section 01 - Vision ===== */
.parallax-box {
    transition: transform 0.1s linear;
}

.single-slider-holder {
    overflow: hidden;
}

.single-slider-holder img {
    transition: transform 0.5s ease;
}

.single-slider-holder:hover img {
    transform: scale(1.05);
}

/* Process Box */
.process-box {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
}

.process-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.creat-list {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.creat-list li { position: relative; }

.creat-list li::after {
    content: '/';
    margin: 0 8px;
    color: #ccc;
}

.creat-list li:last-child::after { display: none; }

.creat-list li a {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creat-list li a:hover { color: #c19b76; }

/* Anim Button */
.btn.anim-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn.anim-button::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: #333;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn.anim-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn.anim-button i { transition: transform 0.3s ease; }
.btn.anim-button:hover i { transform: translateX(5px); }

.fl-l { float: left; }

/* ===== Section 02 - Facts / Dark BG ===== */
.dark-bg {
    background: #1a1a1a;
    position: relative;
}

.parallax-inner {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}

.parallax-inner .bg {
    position: absolute;
    top: -100px; left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-size: cover;
    background-position: center;
}

.parallax-inner .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
}

.dark-bg section { position: relative; z-index: 2; }

/* Facts Grid */
.facts-row { margin-top: 50px; }

.inline-facts-holder {
    display: flex;
    gap: 0;
}

.inline-facts {
    flex: 1;
    text-align: center;
    transition: transform 0.1s linear;
}

.milestone-counter { margin-bottom: 15px; }

.num {
    font-size: 72px;
    font-weight: 100;
    color: #fff;
    line-height: 1;
}

.inline-facts h6 {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Section 03 - Portfolio ===== */
.portfolios_parallax-element { margin-top: 50px; }

.portfolio-item { margin-bottom: 80px; }

.parallax-item { position: relative; }

.paralax-media {
    position: relative;
    overflow: hidden;
}

.paralax-media .creat-list {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 3;
    flex-direction: column;
}

.paralax-media .creat-list li::after { display: none; }

.paralax-media .creat-list li { margin-bottom: 5px; }

.paralax-media .creat-list li a {
    color: #fff;
    font-size: 10px;
    background: rgba(0,0,0,0.45);
    padding: 4px 12px;
    display: inline-block;
}

.paralax-wrap { overflow: hidden; cursor: pointer; }

.paralax-wrap img { transition: transform 0.6s ease; }

.parallax-item:hover .paralax-wrap img { transform: scale(1.05); }

/* Parallax Deck */
.parallax-deck {
    position: absolute;
    transition: transform 0.1s linear;
}

.left-direction .parallax-deck {
    right: -50%;
    bottom: 40px;
}

.right-direction .parallax-deck {
    left: -50%;
    bottom: 40px;
}

.parallax-deck-item {
    background: #fff;
    padding: 30px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-width: 280px;
}

.folio-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
}

.parallax-deck-item .btn.anim-button { font-size: 11px; }

/* Custom Link Holder */
.custom-link-holder {
    text-align: center;
    margin-top: 40px;
}

/* ===================================================
   FOOTER (Modern Premium Redesign)
   =================================================== */
.height-emulator { height: 0; }

.content-footer {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}

.content-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c19b76 30%, #e8c99b 50%, #c19b76 70%, transparent 100%);
}

.content-footer .container { position: relative; z-index: 2; }

.footer-widgets-holder { margin-bottom: 0; }

/* Footer Main Row */
.content-footer > .container > .row {
    padding: 70px 0 40px;
}

/* Footer Logo */
.footer-logo {
    max-width: 280px;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 250px;
    width: 100%;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-logo p { max-width: 350px; }

/* Footer Items - Modern Cards */
.footer-item {
    margin-bottom: 20px;
    padding: 24px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #c19b76, #8a6d4e);
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.footer-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(193,155,118,0.12);
    transform: translateY(-2px);
}

.footer-item:hover::before {
    height: 100%;
}

.footer-item .text-link {
    font-size: 11px;
    font-weight: 500;
    color: #c19b76;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    display: block;
    position: relative;
    padding-bottom: 12px;
}

.footer-item .text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    background: rgba(193,155,118,0.4);
}

.footer-item ul li {
    margin-bottom: 8px;
}

.footer-item ul li a,
.footer-item ul li span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    font-weight: 300;
    display: inline-block;
}

.footer-item ul li a:hover {
    color: #c19b76;
    transform: translateX(4px);
}

/* Footer Social Row - Modern Icons */
.footer-social-row {
    display: flex;
    gap: 12px;
    margin: 0 0 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-social-row a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.footer-social-row a:hover {
    color: #1a1a1a;
    background: #c19b76;
    border-color: #c19b76;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193,155,118,0.3);
}

/* Footer Copyright - Modern */
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding: 25px 0;
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.copyright a {
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1px;
}

.copyright a:hover {
    color: #c19b76;
    border-color: #c19b76;
}

.to-top {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.to-top::after {
    content: '↑';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.to-top:hover {
    color: #c19b76;
}

.to-top:hover::after {
    border-color: #c19b76;
    background: rgba(193,155,118,0.1);
    transform: translateY(-2px);
}

/* Footer Canvas */
.particular.footer-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.25;
}

/* ===== Fixed Footer (Left Side Social) ===== */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50px;
    z-index: 50;
    padding: 20px 0 30px;
}

.footer-social ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-social ul li a {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social ul li a:hover { color: #c19b76; }

/* ===== Scroll Animations ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #c19b76; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a07f5e; }

/* ===================================================
   NEW FEATURE 1: LIGHTBOX
   =================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(0,0,0,0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 99999;
}

.lightbox-close:hover { 
    background: #c19b76;
    border-color: #c19b76;
    color: #fff;
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-info {
    padding: 20px 0;
    text-align: center;
}

.lightbox-info h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 5px;
}

.lightbox-info p {
    color: #c19b76;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================================
   NEW FEATURE 2: INQUIRY MODAL
   =================================================== */
.inquiry-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.inquiry-overlay.active {
    opacity: 1;
    visibility: visible;
}

.inquiry-modal {
    background: #1a1a1a;
    border: 1px solid rgba(193,155,118,0.2);
    border-radius: 4px;
    padding: 45px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.inquiry-overlay.active .inquiry-modal {
    transform: translateY(0);
}

.inquiry-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.inquiry-close:hover { color: #c19b76; }

.inquiry-header { margin-bottom: 30px; text-align: center; }

.inquiry-header h3 {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
}

.inquiry-header p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    margin-bottom: 15px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 16px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 300;
    border-radius: 2px;
    transition: border-color 0.3s ease;
    outline: none;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.inquiry-form select {
    color: rgba(255,255,255,0.3);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.inquiry-form select option {
    background: #1a1a1a;
    color: #fff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: #c19b76;
}

.inquiry-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 1px solid #c19b76;
    color: #c19b76;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.inquiry-submit:hover {
    background: #c19b76;
    color: #1a1a1a;
}

.inquiry-success {
    text-align: center;
    padding: 30px 0;
}

.inquiry-success i {
    font-size: 60px;
    color: #c19b76;
    margin-bottom: 20px;
}

.inquiry-success h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.inquiry-success p {
    color: rgba(255,255,255,0.6);
}

/* ===================================================
   NEW FEATURE 3: QUICK ACTIONS DOCK (Unified Premium Panel)
   =================================================== */
.quick-actions-dock {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(193, 155, 118, 0.15);
    border-radius: 35px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: dockFadeIn 0.8s ease forwards;
}

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

.dock-item {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base button styling inside dock */
.dock-item button,
.dock-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Hover effects based on type */
.dock-item.consultation button {
    background: rgba(193, 155, 118, 0.1);
    border: 1px solid rgba(193, 155, 118, 0.25);
    color: #c19b76;
}
.dock-item.consultation button:hover {
    background: #c19b76;
    color: #111;
    border-color: #c19b76;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 0 20px rgba(193, 155, 118, 0.4);
}

.dock-item.whatsapp a {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25D366;
}
.dock-item.whatsapp a:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* Chatbot Toggle in Dock */
.chatbot-toggle-wrapper {
    position: relative;
}

.chatbot-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(193, 155, 118, 0.1);
    border: 1px solid rgba(193, 155, 118, 0.25);
    color: #c19b76;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.chatbot-toggle:hover {
    background: linear-gradient(135deg, #c19b76 0%, #8a6d4e 100%);
    color: #fff;
    border-color: #c19b76;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 0 20px rgba(193, 155, 118, 0.4);
}

/* Chatbot badge */
.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a1a1a;
    animation: badgePulse 2s infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Dock tooltip styling */
.dock-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(193, 155, 118, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.dock-item:hover .dock-tooltip,
.chatbot-toggle-wrapper:hover .dock-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ===== CHATBOT WINDOW (Modern Position next to dock) ===== */
.chatbot-window {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 380px;
    height: 520px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(193,155,118,0.15);
    z-index: 10001;
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


/* Chat Header */
.chatbot-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(193,155,118,0.15);
    flex-shrink: 0;
}

.chatbot-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c19b76;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.chatbot-header-avatar img {
    width: 28px;
    height: auto;
}

.chatbot-header-info { flex: 1; }

.chatbot-header-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    display: inline-block;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chatbot-minimize {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.chatbot-minimize:hover { color: #c19b76; }

/* Chat Body */
.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #111;
}

.chatbot-body::-webkit-scrollbar { width: 4px; }
.chatbot-body::-webkit-scrollbar-track { background: transparent; }
.chatbot-body::-webkit-scrollbar-thumb { background: rgba(193,155,118,0.3); border-radius: 4px; }

/* Messages */
.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: messageIn 0.3s ease;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot { align-self: flex-start; }
.chat-message.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #c19b76;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

.chat-message.user .chat-avatar {
    background: #333;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
}

.chat-message.bot .chat-bubble {
    background: #1e1e1e;
    color: rgba(255,255,255,0.85);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255,255,255,0.06);
}

.chat-message.user .chat-bubble {
    background: linear-gradient(135deg, #c19b76, #a07f5e);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-time {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    margin-top: 5px;
    display: block;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-items: center;
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* Quick Replies */
.chatbot-quick-replies {
    padding: 8px 16px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    max-height: 90px;
    overflow-y: auto;
}

.quick-reply-btn {
    background: rgba(193,155,118,0.1);
    border: 1px solid rgba(193,155,118,0.25);
    color: #c19b76;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.quick-reply-btn:hover {
    background: #c19b76;
    color: #111;
    border-color: #c19b76;
}

/* Chat Input */
.chatbot-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.chatbot-input-area input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 24px;
    color: #fff;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-input-area input::placeholder { color: rgba(255,255,255,0.3); }
.chatbot-input-area input:focus { border-color: rgba(193,155,118,0.5); }

.chatbot-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c19b76, #8a6d4e);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-input-area button:hover {
    transform: scale(1.08);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media only screen and (max-width: 1036px) {
    .nav-button-holder { display: block; }
    
    .lang-switch {
        margin-right: 60px; /* clear the absolute menu button */
    }

    .nav-holder {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(0,0,0,0.96);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(20px);
        z-index: 20;
    }

    .nav-holder.open { opacity: 1; visibility: visible; }

    .monolit_main-nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .monolit_main-nav li a {
        float: none !important;
        font-size: 18px;
        padding: 10px 20px;
        display: block;
        text-align: center;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        min-width: auto;
        padding: 5px 0;
        text-align: center;
    }

    .sub-menu li a {
        text-align: center;
    }

    .logo-holder { left: 40%; position: relative; }

    .header-inner { padding: 0 30px; width: 100%; }

    .show-share { display: none; }

    .col-md-2, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8 {
        width: 100%;
    }

    .row { flex-direction: column; }

    .portfolio-item .col-md-5 { display: none; }

    .left-direction .parallax-deck,
    .right-direction .parallax-deck {
        position: relative;
        right: 0; left: 0;
        bottom: 0;
        margin-top: -30px;
    }

    .sect-subtitle { font-size: 150px; }

    .hero-wrap-item h2 { font-size: 48px; letter-spacing: 4px; }
    .hero-wrap-item h3 { font-size: 14px; letter-spacing: 2px; }

    .inline-facts-holder { flex-direction: column; gap: 30px; }

    .footer-main { flex-wrap: wrap; }

    .fixed-footer { display: none; }

    .customNavigation { right: 20px; }

    .chatbot-window { width: 340px; height: 480px; }
}

@media only screen and (max-width: 640px) {
    .header-inner { padding: 0 10px; }

    .logo-holder { left: 0; }

    .hero-wrap-item h2 { font-size: 36px; letter-spacing: 3px; }
    .hero-wrap-item h3 { font-size: 12px; }

    .hero-link { padding: 10px 25px; font-size: 11px; }

    .section-title { font-size: 26px; }

    .sect-subtitle { font-size: 100px; }

    .num { font-size: 48px; }

    .monolit_page_sec { padding: 60px 0; }

    .parallax-deck-item { padding: 20px; }

    .folio-title { font-size: 18px; }

    .footer-wrap { flex-direction: column; align-items: flex-end; gap: 10px; }

    .customNavigation { right: 15px; }
    .customNavigation a { width: 40px; height: 40px; font-size: 20px; }

    .quick-actions-dock {
        bottom: 16px;
        right: 16px;
        flex-direction: row;
        border-radius: 30px;
        padding: 8px;
        gap: 10px;
    }

    .dock-item,
    .chatbot-toggle {
        width: 44px;
        height: 44px;
    }

    .dock-item button,
    .dock-item a {
        font-size: 18px;
    }

    .dock-tooltip {
        display: none !important;
    }

    .chatbot-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 110px);
        max-height: 500px;
        right: 16px;
        bottom: 80px;
        border-radius: 16px;
    }

    .inquiry-modal { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 10px; }
}



/* ===================================================
   NEW FEATURE: BILINGUAL SUPPORT & RTL MODE
   =================================================== */
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #c19b76;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 155, 118, 0.3);
    margin-right: 15px;
    z-index: 50;
}
.lang-switch:hover {
    background: rgba(193, 155, 118, 0.2);
    box-shadow: 0 0 10px rgba(193, 155, 118, 0.4);
}

/* Ask AI Button */
.ask-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(30, 215, 96, 0.15);
    border: 1px solid #1ed760;
    color: #1ed760;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
.ask-btn:hover {
    background: #1ed760;
    color: #fff;
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.4);
}
.rtl-mode .ask-btn {
    margin-left: 0;
    margin-right: 10px;
}

/* Chatbot Translate Button */
.chat-translate-btn {
    font-size: 11px;
    color: #c19b76;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    display: block;
    text-align: right;
    width: 100%;
}
.chat-translate-btn:hover {
    text-decoration: underline;
}

/* Lightbox Close Button */
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
}

/* RTL MODE */
body.rtl-mode {
    font-family: 'Cairo', 'Roboto', sans-serif; /* Fallback */
}
.rtl-mode .header-inner {
    flex-direction: row-reverse;
}
.rtl-mode .nav-holder {
    justify-content: flex-start;
}
.rtl-mode .monolit_main-nav {
    flex-direction: row-reverse;
}
.rtl-mode .show-share {
    margin-left: 15px;
    margin-right: 0;
}
.rtl-mode .lang-switch {
    margin-left: 15px;
    margin-right: 0;
}

.rtl-mode .sect-subtitle.right-align-dec {
    right: auto;
    left: 4%;
}
.rtl-mode .sect-subtitle.left-align-dec {
    left: auto;
    right: 4%;
}
.rtl-mode .algn-right {
    text-align: left;
}
.rtl-mode .parallax-item.left-direction {
    padding-left: 0;
    padding-right: 40px;
}
.rtl-mode .parallax-item.right-direction {
    padding-right: 0;
    padding-left: 40px;
}
.rtl-mode .btn i {
    transform: scaleX(-1);
    margin-left: 0;
    margin-right: 15px;
}
.rtl-mode .chat-bubble {
    text-align: right;
}
.rtl-mode .chat-message {
    flex-direction: row-reverse;
}
.rtl-mode .chat-avatar {
    margin-right: 0;
    margin-left: 10px;
}
.rtl-mode .chat-time {
    right: auto;
    left: 10px;
}

.rtl-mode .chatbot-header-info {
    text-align: right;
}
.rtl-mode .chat-translate-btn {
    text-align: left;
}

/* Image Watermark */
.image-watermark {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 5;
    background: rgba(0,0,0,0.5);
    padding: 5px 0;
}

/* ===================================================
   MOBILE HEADER AND NAVIGATION CORRECTIONS (LTR/RTL)
   =================================================== */
@media only screen and (max-width: 1036px) {
    /* 1. Reset any layout/overlap overrides on lang-switch */
    .lang-switch {
        margin: 0 !important;
    }
    
    /* 2. Absolute center the logo */
    .logo-holder {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 21;
    }

    /* 3. Position the Language switcher on the left */
    .header-inner .lang-switch {
        position: absolute !important;
        left: 30px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        z-index: 50;
    }

    /* 4. Position the Mobile Hamburger Menu on the right (Same for English & Arabic) */
    .nav-button-holder {
        position: absolute !important;
        right: 30px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: block !important;
        z-index: 25;
    }

    /* 5. Force vertical centering layout inside the Arabic menu drawer (same as English) */
    .rtl-mode .nav-holder {
        justify-content: center !important;
    }
    .rtl-mode .monolit_main-nav {
        flex-direction: column !important;
    }
}

@media only screen and (max-width: 640px) {
    /* Adjust control margins on very small screens */
    .header-inner .lang-switch {
        left: 15px !important;
        right: auto !important;
    }
    .nav-button-holder {
        right: 15px !important;
        left: auto !important;
    }
    .logo-holder {
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

