:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-main: #1a1d20;
    --text-muted: #5a626a;
    --hero-bg: #0f2c59; 
    --accent: #FA9222; 
    --border-color: #e2e8f0;
    --placeholder-bg: #112240; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

input, button, textarea, select {
    font-family: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.mb-xs { margin-bottom: 12px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.img-placeholder {
    background-color: var(--placeholder-bg);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px dashed var(--accent);
    text-transform: uppercase;
    border-radius: 4px;
    min-height: 200px;
    width: 100%;
}

.services-container-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.services-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.row-1-4 .service-card:nth-child(1) {
    flex: 3;
}
.row-1-4 .service-card:nth-child(2) {
    flex: 5;
}

.row-1-1 .service-card {
    flex: 1;
}

.service-card {
    background: var(--bg-secondary);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    background: var(--bg-primary);
}

.icon-box {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.05);
}

.service-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 12px;
}

.service-text p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: justify;
}

.list-item .bx, .social-links .bx {
    color: var(--accent);
    font-size: 18px;
    vertical-align: middle;
}

header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-wrapper {
    height: 50px; 
    display: flex; 
    align-items: center;
}

.logo-wrapper svg {
    height: 100%; 
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}

nav a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:not(.nav-btn):hover {
    color: var(--accent);
}

nav a:not(.nav-btn):hover::after {
    width: 100%;
}

nav a.nav-btn {
    border: 2px solid var(--accent);
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

nav a.nav-btn:hover {
    background-color: var(--accent);
    color: #1a1d20;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

u {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--accent);
}

section {
    padding: 90px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    background-image: 
        linear-gradient(to right, 
            var(--hero-bg) 0%,    
            var(--hero-bg) 45%,   
            transparent 85%       
        ),
        url('images/hero.png'); 

    background-size: cover;            
    background-position: center right; 
    background-repeat: no-repeat;      
    padding: 140px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero * { color: #ffffff; }

.hero u {
    font-size: 16px;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 700px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero .ports {
    font-size: 14px;
    color: var(--accent);
    border-top: 1px solid #1e293b;
    padding-top: 16px;
    margin-top: 32px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-grid p {
    font-size: 18px;
}
.about-text p {
    text-align: justify;
    margin-bottom: 16px; 
}
.about-text p:last-child {
    margin-bottom: 0;
}
.about-image {
    width: 100%;        
    height: 180px;      
    object-fit: cover;  
    border-radius: 4px; 
    border: 1px solid var(--border-color); 
}

.spec-solutions {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.spec-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.spec-card img {
    width: 100%;          
    max-width: 100%;      
    height: auto;          
    border-radius: 4px;   
    display: block;        
    margin-bottom: 16px;  
}
.spec-card p {
    text-align: justify;
}

.spec-card:hover { transform: translateY(-4px); }

.spec-card .img-placeholder {
    margin-bottom: 20px;
    min-height: 150px;
}

.spec-card .more-text {
    display: none;
}

.read-more-btn {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: var(--text-main);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
#strengths p {
    text-align: justify;
}
.section-p {
    margin-bottom: 24px;
}
.list-item {
    margin-bottom: 24px;
    border-left: 2px solid var(--border-color);
    padding-left: 16px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.list-item:hover {
    border-left-color: var(--accent);
    transform: translateX(4px);
}

.list-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.list-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.locations-section {
    border-top: 1px solid var(--border-color);
}

#map {
    height: 400px;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-top: 24px;
}

.form-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(250, 146, 34, 0.1);
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

button.btn {
    background: var(--accent);
    color: #1a1d20;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 280px;
}

button.btn:hover {
    background: #e07f16;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 146, 34, 0.3);
}

footer {
    padding: 60px 0;
    background: #111;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

footer p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.company-name-footer {
    font-size: 20px; 
    font-weight: 700; 
    color: #fff; 
    margin-bottom: 16px;
}

.footer-email {
    color: var(--accent); 
    text-decoration: none;
}

.social-links {
    margin-top: 24px; 
    display: flex; 
    flex-wrap: wrap;
    gap: 12px; 
    align-items: center;
}

.connect-text {
    font-size: 14px; 
    color: #aaa; 
    margin-right: 8px;
}

.social-link {
    text-decoration: none; 
    color: #fff;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.copyright-box {
    text-align: right; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
}

.copyright-text {
    color: #444; 
    font-size: 12px;
}

.cookie-banner {
    position: fixed !important;
    bottom: -200px;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important; 
    max-width: 100% !important;
    background-color: var(--hero-bg);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.2);
    z-index: 99992 !important;
    transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 20px 0;
    box-sizing: border-box !important;
}

.cookie-banner.show {
    bottom: 0 !important;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: table;
    width: 100%;
}

.cookie-text {
    display: table-cell;
    vertical-align: middle;
    padding-right: 30px;
}

.cookie-text p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap;
    width: 1%;
}

.cookie-btn {
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
    margin-left: 10px;
}

.btn-accept {
    background: var(--accent);
    color: #1a1d20;
}

.btn-accept:hover {
    background: #e07f16;
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-alert-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.custom-alert-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #111111;
    font-weight: 700;
}

.custom-alert-box p {
    color: #666666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.custom-alert-box button {
    background-color: #111111;
    color: #ffffff;
    border: none;
    min-width: 120px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-alert-box button:hover {
    background-color: #333333;
}

.custom-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-alert-overlay.active .custom-alert-box {
    transform: translateY(0);
}

.form-privacy {
    margin-bottom: 20px;
    text-align: left;
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666666;
}

.privacy-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.privacy-text a {
    color: #111111;
    text-decoration: underline;
}

.privacy-text a:hover {
    text-decoration: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 99991 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 38px; }
    .grid-2 { gap: 40px; }
    .services-row {
        flex-direction: column;
    }
    .row-1-4 .service-card:nth-child(1),
    .row-1-4 .service-card:nth-child(2) {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-title { font-size: 26px; margin-bottom: 32px; }

    .hamburger { 
        display: flex; 
        z-index: 99993 !important;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff !important; 
        backdrop-filter: none !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99992 !important;
        padding: 0 40px;
        box-sizing: border-box;
    }

    nav.open { 
        right: 0; 
    }

    nav a {
        margin-left: 0;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    nav a.nav-btn {
        background-color: var(--accent);
        color: #1a1d20;
        padding: 12px 0;
        margin-top: 12px;
    }

    .hero-grid, .about-grid, .grid-2, footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero { 
        padding: 100px 0; 
        background-position: center center; 
        background-image: linear-gradient(rgba(15, 44, 89, 0.95), rgba(15, 44, 89, 0.95)), url('images/hero.png');
    }
    .hero h1 { font-size: 32px; }
    .hero .img-placeholder { display: none; } 

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .icon-box {
        flex: none;
        width: 120px;
        height: 120px;
    }

    .about-grid { gap: 24px; margin-bottom: 40px; }
    .about-image {
        height: 250px; 
        margin-top: 20px; 
    }
    .spec-card img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
    }
    #map { height: 300px; }
    
    .copyright-box { text-align: left; margin-top: 20px; }
    button.btn { max-width: 100%; }

    .cookie-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }

    .cookie-text {
        width: 100% !important;
        margin: 0 0 16px 0 !important;
        font-size: 14px !important;
    }

    .cookie-buttons {
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .cookie-btn {
        flex: 1 !important;
        width: auto !important;
        margin: 0 !important;
        padding: 10px 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .logo-wrapper { height: 40px; }
    .social-links { flex-direction: column; align-items: flex-start; gap: 8px; }
}