/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    /* Wide container for desktop */
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background-color: #000;
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Top Bar */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: #e0e0e0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.contact-info {
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: #a0a0a0;
    font-size: 13px;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Main Header */
.main-header {
    padding: 15px 0;
}

.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Main Navigation */
.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav>ul>li {
    position: relative;
    padding: 10px 0;
}
.header a {
    font-family: 'Poppins', sans-serif;
}
.main-nav>ul>li>a {
    font-size: 15px;
    font-weight: 400;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    position: relative;
}

/* Hover Effect for Links */
.main-nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #E30613;
    transition: width 0.3s ease;
}

.main-nav>ul>li>a:hover {
    color: #fff;
}

.main-nav>ul>li:hover>a::after {
    width: 100%;
}

.main-nav .has-dropdown i {
    font-size: 11px;
    color: #aaa;
    transition: transform 0.3s ease;
}

.main-nav .has-dropdown:hover i {
    transform: rotate(180deg);
    color: #E30613;
}

/* Dropdown styling */
.main-nav .has-dropdown {
    position: relative;
}

.main-nav .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: 10;
}

.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background-color: #1a1a1a;
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-top: 3px solid #E30613;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.main-nav .dropdown li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.main-nav .dropdown a {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #bbb;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.main-nav .dropdown li:last-child a {
    border-bottom: none;
}

.main-nav .dropdown a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #E30613;
    z-index: -1;
    transition: width 0.3s ease;
}

.main-nav .dropdown a:hover {
    color: #fff;
    padding-left: 32px;
}

.main-nav .dropdown a:hover::before {
    width: 100%;
}

/* Language Switch with Flags */
.main-nav .lang-menu > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    color: #a0a0a0;
}

.main-nav .lang-menu > a:hover {
    color: #fff;
}

.main-nav .lang-menu .fi {
    font-size: 14px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    display: inline-block;
    width: 1.2em;
    height: 0.9em;
}

.main-nav .lang-menu .dropdown {
    min-width: 120px;
    right: 0;
    left: auto;
    background-color: #000;
    border-top: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    padding: 5px 0;
}

.main-nav .lang-menu .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    color: #a0a0a0;
    border-bottom: none;
}

.main-nav .lang-menu .dropdown a:hover {
    color: #fff;
    background-color: #1a1a1a;
    padding-left: 20px;
}

.main-nav .lang-menu .dropdown a::before {
    display: none;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    overflow: hidden;
    background-color: #000;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 4s ease-in-out;
    transform: scale(1.05); /* Ken burns effect start */
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1); /* Smooth zoom out */
    z-index: 1;
}

/* The heavy black gradient from the left */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0) 80%);
    z-index: 2;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 3;
    max-width: 850px;
    padding-top: 50px; /* Offset the header slightly */
}

/* Staggered Animations Container Prep */
.slide-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slide.active h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.slide.active .slide-action {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
}

/* Typography & Layout */
.slide-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E30613;
    margin-bottom: 20px;
}

.slide-subtitle::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #E30613;
}

.slide-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    max-width: 600px;
    margin-bottom: 30px;
}

.slide-action {
    display: inline-block;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

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

.dot {
    width: 45px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #E30613;
    transition: none; /* Reset instantly when dot is not active */
}

.dot.active::after {
    width: 100%;
    transition: width 5s linear; /* Matches the 5000ms interval in JS */
}

/* Corporate Features Section */
.corporate-features {
    background-color: #030303; /* Inky black matching the image */
    padding: 50px 0;
    border-bottom: 1px solid #111;
}

.container-features {
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 32px; /* Smaller, sharper */
    color: #E30613; /* Pure solid red as requested */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon i {
    font-weight: 200; /* Thin lines using Phosphor */
}

.feature-title {
    background-color: #E30613;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    margin: 0;
    letter-spacing: 0.3px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    box-shadow: 0 6px 25px rgba(227, 6, 19, 0.8);
    transform: translateY(-2px);
}

.feature-text {
    font-size: 13px;
    color: #888888;
    line-height: 1.6;
    max-width: 95%;
}

/* Exact Corporate About Us Section from Image */
.about-corporate {
    background-color: #1a1b1e; /* Deep grey-blue corporate background as in image */
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.container-about {
    max-width: 1250px;
    padding: 0 40px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Content (Left) */
.about-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 0px;
}

.about-subtitle-box {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    margin-bottom: 25px;
    display: inline-block;
    width: auto;
}

.about-subtitle {
    color: #E30613; /* Primary red */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px; /* Wide tracking like the image */
}

.about-description {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-description strong {
    color: #ffffff;
    font-weight: 500;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.about-list li {
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #ffffff; /* Small white dot bullet */
    border-radius: 50%;
}

.about-footer-text {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.8;
}

/* About Gallery (Right) */
.about-gallery {
    display: flex;
    gap: 15px;
    position: relative;
    padding-bottom: 40px; /* Space for dots overlaying below */
}

.gallery-col-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.gallery-col-right {
    flex: 1;
    position: relative;
}

.gallery-img {
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.gallery-col-left .gallery-img {
    height: 195px;
}

.gallery-col-right .gallery-img.tall {
    height: 405px;
    position: relative;
    z-index: 2; /* Sit above the red dots */
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-img:hover img {
    opacity: 0.9;
}

/* Red Dot Pattern Under Right Image */
.red-dots {
    position: absolute;
    bottom: 10px;
    left: 20px; /* Shifted left */
    width: calc(100% + 50px);
    height: 120px;
    z-index: 1;
    background-image: radial-gradient(#E30613 2.5px, transparent 2.5px);
    background-size: 14px 14px;
    pointer-events: none;
}

/* Statistics Banner Overlay Section (Corporate) */
.stats-banner {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Solid heavy red overlay exactly like the image */
    background: rgba(227, 6, 19, 0.86);
    z-index: 1;
}

.container-stats {
    position: relative;
    z-index: 2; /* Sit above the overlay */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.stats-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item.border-none {
    border-right: none;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Clean Corporate Services Section */
.services-section {
    background-color: #0d0f12; /* Matches the dark elegant theme */
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: #E30613;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #999999;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background-color: #17191d;
    border: 1px solid #22252a;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: #E30613;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #22252a;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.service-content p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E30613;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001; /* Above menu */
}

/* ==========================================================================
   SITE FOOTER (CORPORATE)
   ========================================================================== */
.site-footer {
    background-color: #080808; /* Very dark background */
    color: #999999;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #E30613; /* Strong top accent */
}

.footer-top {
    padding: 80px 0 60px;
}

.container-footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Custom widths for columns */
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    font-size: 38px;
    color: #E30613;
}

.footer-logo .logo-text {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-logo .logo-text .highlight {
    color: #E30613;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #17191d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #22252a;
}

.footer-socials .social-link:hover {
    background-color: #E30613;
    border-color: #E30613;
    transform: translateY(-3px);
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title-line {
    width: 40px;
    height: 2px;
    background-color: #E30613;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a i {
    color: #E30613;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px; /* Slight indent hover effect */
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-info li i {
    color: #E30613;
    font-size: 22px;
    margin-top: 2px; /* Align icon slightly */
}

.footer-contact-info li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
    color: #E30613;
}

.footer-bottom {
    background-color: #030303;
    padding: 25px 0;
    border-top: 1px solid #1a1a1a;
}

.container-footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    margin: 0;
    font-size: 13px;
    color: #777777;
}

.copyright-text strong {
    color: #a0a0a0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links .sep {
    color: #333333;
}

/* ==========================================================================
   INTERNAL PAGES (ABOUT, ETC.)
   ========================================================================== */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    position: relative;
    border-bottom: 3px solid #E30613;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.05);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #E30613;
}

.breadcrumb .sep {
    color: #555;
    font-size: 12px;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 500;
}

.corporate-overview {
    background-color: #0d0f12; /* Very dark background */
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-img-frame {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle frame */
    padding: 10px;
}

.overview-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #E30613; /* Strict corporate accent */
}

.overview-img-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1); /* Slightly industrial feel */
}

.corp-subtitle {
    display: block;
    color: #E30613;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.corp-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.corp-divider {
    width: 80px;
    height: 3px;
    background-color: #333;
    margin-bottom: 30px;
}

.corp-desc {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.corp-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.corp-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 15px;
    font-weight: 500;
}

.corp-features-list li i {
    color: #E30613;
    font-size: 20px;
}

/* Corporate Values (Mission, Vision, Quality) */
.corporate-values {
    background-color: #121316; /* Slightly lighter than overview, strictly separated */
    padding: 80px 0;
    border-top: 1px solid #1a1c20;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-box {
    background-color: #17191d;
    padding: 40px 30px;
    border-top: 3px solid #E30613; /* Strict top border */
    transition: background-color 0.3s ease;
}

.value-box:hover {
    background-color: #1a1c22;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.value-header i {
    font-size: 36px;
    color: #E30613;
}

.value-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.value-box p {
    color: #999999;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   SERVICE DETAIL PAGE
   ========================================================================== */
.service-detail-section {
    background-color: #0d0f12; /* Matches strict corporate theme */
    padding: 80px 0 100px;
    font-family: 'Poppins', sans-serif;
}

.sd-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* slightly wider text area */
    gap: 60px;
    align-items: flex-start;
}

/* Left Column: Media */
.sd-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sd-featured-img {
    background-color: #17191d;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.sd-featured-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.sd-featured-img:hover img {
    transform: scale(1.02);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.sd-featured-img:hover .enlarge-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Modal Lightbox */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.4s;
    border: 3px solid #1a1c22;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

@keyframes zoom {
    from {transform:scale(0.9); opacity:0} 
    to {transform:scale(1); opacity:1}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #E30613;
    text-decoration: none;
}

.sd-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sd-thumb {
    background-color: #17191d;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 5px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sd-thumb:hover {
    border-color: #E30613;
}

.sd-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Right Column: Content */
.sd-content {
    display: flex;
    flex-direction: column;
}

.sd-main-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sd-corp-divider {
    width: 80px;
    height: 3px;
    background-color: #E30613;
    margin-bottom: 30px;
}

.sd-main-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
    margin-bottom: 40px;
}

.sd-main-list li {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.sd-main-list li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #555555;
    border-radius: 50%;
}

.sd-red-title {
    background-color: #E30613;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.sd-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sd-features-list li {
    color: #cccccc;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.sd-features-list li i {
    color: #E30613;
    font-size: 18px; /* Slightly larger checkmark */
    margin-top: 2px;
}

/* ==========================================================================
   MACHINE PARK PAGE
   ========================================================================== */
.machine-park-section {
    background-color: #080808; /* Slightly darker than services for depth */
    padding: 100px 0;
}

.machine-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.machine-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.machine-img-box {
    background-color: #111317;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.machine-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.machine-row:hover .machine-img-box img {
    transform: scale(1.05);
}

.machine-specs-box {
    display: flex;
    flex-direction: column;
}

.machine-model-title {
    background-color: #E30613;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 25px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.machine-specs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.machine-specs-list li {
    color: #999999;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: color 0.3s ease;
}

.machine-specs-list li:hover {
    color: #ffffff;
}

.machine-specs-list li i {
    color: #E30613;
    font-size: 16px;
    margin-top: 4px;
}

/* Responsive for Machine Park */
@media (max-width: 991px) {
    .machine-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
}

/* ==========================================================================
   MODERN CORPORATE CONTACT PAGE
   ========================================================================= */
.contact-section {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glow Accents */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, rgba(227, 6, 19, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.glow-1 { top: -100px; right: -100px; }
.glow-2 { bottom: -100px; left: -100px; }

.contact-section .container {
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.section-header-left .main-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-red {
    color: #E30613;
}

.contact-desc {
    color: #888888;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Modern Contact List */
.modern-contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.m-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.m-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E30613;
    font-size: 28px;
    transition: all 0.3s ease;
}

.m-contact-item:hover .m-icon-box {
    background-color: #E30613;
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.m-text span {
    display: block;
    color: #666666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.m-text strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* Social Area */
.m-social-area h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.m-social-links {
    display: flex;
    gap: 15px;
}

.m-social-links a {
    width: 45px;
    height: 45px;
    background-color: #17191d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 20px;
    transition: all 0.3s ease;
}

.m-social-links a:hover {
    background-color: #E30613;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Glass Form Container */
.glass-form-container {
    background: rgba(23, 25, 29, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.glass-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E30613, transparent);
}

.form-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666666;
    font-size: 14px;
    margin-bottom: 40px;
}

.m-input-group {
    margin-bottom: 25px;
}

.m-input-group label {
    display: block;
    color: #aaaaaa;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m-input-group input,
.m-input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.m-input-group input:focus,
.m-input-group textarea:focus {
    border-color: #E30613;
    background: rgba(227, 6, 19, 0.02);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.1);
    outline: none;
}

.modern-submit-btn {
    width: 100%;
    background-color: #E30613;
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modern-submit-btn:hover {
    background-color: #ffffff;
    color: #080808;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Map Dark Mod */
.map-section {
    position: relative;
    z-index: 5;
    margin-top: -50px; /* Overlap effect */
    padding: 0 50px 50px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

@media (max-width: 1200px) {
    .contact-grid {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .glass-form-container {
        padding: 40px;
    }

    .map-section {
        padding: 0 20px 40px;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MULTIMEDIA (BALANCED 3-COLUMN GRID)
   ========================================================================= */
.gallery-section, .videos-section {
    background-color: #080808;
    padding: 80px 0 120px;
}

.gallery-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .gallery-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* Modern Tabs for Filtering */
.modern-tabs {
    display: flex;
    gap: 10px;
}

.filter-tab {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-tab:hover {
    border-color: rgba(227, 6, 19, 0.3);
    color: #fff;
}

.filter-tab.active {
    background: #E30613;
    color: #fff;
    border-color: #E30613;
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
}

/* Balanced Grid Layout */
.gallery-balanced-grid, .video-grid-balanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .gallery-balanced-grid, .video-grid-balanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-balanced-grid, .video-grid-balanced {
        grid-template-columns: 1fr;
    }
}

/* Gallery Item Card */
.gallery-item-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
    cursor: pointer;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay-v2 {
    position: absolute;
    inset: 0;
    background: rgba(227, 6, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.gallery-overlay-v2 i {
    color: #fff;
    font-size: 40px;
}

.gallery-item-card:hover img {
    transform: scale(1.1);
}

.gallery-item-card:hover .gallery-overlay-v2 {
    opacity: 1;
}

/* Video Card V2 */
.video-card-v2 {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card-v2:hover {
    transform: translateY(-10px);
    border-color: #E30613;
}

.video-thumb-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.play-overlay i {
    width: 70px;
    height: 70px;
    background: #E30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    padding-left: 5px;
    box-shadow: 0 0 30px rgba(227, 6, 19, 0.4);
    transition: all 0.3s ease;
}

.v-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
}

.v-info {
    padding: 25px;
}

.v-info h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.v-info p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.video-card-v2:hover .play-overlay {
    background: rgba(0,0,0,0.2);
}

.video-card-v2:hover .play-overlay i {
    transform: scale(1.1);
    background: #fff;
    color: #E30613;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    align-items: center;
    justify-content: center;
}

/* Lightbox Enhancements for Gallery */
.lightbox-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light-meta {
    font-family: 'JetBrains Mono', monospace;
    color: #E30613;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    .top-bar {
        display: none; /* Hide secondary top-bar info on mobile to save space */
    }

    .logo-text {
        font-size: 20px;
    }

    .logo img {
        height: 45px;
    }

    /* Mobile Menu Button Display */
    .mobile-menu-btn {
        display: block;
    }

    /* Off-canvas Mobile Menu */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%); /* Hidden off-screen right */
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: #121316;
        z-index: 1000;
        padding: 80px 30px 30px; /* Space for close button */
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0); /* Slide in */
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        display: flex; /* Reset from hidden */
    }

    .main-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .main-nav > ul > li > a {
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
        justify-content: space-between; /* Space out icon if any */
    }

    /* Mobile Sub-menu handling (basic show/hide or simple stack) */
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        border: none;
        border-radius: 0;
        padding: 0 0 10px 15px; /* Indent sub items */
        margin-top: 0;
        display: none; /* Hide default on mobile until triggered or adapt */
    }
    
    .dropdown:hover .dropdown-menu {
        display: block; /* Show on hover/tap */
    }

    .stat-number {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .sd-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sd-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr); /* keep 4 on tablet if possible, or 2x2. Let's do 4 */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .slide-content h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    .stats-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-title-premium {
        font-size: 22px;
    }
    
    .stat-premium-card {
        padding: 35px 20px;
    }

    .slide-content {
        padding-top: 0;
    }

    .slide-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .slide-subtitle::before {
        width: 30px;
    }

    .slide-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%); /* Mobile overlay */
    }

    .slider-btn {
        display: none; /* Hide arrows on small mobile */
    }
    
    .slider-dots {
        bottom: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .feature-card {
        padding: 10px 0;
    }

    .about-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .gallery-col-left .gallery-img, 
    .gallery-col-right .gallery-img.tall {
        height: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .container-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}