:root {
    --color-primary: #001522;
    --color-secondary: #2f4d5f;
    --color-secondary-accent: #2f4d5f59;
    --color-tertiary: #2f4d5f8c;
    --color-white: #FBFBFB;
    --color-gray: #374151;
    --color-gray-light: #f3f4f6;
    --color-gray-lighter: #f8fafc;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --navbar-height: 110px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--color-white);
    background: var(--color-primary);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font: inherit;
}

/* Screen Reader Only - Hidden text for SEO and accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Containers */

.container {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding: 0 100px;
}

.page-section {
    padding: 80px 0;
    position: relative;
    background: transparent;
    z-index: 1;
}

.flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 1750px) {
    .container {
        padding: 0 140px;
    }
}

@media (max-width: 1400px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}


/* Navbar Styles */
.navbar {
    background-color: transparent;
    /* box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1); */
    height: var(--navbar-height);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Logo Styles */
.navbar-logo {
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 999;
}

.navbar-logo a {
    display: block;
}

.logo-container {
    height: 80px;
    padding: 10px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    margin: 2px 0;
    border-radius: 1px;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Styles */
.navbar-nav {
    display: flex;
    align-items: center;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 50px;
}

.nav-overlay {
    display: none;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    height: 100%;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-white);
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:not(.nav-link-cta)::after, .nav-link:not(.nav-link-cta)::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 24px;
    right: 24px;
    height: 1px;
    opacity: 1;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:not(.nav-link-cta)::before{
    filter: blur(2px);
    bottom: 5px;
    padding-bottom: 2px;
    opacity: 0.5;
}

.nav-link:hover::after, .nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link.active::after, .nav-link.active::before {
    transform: scaleX(1);
}

/* CTA Button */
.cta-container {
    position: relative;
}

.nav-link-cta {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    font-weight: 500;
    border-radius: 5pc !important;
    transition: all 0.3s ease;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.cta-container::after, .cta-container::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: conic-gradient(from var(--angle), 
        transparent 20%, 
        rgba(251, 251, 251, 0.8) 40%, 
        var(--color-white) 50%, 
        rgba(251, 251, 251, 0.8) 60%, 
        transparent 80%);
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    padding: 1px 2px;
    border-radius: 5pc;
    animation: 5s spin linear infinite;
    transition: all 1s ease;
}

.cta-container::before {
    padding: 2px 4px;
    filter: blur(2px);
}

@keyframes spin {
    0% { --angle: 0deg; }
    25% { --angle: 100deg; }
    50% { --angle: 180deg; }
    75% { --angle: 260deg; }
    100% { --angle: 360deg; }
}

.cta-container:hover::after,
.cta-container:hover::before {
    animation-play-state: paused;
    background: var(--color-white);
}

.cta-container:hover::before {
    filter: blur(3px);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1750px) {
    .navbar-container {
        padding: 0 140px;
    }
}

@media (max-width: 1400px) {
    .navbar-container {
        padding: 0 50px;
    }
}

@media (max-width: 1240px) {
    .navbar-container {
        padding: 0 20px;
        transform: none;
        top: auto;
        align-items: center;
    }
    
    .navbar {
        height: 90px;
    }
    
    .logo-container {
        height: 70px;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
        width: 48px;
        height: 48px;
        padding: 8px;
    }
    
    /* Fix hamburger to X animation */
    .hamburger-line {
        width: 28px;
        height: 3px;
        transition: all 0.3s ease;
        margin: 3px 0;
        border-radius: 2px;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(0, 13px);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(0, -13px);
    }
    
    /* Hide desktop navigation */
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: transparent;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .navbar-nav.active {
        right: 0;
    }
    
    /* Overlay without blur */
    .nav-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: none;
    }
    
    .navbar-nav.active .nav-overlay {
        opacity: 1;
    }
    
    /* Mobile menu */
    .nav-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: 320px;
        height: 100%;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 120px 40px 40px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .navbar-nav.active .nav-menu {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        height: 56px;
        justify-content: flex-start;
        padding: 18px 24px;
        margin-bottom: 12px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: none;
        color: var(--color-white);
    }
    
    .nav-link::after, .nav-link::before {
        display: none;
    }
    
    .nav-link-cta {
        background-color: var(--color-secondary) !important;
        color: var(--color-light) !important;
        margin-top: 24px;
        font-weight: 500;
    }
    
    .nav-link-cta:hover {
        background-color: var(--color-primary) !important;
        color: var(--color-white) !important;
    }

    .cta-container::after, .cta-container::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        padding: 100px 20px 30px;
    }

    .logo-container {
        height: 60px;
    }
}


/* Sub-Header Styles */
.sub-header {
    background: var(--color-primary);
    padding: 70px 0 100px;
    text-align: center;
    position: relative;
}

.sub-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--color-secondary) 50%, transparent 95%);
}

.sub-header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sub-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-header p {
    font-size: 18px;
    color: var(--color-white);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.sub-header-description {
    margin: 24px 0;
}

.sub-header-description p {
    font-size: 18px;
    color: rgba(251, 251, 251, 0.8);
    line-height: 1.6;
    margin: 0;
}

.sub-header-cta {
    margin-top: 32px;
}

.sub-header .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sub-header .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.sub-header .btn-primary:hover {
    background: rgba(251, 251, 251, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 1750px) {
    .sub-header {
        padding: 40px 0 64px;
    }

    .sub-header h1 {
        font-size: 38px;
    }

    .sub-header p,
    .sub-header-description p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .sub-header h1 {
        font-size: 32px;
    }
    
    .sub-header p,
    .sub-header-description p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sub-header h1 {
        font-size: 28px;
    }
    
    .sub-header p,
    .sub-header-description p {
        font-size: 14px;
    }
}


/* Company Section Styles */
.company-overview {
    /* background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px); */
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-white);
    opacity: 0.8;
    line-height: 1.6;
}

.company-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 60px;
}

.company-card {
    min-width: 300px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-logo {
    width: 160px;
    height: 160px;
    background: var(--color-white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 16px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.company-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.company-card p {
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: 12px;
}

.company-link {
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--color-white);
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    right: 0px;
    height: 1px;
    border-radius: 5pc;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-link:hover::after {
    transform: scaleX(1);
}

.company-link i {
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 1750px) {
    .section-header h2 {
        font-size: 38px;
    }

    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .company-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }
    
    .company-card {
        padding: 32px 24px;
    }
    
    .company-grid {
        gap: 32px;
    }
}


/* Footer Styles */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 0 0;
    margin-top: 20px;
    font-family: var(--font-primary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--color-secondary) 50%, transparent 95%);
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 100px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-company-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
}

.footer-company-info {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(251, 251, 251, 0.8);
    max-width: 400px;
}

/* Middle Column */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-section ul li a {
    color: rgba(251, 251, 251, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-section ul li a i.fa-external-link-alt {
    font-size: 12px;
    opacity: 0.9;
}

.footer-nav-section ul li a:hover {
    color: var(--color-white);
}

/* Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    color: rgba(251, 251, 251, 0.6);
    flex-shrink: 0;
}

.footer-contact-link {
    color: rgba(251, 251, 251, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-secondary-accent);
    border-radius: 50%;
    color: rgba(251, 251, 251, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Services Section */
.footer-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid var(--color-tertiary);
    border-bottom: 1px solid var(--color-tertiary);
    margin-bottom: 30px;
}

.footer-service-item {
    text-align: center;
    padding: 20px;
}

.footer-service-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-service-desc {
    font-size: 12px;
    color: rgba(251, 251, 251, 0.6);
    line-height: 1.4;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(251, 251, 251, 0.5);
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 1750px) {
    .footer-container {
        padding: 0 140px;
    }
}

@media (max-width: 1400px) {
    .footer-container {
        padding: 0 50px;
    }
}

@media (max-width: 1140px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 24px;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-main {
        gap: 40px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav-section ul {
        align-items: center;
    }
    
    .footer-services {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-company-tagline {
        font-size: 16px;
    }
    
    .footer-company-info {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-info {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 20px;
    z-index: 10002;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    backdrop-filter: blur(4px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

/* Prevent scrolling when cookie banner is shown */
body.cookie-banner-visible {
    overflow: hidden;
    height: 100vh;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-link {
    color: var(--color-white);
    text-decoration: underline;
}

.cookie-link:hover {
    text-decoration: none;
}

.consent-button {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consent-button:hover {
    background: rgba(251, 251, 251, 0.9);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-message {
        font-size: 13px;
    }
}