/* ==========================================================================
   Core CSS - Utility Classes & Components
   ========================================================================== */

/* Container */
.container { max-width: 1080px; margin: 0 auto; }
.max-container { margin: 0 auto; max-width: 1440px; }
.mobile-container { max-width: 414px; margin: 0 auto; }

/* Clear */
.clear { clear: both !important; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Floats */
.float-left { float: left; }
.float-right { float: right; }
.left { float: left !important; }
.right { float: right !important; }
.clearfix::after { content: ""; display: table; clear: both; }

/* Backgrounds */
.bg-white { background: #ffffff; }
.bg-black { background: #000; }
.bg-grey { background: #e6e6e6; }
.bg-dark { background-color: #191919; }
.bg-primary { background: #02245B; }
.bg-secondary { background: #151515; }
.bg-third { background: #222831; }

/* Colors */
.text-white { color: #fff; }
.text-black { color: #000; }
.color-text-primary { color: #02245b; }
.color-text-secondary { color: #ff5e14; }

/* Borders */
.border { border: 1px solid #ddd; }
.border-t { border-top: 1px solid #ddd; }
.border-b { border-bottom: 1px solid #ddd; }
.border-l { border-left: 1px solid #ddd; }
.border-r { border-right: 1px solid #ddd; }
.border-none { border: none; }

/* Borders Radius */
.br-100 { border-radius: 100px; }
.br-2 { border-radius: 2px; }
.br-3 { border-radius: 3px; }
.br-4 { border-radius: 4px; }
.br-5 { border-radius: 5px; }
.br-6 { border-radius: 6px; }
.br-7 { border-radius: 7px; }
.br-8 { border-radius: 7px; }

/* Padding */
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pl-5 { padding-left: 5px; }
.pl-10 { padding-left: 10px; }
.pl-20 { padding-left: 20px; }
.pr-5 { padding-right: 5px; }
.pr-10 { padding-right: 10px; }
.pr-20 { padding-right: 20px; }

/* Margin */
.m-5 { margin: 5px; }
.m-10 { margin: 10px; }
.m-20 { margin: 20px; }
.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.ml-5 { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.ml-20 { margin-left: 20px; }
.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 10px; }
.mr-20 { margin-right: 20px; }
.mt-1 { margin-top: 1px; }
.mb-1 { margin-bottom: 1px; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center, .center { text-align: center; }
.text-right { text-align: right; }

/* Text Size */
.text-uppercase { text-transform: uppercase; }
.text-10 { font-size: 10px; }
.text-12 { font-size: 12px; }
.text-14 { font-size: 14px; }
.text-16 { font-size: 16px; }
.text-18 { font-size: 18px; }
.text-20 { font-size: 20px; }
.text-22 { font-size: 22px; }
.text-24 { font-size: 24px; }
.text-26 { font-size: 26px; }
.text-28 { font-size: 28px; }
.text-30 { font-size: 30px; }
.text-32 { font-size: 32px; }
.text-34 { font-size: 34px; }
.text-36 { font-size: 36px; }

/* Font Weight */
.weight-100 { font-weight: 100; }
.weight-200 { font-weight: 200; }
.weight-300 { font-weight: 300; }
.weight-400 { font-weight: 400; }
.weight-500 { font-weight: 500; }
.weight-600 { font-weight: 600; }
.weight-700 { font-weight: 700; }
.weight-800 { font-weight: 800; }
.weight-900 { font-weight: 900; }
.space-nowrap { white-space: nowrap; }

/* Flexbox */
.flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
.flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }
.flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-1 { gap: 1px; }
.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.align-space-between { align-content: space-between; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* Overflow */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-scroll { overflow-x: scroll; }
.overflow-y-scroll { overflow-y: scroll; }
.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* Transitions */
.transition-all { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.transition-colors { transition: background-color 0.3s ease, color 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-999 { z-index: 999; }

/* Width */
.width-full { width: 100%; }
.width-50 { width: 50%; }
.height-100 { height: 100vh; }

/* Line Clamp */
.line-clamp-1 { -webkit-box-orient: vertical; -webkit-line-clamp: 1; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; }
.line-clamp-2 { -webkit-box-orient: vertical; -webkit-line-clamp: 2; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; line-height: 1.4; }
.line-clamp-3 { -webkit-box-orient: vertical; -webkit-line-clamp: 3; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; line-height: 1.4; }
.line-clamp-4 { -webkit-box-orient: vertical; -webkit-line-clamp: 4; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; line-height: 1.4; }
.line-clamp-5 { -webkit-box-orient: vertical; -webkit-line-clamp: 5; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; line-height: 1.4; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header_container { height: 80px; }
.desktop-navigation ul li a { display: block; font-weight: 700; font-size: 18px; padding: 10px 8px; text-transform: uppercase; font-family: 'Primary-Font', sans-serif; position: relative; }
.desktop-navigation ul li a::after { content: ""; position: absolute; left: 0; bottom: 0px; width: 0; height: 4px; background: #ca0101; transition: width 0.3s ease; }
.desktop-navigation ul li a:hover::after { width: 100%; }
.desktop-navigation ul li a:hover { color: #ca0101; }
.mobile_header_container { height: 70px; position: relative; }
.mobile_header_left, .mobile_header_right { width: 50px; }

/* Menu Toggle */
.menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus, .menu-toggle { background: #ffffff00; border: none; }
.menu-toggle { cursor: pointer; padding: 10px; }
.mobile-search { display: none; }
.show-mobile-search { display: block; }
.mobile-menu-float {box-sizing: border-box;display: none;height: auto;left: auto;position: fixed;top: 70px;width: 280px;}
.mobile-post-info .post-archive-info { font: 12px Montserrat, sans-serif; }
.mobile-posts-list { border-bottom: 1px solid #dedede; padding: 5px; }
.mobile-posts-list-img img { width: 100%; height: 100%; object-fit: cover; }
.mobile-posts-list-title { display: grid; width: 100%; }
.mobile-scroll { height: 100vh; overflow: scroll; }
.mobile-menu li a:after { background-image: url(../images/arrows/arrow-next.svg); background-position: right; background-repeat: no-repeat; background-size: 15px; content: ""; width: 20px; height: 20px; position: absolute; right: 0; top: 50%; transform: translate(-50%, -50%); }
.mobile-menu li a { border-bottom: 1px solid #8d8d8d54; display: block; padding: 16px 15px; text-transform: uppercase; position: relative; font-size: 18px; font-weight: 700; }
.footer-menu-float li a {border-bottom: 1px solid #8d8d8d54;display: block;font-size: 14px;padding: 10px 15px;text-transform: uppercase;}
.menu-overlay {background-color: #000000bd;display: none;height: 100%;left: 0;position: fixed;top: 70px;width: 100%;}
.menu-is-open { display: block; }
.body-menu-open { overflow: hidden; width: 100%; height: 100%; }

/* Dark Mode Switcher */
.wpnm-button-inner-left:before, .wpnm-button-inner-left:after { box-sizing: border-box; margin: 0; padding: 0; transition: .2s ease-in-out; outline: none; }
.wpnm-button .wpnm-button-inner-left:before { content: ''; display: block; position: absolute; z-index: 1; height: 20px; width: 20px; margin: 4px; border-radius: 100%; right: 22px; bottom: 0px; background: #FFB200; transform: rotate(-45deg); box-shadow: 0 0 .625em #fff; }
.wpnm-button .wpnm-button-inner-left:after { content: ''; display: inline-block; width: 50px; height: 28px; border-radius: 100px; background: rgba(255, 255, 255, 0.15); vertical-align: middle; border: 2px solid #FFB200; }
.dark-mode-active .wpnm-button-inner-left:before { right: 6px; box-shadow: 4px 4px 0 0 #eee; background: transparent; }
.dark-mode-active .wpnm-button-inner-left:after { background: #000; border: .125em solid #fff; }
.dark-mode { background: #505050; }
.dark-mode .bg-black { background: #303030; color: #ececec; }
.dark-mode .bg-grey { background: #3e3e3e; color: #ececec; }
.dark-mode .bg-dark-mode { background: #505050; color: white; border: 1px solid #000000; }
.dark-mode a, .dark-mode .text-black { color: white; }
.dark-mode .svg-icon, .dark-mode .svg-img { filter: brightness(0) saturate(100%) invert(1); }

/* Toggle Button */
.toggle-button { height: 50px; padding: 10px 20px; white-space: nowrap; width: 260px; z-index: 999; position: relative; background: #000000; }
.desktop_menu_css { white-space: nowrap; }
.desktop-navigation { overflow: hidden; }

/* ==========================================================================
   Home Page
   ========================================================================== */

/* Form Hero */
.form-hero-home { position: absolute; top: 50%; left: 0; z-index: 9999; right: 0; margin-top: -40px; }
.services-list:hover .services-home-bottom { opacity: 0.9; }

/* SVG Images - Explicit Dimensions */
.svg-img { display: inline-block; vertical-align: middle; }
img.svg-img[width]:not([height]) { height: auto; }
img[src$=".svg"]:not([height]) { height: auto; }

/* Head Title */
.head_title_home { overflow: hidden; display: block; padding: 20px 0; font-size: 28px; text-transform: uppercase; }
.head_title_home:after, .head_title_home:before {background-color: #ffffff;content: "";display: inline-block;height: 4px;position: relative;vertical-align: middle;width: 10%;}
.head_title_home:before { right: .5em; margin-left: -50%; }
.head_title_home:after { left: .5em; margin-right: -50%; }


/* ==========================================================================
   Content
   ========================================================================== */
.content-text h1, .content-text h2, .content-text h3, .content-text h4, .content-text h5 { margin-bottom: 10px; font-size: 26px; }
.content-full h1, .content-full h2, .content-full h3, .content-full h4, .content-full h5, .content-full h6 { margin-bottom: 15px; }
.cotent-text p, .content-full p { font-size: 16px; margin-bottom: 30px; }
.cotent-text p strong { font-size: 22px; margin-bottom: 10px; }
.cotent-text ul li { margin-bottom: 20px; font-size: 18px; list-style: inside; }
.cotent-text { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
.tags-single a:before { content: "#"; }
.tags-single a { padding: 10px; color: #666666; font-weight: 700; display: inline-block; }

/* Blog Posts */
.blog-post-home-title { font-size: 18px; }

/* Sidebar */
.sidebar { width: 300px; }
.sidebar-sticky { position: sticky; top: 10px; }
.page-single-warpper {width: 760px;-webkit-box-flex: 0;-ms-flex: 0 0 760px;flex: 0 0 760px;max-width: 760px;margin: 0 auto;}

/* Pagination */
.pagination ul { display: flex; justify-content: space-between; }
.pagination ul li a { display: block; border: 1px solid #000000; padding: 10px 15px; background: #ffffff; }
.pagination ul li .current { display: block; border: 1px solid #000000; padding: 10px 15px; background: #000000; color: white; }

/* Contact Form */
.wpcf7-form label { border: 1px solid #a6a6a6; padding: 6px 12px; border-bottom: none; display: inline-block; }
.wpcf7-form input { margin-bottom: 15px; }
.wpcf7-not-valid-tip { color: #d60000; font-weight: 700; }
#wpcf7-f2065-o1-ve-your-name, #wpcf7-f2065-o1-ve-your-email, #wpcf7-f2065-o1-ve-your-subject, #wpcf7-f2065-o1-ve-your-message { color: #d60000; font-weight: 700; }
.wpcf7-form-control-wrap .wpcf7-not-valid { border: 3px solid #d60000; }

/* Tooltip */
.tooltip-container { position: relative; display: inline-block; }
.tooltip-button { padding: 10px 20px; font-size: 16px; cursor: pointer; }
.tooltip-text { visibility: hidden; width: 100px; color: #fff; text-align: center; border-radius: 5px; padding: 5px 0; position: absolute; z-index: 1; bottom: 150%; left: 50%; margin-left: -50px; opacity: 0; transition: opacity 0.3s; background-color: #000000; }
.tooltip-text::after { content: ''; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: #000000 transparent transparent transparent; }
.tooltip-container:hover .tooltip-text { visibility: visible; opacity: 1; }

/* Scroll Top */
.scroll-Top {background-color: #000000;background-image: none;border: 2px solid #ffffff;border-radius: 100px;cursor: pointer;position: fixed;width: 50px;height: 50px;padding: 10px;bottom: 60px;right: 10px;z-index: 999;transition: all 0.5s ease;}
.scroll-Top-active { opacity: 1; transform: translateY(0); }

/* Open Hours */
.open-hours { border: 1px solid #dddddd; }
.open-hours li { padding: 10px; border-collapse: collapse; border: 1px solid #dddddd; margin: 0; display: flex; justify-content: space-between; border-radius: 0; }
.open-hours tr:hover { background: #f7f8fa; cursor: pointer; }
.current-day { background-color: #e3f2fd; font-weight: bold; color: #1976d2; }
.Sunday { background-color: #ffebee; color: #c62828; }

.pulse { width: 10px; height: 10px; background-color: #94ff00; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }

/* Coming Soon */
.cooming-soon { display: flex; justify-content: center; align-items: center; height: 100vh; background: #777777; }
.cooming-soon-container { max-width: 600px; }
.cooming-soon-warpper { background: #d00000; padding: 20px; margin: 20px; border-radius: 10px; border: 5px solid #9b0000; text-align: center; }
.cooming-soon-title { font-size: 38px; margin: 0; color: #ffffff; text-transform: uppercase; }
.cooming-soon-domain { text-transform: uppercase; font-size: 24px; margin: 30px 0; padding: 20px 0; color: #ffffff; background: -webkit-gradient(linear, right top, left top, from(#ffffff00), color-stop(50%, #ab0000), to(#ffffff00)); background: linear-gradient(to left, #ffffff00 0%, #ab0000 50%, #ffffff00 100%); position: relative; }
.cooming-soon-domain:before { content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 100%; background: -webkit-gradient(linear, right top, left top, from(rgba(255, 0, 0, 0)), color-stop(50%, #ab0000), to(rgba(255, 0, 0, 0))); background: linear-gradient(to left, rgba(255, 0, 0, 0) 0%, #ab0000 50%, rgba(255, 0, 0, 0) 100%); }
.cooming-soon-domain:after { content: ''; position: absolute; bottom: 0; left: 0; height: 3px; width: 100%; background: -webkit-gradient(linear, right top, left top, from(rgba(255, 0, 0, 0)), color-stop(50%, #ab0000), to(rgba(255, 0, 0, 0))); background: linear-gradient(to left, rgba(255, 0, 0, 0) 0%, #ab0000 50%, rgba(255, 0, 0, 0) 100%); }
.cooming-soon-paragraf { font-size: 16px; font-family: Arial, sans-serif; color: #ffffff; }

.mobile-footer-box { background-color: #02245b70; }

/* Pagination Buttons */
.page-btn { background: #ffffff; padding: 15px; font-weight: 700; font-size: 18px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; line-height: normal; }
.disabled-btn { opacity: 0.5; cursor: not-allowed; }
.prev-btn:hover, .next-btn:hover:not(.disabled-btn) { opacity: 0.8; }
.current-page { background: #ffffff; padding: 15px; font-weight: 700; font-size: 18px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; line-height: normal; }
.pagination .page-numbers { font-size: 22px; }

/* Contact Page */
.contact-submit-btn { display: block !important; width: 100%; margin-top: 20px; border-radius: 4px; }
.contact-page-left-box { background-color: #f8f8f8; display: grid; }
.fdfgre { font-size: 22px; }
.info-icon-svg { width: 50px; height: 50px; background: #bf0000; flex: 0 0 50px; }

/* 404 Page */
.page-not-found { height: 100vh; }
.button-primary { border-radius: 4px; padding: 14px 28px; font-size: 14px; text-transform: uppercase; font-weight: 700; color: #ffffff; background-color: #ff5e14; text-align: center; }
.button-primary:hover { background-color: #f64e01; }
.page-lost {background-image: url(../images/footer-texatur.svg);background-position: center center;background-size: 500px;}

/* Buttons */
.quick-buttons { padding: 10px; border: 4px solid #ffffff; border-radius: 20px; }
.booking-float { background: #fd5e15; }
.float-whatsapp { background: #25d366; }
.float-buttons { position: fixed; right: 20px; bottom: 100px; }
.links-box { border: 3px solid #bd0000d1; padding: 12px; border-radius: 10px; }
.desktop-post-thumbnail { flex: 0 0 280px; flex-shrink: 0; }

.full-img { width: 100%; }

/* Preloader */
.themex-preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #ffffff; z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 1; visibility: visible; transition: opacity 0.5s ease, visibility 0.5s ease; }
.themex-preloader.hidden { opacity: 0; visibility: hidden; }
.themex-preloader-content { display: flex; align-items: center; justify-content: center; animation: themex-pulse 2s ease-in-out infinite; }
.themex-preloader-logo { max-width: 180px; max-height: 180px; width: auto; height: auto; display: block; }
@keyframes themex-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }

/* Opening Hours */
.themex-opening-hours { display: flex; flex-direction: column; gap: 8px; }
.themex-opening-hours-row { display: flex; align-items: baseline; gap: 8px; line-height: 1.6; }
.themex-opening-day { font-weight: 600; min-width: 100px; flex-shrink: 0; }
.themex-opening-time { flex: 1; }

@media (max-width: 782px) {
   .themex-opening-day { min-width: 80px; }
}


.work-done {
    background-image: url(../images/footer-texatur.svg);
    background-position: center center;
    background-size: 300px;
}

.work-done-box {
    border: 1px solid #ffffff;
}


.section-hero {
    background-image: url(../images/topography.svg);
    background-position: center;
    background-repeat: repeat;
    background-size: 800px;
    background-color: #000000;
}

.height-full {
    height: 100vh;
}

.text-border {
    color: #0000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    text-transform: uppercase;
    /* white-space: nowrap; */
    -webkit-text-fill-color: transparent;
    background-color: #00000000;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: pointer;
}

.dynamic-text-wrapper {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.text-border:hover {
    color: #ffffff;
    background-color: #ffffff;
}

.dynamic-text {
    color: #ca0101;
    display: block;
    transition: transform 0.5s 
ease-in-out;
}

.text-100 {
    font-size: 100px;
}

.skitch-arrow {
    transform-origin: center center;
    transition: transform 0.2s ease-in-out; }


.services-list:hover .skitch-arrow{
    /* Rotate the image by 30 degrees */
    transform: rotate(40deg);
}

.color-monochrome{  filter: grayscale(100%);  transition: filter 0.3s ease;}
.color-monochrome:hover {  filter: grayscale(0%); cursor: pointer;}
