/* ==============================================
   MAIN CSS - Global Styles, Fonts, Navigation
   ============================================== */

/* Custom Fonts */
@font-face {
    font-family: 'Teodor';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67a43490652e83bb1b126729.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teodor';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67a434907d382c36eabe9deb.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teodor';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67a434904b6e58b0b5d74345.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teodor';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67a43490652e83f1cf126728.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teodor';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67a434904b6e580bdcd74343.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Teodor';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67a434902b3899db891b853c.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67bfcb51a5c96e7e08f8be4b.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: url('https://storage.googleapis.com/msgsndr/FahnfAK4Y2D0yi846rOF/media/67bfcb51a5c96e7e08f8be4b.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Root Variables */
:root {
    --primary-color: #1B1B18;
    --secondary-color: #212B33;
    --bg-light: #EDE7DB;
    --bg-dark: #1B1B18;
    --text-primary: #1B1B18;
    --text-secondary: #555;
    --text-light: rgba(237, 231, 219, 0.75);
    --font-primary: 'Teodor', serif;
    --font-secondary: 'OpenSans', 'Open Sans', sans-serif;
    --transition-speed: 0.3s ease;
    --nav-height: 86px;
}

/* Global Styles */
html {
    background-color: var(--bg-light);
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-family: var(--font-secondary);
    font-weight: 300;
}

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

/* Navigation Styles */
.nav-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    background: var(--bg-light);
    transform: translateY(-100%);
    display: none;
    z-index: 1200;
    border-bottom: 1px solid rgba(27, 27, 24, 0.1);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-section.show {
    transform: translateY(0) !important;
    display: block !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    max-width: 100%;
}

.nav-logo img {
    height: auto;
    min-width: 100px;
}

/* Navigation Menu Styles */
#custom-code-Owq07THfuX,
#custom-code-tablet-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    flex: 1;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 45px);
}

/* Main menu buttons */
.nav-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50px;
    background: transparent;
    color: var(--text-primary);
    padding: 0;
    margin: 0 20px;
    font-family: var(--font-secondary);
    font-weight: 100;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.nav-menu-btn .label {
    display: inline-block;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

.nav-menu-btn .label.default {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.nav-menu-btn .label.hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    opacity: 0;
}

.nav-menu-btn:hover .label.default {
    transform: translateY(-150%);
    opacity: 0;
}

.nav-menu-btn:hover .label.hover {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Submenu container */
#solutions-submenu,
#menu-submenu {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    right: 0 !important;
    background: var(--bg-light) !important;
    border: 1px solid var(--text-primary) !important;
    border-radius: 1px !important;
    box-shadow: 1px 1px 3px 0px rgba(27, 27, 24, 0.27) !important;
    padding: 19px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity var(--transition-speed), visibility 0s 0.3s !important;
    z-index: 1300 !important;
}

.nav-menu-btn:hover #solutions-submenu,
.nav-menu-btn:hover #menu-submenu,
#solutions-submenu:hover,
#menu-submenu:hover {
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity var(--transition-speed), visibility 0s 0s !important;
}

/* Submenu items */
.submenu-btn {
    display: flex !important;
    justify-content: flex-end !important;
    text-align: right !important;
    color: var(--text-primary) !important;
    font-family: var(--font-secondary) !important;
    font-weight: 100 !important;
    font-size: 12px !important;
    line-height: 15px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    margin-bottom: 20px !important;
    white-space: nowrap !important;
    width: auto !important;
    pointer-events: auto !important;
    position: relative;
    padding: 0 !important;
}

.submenu-btn:last-child {
    margin-bottom: 0 !important;
}

.submenu-btn .label {
    display: inline-block;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
    text-align: right !important;
}

.submenu-btn .label.default {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.submenu-btn .label.hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    opacity: 0;
}

.submenu-btn:hover .label.default {
    transform: translateY(-150%);
    opacity: 0;
}

.submenu-btn:hover .label.hover {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* CTA Button */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-primary) !important;
    border-radius: 99px !important;
    background: transparent !important;
    color: var(--text-primary) !important;
    padding: 8px 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: var(--font-secondary) !important;
    font-size: clamp(9px, 1.5vw, 12px) !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.btn:hover {
    padding: 7px 15px;
}

.btn .dot {
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
    margin-right: 8px;
    transition: transform var(--transition-speed);
}

.btn .label {
    display: inline-block;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

.btn .label.default {
    position: relative;
}

.btn .label.hover {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(150%);
    opacity: 0;
}

.btn:hover .label.default {
    transform: translateY(-150%);
    opacity: 0;
}

.btn:hover .label.hover {
    transform: translateY(-50%);
    opacity: 1;
}

.btn:hover .dot {
    transform: translateX(3px);
}

/* Navigation Responsiveness */
@media (min-width: 1251px) {
    #section-gs7_Vr7US1,
    #section-p-41UvcD17 {
        display: none !important;
    }
    #section-4hcS9sD17J {
        display: block !important;
    }
}

@media (min-width: 481px) and (max-width: 1250.99px) {
    #section-4hcS9sD17J,
    #section-p-41UvcD17 {
        display: none !important;
    }
    #section-gs7_Vr7US1 {
        display: block !important;
    }
}

@media (max-width: 480.99px) {
    #section-4hcS9sD17J,
    #section-gs7_Vr7US1 {
        display: none !important;
    }
    #section-p-41UvcD17 {
        display: block !important;
    }
}

/* Main Content Sections */
.main-content {
    padding-top: var(--nav-height);
}

section {
    padding: 80px 0;
}

.about-section {
    text-align: center;
    background: var(--bg-light);
}

.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    padding-bottom: 10px;
}

.service-card p {
    padding: 0 20px 20px;
}

.testimonials-section {
    background: var(--bg-light);
}

.contact-section {
    background: #fff;
    text-align: center;
}

.contact-form-placeholder {
    margin-top: 40px;
}

/* Footer Styles */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-menus {
    display: flex;
    gap: 100px;
}

.footer-menu {
    position: relative;
    min-height: 127px;
}

/* Footer Menu Buttons */
.footer-menu-1-btn,
.footer-menu-2-btn {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    border: 1px solid transparent;
    border-radius: 50px;
    background: transparent;
    color: rgba(237, 231, 219, 0.75);
    padding: 6px 10px;
    overflow: hidden;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-sizing: border-box;
    white-space: nowrap;
    width: auto;
    text-align: right;
}

.footer-menu-1-btn:nth-child(1) { top: 0; margin-right: 19px; }
.footer-menu-1-btn:nth-child(2) { top: 25px; margin-right: 14px; }
.footer-menu-1-btn:nth-child(3) { top: 50px; margin-right: 0px; }
.footer-menu-1-btn:nth-child(4) { top: 75px; margin-right: 1px; }
.footer-menu-1-btn:nth-child(5) { top: 100px; margin-right: 31.5px; }

.footer-menu-2-btn:nth-child(1) { top: 0; margin-right: 34px; }
.footer-menu-2-btn:nth-child(2) { top: 25px; margin-right: 33px; }
.footer-menu-2-btn:nth-child(3) { top: 50px; margin-right: 3px; }
.footer-menu-2-btn:nth-child(4) { top: 75px; margin-right: 0px; }

.footer-menu-1-btn:hover,
.footer-menu-2-btn:hover {
    padding: 4px 8px;
}

.footer-menu-1-btn .label,
.footer-menu-2-btn .label {
    display: inline-block;
    white-space: nowrap;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
    text-align: right;
}

.footer-menu-1-btn .label.default,
.footer-menu-2-btn .label.default {
    position: relative;
}

.footer-menu-1-btn .label.hover,
.footer-menu-2-btn .label.hover {
    position: absolute;
    top: 50%;
    right: 5px;
    left: auto;
    transform: translateY(150%);
    opacity: 0;
    color: rgba(237, 231, 219, 1);
}

.footer-menu-1-btn:hover .label.default,
.footer-menu-2-btn:hover .label.default {
    transform: translateY(-150%);
    opacity: 0;
}

.footer-menu-1-btn:hover .label.hover,
.footer-menu-2-btn:hover .label.hover {
    transform: translateY(-50%);
    opacity: 1;
}

/* Footer Certifications */
.footer-middle {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(237, 231, 219, 0.1);
    border-bottom: 1px solid rgba(237, 231, 219, 0.1);
}

#custom-code-bQNqrT9J15 {
    margin-left: 15%;
    margin-right: 15%;
}

.image-section {
    display: flex;
    justify-content: center;
    gap: 2%;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    transition: opacity var(--transition-speed), transform var(--transition-speed), margin var(--transition-speed);
}

.image-item {
    max-width: 100px;
    opacity: 0.75;
}

.image-item:nth-child(-n+3) {
    opacity: 0.65;
}

.image-wrapper:hover {
    opacity: 1;
    transform: scale(1.30);
    margin: 0 10px;
}

/* Footer Social Icons */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
}

.footer-info {
    display: flex;
    gap: 60px;
}

.social-image-section {
    display: flex;
    justify-content: flex-start;
    gap: 2%;
}

.social-image-wrapper {
    position: relative;
    overflow: hidden;
    transition: opacity var(--transition-speed), transform var(--transition-speed), margin var(--transition-speed);
}

.social-image-item {
    max-width: 30px;
    opacity: 0.75;
}

.social-image-wrapper:hover {
    opacity: 1;
    transform: scale(1.30);
    margin: 0 10px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.5;
}

.footer-copyright a {
    color: var(--text-light);
    text-decoration: underline;
}

/* Scroll Up Arrow */
.scroll-up-arrow {
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    max-width: 40px;
    width: 100%;
    z-index: 499;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}

.scroll-up-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-arrow:hover {
    transform: scale(1.14);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 40px 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-menus {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-menu-1-btn,
    .footer-menu-2-btn {
        position: relative;
        left: auto;
        right: auto;
        width: 120px;
        height: 32px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }
    
    .footer-menu-1-btn:nth-child(1),
    .footer-menu-1-btn:nth-child(2),
    .footer-menu-1-btn:nth-child(3),
    .footer-menu-1-btn:nth-child(4),
    .footer-menu-1-btn:nth-child(5),
    .footer-menu-2-btn:nth-child(1),
    .footer-menu-2-btn:nth-child(2),
    .footer-menu-2-btn:nth-child(3),
    .footer-menu-2-btn:nth-child(4) {
        top: auto;
        margin-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-section {
        flex-wrap: nowrap;
    }
    
    .image-item {
        max-width: 60px;
    }
}

@media (max-width: 479.9px) {
    .social-image-item {
        max-width: 20px !important;
    }
}
