/* Liuten Energy - Premium Corporate Styles */
:root {
    --primary: #0B1F3A;
    --accent: #00C853;
    --white: #FFFFFF;
    --primary-rgb: 11, 31, 58;
    --accent-rgb: 0, 200, 83;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f8f9fc;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

[data-theme="dark"] {
    --text-dark: #e8e8e8;
    --text-muted: #a0a0a0;
    --bg-light: #0d1117;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--white);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    line-height: 1.7;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section {
    width: 100%;
    max-width: 100%;
}

[data-theme="dark"] body { background: #0a0e17; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Preloader */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-bar {
    width: 200px; height: 3px; background: rgba(255,255,255,0.2);
    border-radius: 3px; margin: 20px auto; overflow: hidden;
}
.preloader-progress {
    height: 100%; width: 0; background: var(--accent);
    border-radius: 3px; animation: preloadBar 1.5s ease forwards;
}
.preloader-text { color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes preloadBar { to { width: 100%; } }

/* Cursor Effects */
.cursor-dot, .cursor-ring, .cursor-trail {
    position: fixed; pointer-events: none; z-index: 99998;
    opacity: 0; transition: opacity 0.3s;
}
body.cursor-effect .cursor-dot, body.cursor-effect .cursor-ring { opacity: 1; }

.cursor-dot {
    width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 40px; height: 40px; border: 2px solid var(--accent);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body.cursor-comet .cursor-trail {
    width: 12px; height: 12px; background: var(--accent);
    border-radius: 50%; opacity: 0.6; transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}
body.cursor-comet .cursor-dot, body.cursor-comet .cursor-ring { display: none; }

body.cursor-orbit .cursor-ring {
    width: 50px; height: 50px; border-style: dashed;
    animation: orbitSpin 3s linear infinite;
}
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

body.cursor-dual_ring .cursor-ring {
    width: 30px; height: 30px; border-width: 1px;
}
body.cursor-dual_ring .cursor-ring::after {
    content: ''; position: absolute; inset: -15px;
    border: 1px solid rgba(var(--accent-rgb), 0.4); border-radius: 50%;
}

body.cursor-particle .cursor-dot {
    width: 4px; height: 4px;
    box-shadow: 0 0 10px var(--accent);
}

/* Site Header (all pages) */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    padding: 6px 0;
}
.top-bar-welcome i { color: var(--accent); margin-right: 6px; }
.top-bar-hours i { color: var(--accent); margin-right: 5px; }
.top-bar-iso i { color: var(--accent); margin-right: 5px; }
.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a {
    color: rgba(255,255,255,0.7); font-size: 0.85rem;
}
.top-bar-social a:hover { color: var(--accent); }
.top-bar-mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    text-align: center;
    padding: 2px 0;
}
.top-bar-contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    width: 100%;
}
.top-bar-contact-link {
    color: rgba(255,255,255,0.92);
    font-size: 0.7rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.35;
}
.top-bar-contact-link i { color: var(--accent); flex-shrink: 0; }
.top-bar-contact-link:hover { color: var(--accent); }

.navbar-corporate {
    background: #fff !important;
    padding: 10px 0 !important;
}
.navbar-corporate > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.navbar-corporate .navbar-brand,
.navbar-corporate .navbar-toggler {
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
}
.corporate-brand {
    display: flex; align-items: center; gap: 10px;
    max-width: 240px !important;
}
.nav-logo-corporate {
    height: 48px; max-height: 48px; width: auto;
    max-width: 120px; object-fit: contain;
    filter: none !important;
}
.brand-meta { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-family: var(--font-heading); font-weight: 800;
    font-size: 0.95rem; color: var(--primary); letter-spacing: 0.5px;
}
.brand-tagline {
    font-size: 0.6rem; color: var(--accent); font-weight: 600;
    letter-spacing: 0.3px; text-transform: uppercase;
}
.navbar-corporate .nav-link {
    color: var(--primary) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px !important;
    position: relative;
}
.navbar-corporate .nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 2px; background: var(--accent);
    transition: var(--transition); transform: translateX(-50%);
}
.navbar-corporate .nav-link:hover::after,
.navbar-corporate .nav-link.active::after { width: 60%; }
.navbar-corporate .nav-link:hover,
.navbar-corporate .nav-link.active { color: var(--accent) !important; }
.navbar-corporate .nav-dropdown-hover .dropdown-toggle::after {
    transition: transform 0.3s ease;
    vertical-align: 0.15em;
}
.navbar-corporate .nav-dropdown-hover:hover .dropdown-toggle::after,
.navbar-corporate .nav-dropdown-hover .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.navbar-corporate .dropdown-menu-products {
    border: none;
    border-radius: 14px;
    padding: 0;
    min-width: 320px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.18);
    background: #fff;
    font-size: 0.85rem;
}
.dropdown-menu-products::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #00e676 35%, #2196f3 70%, var(--primary) 100%);
}
.dropdown-menu-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 12px;
    background: linear-gradient(135deg, rgba(11,31,58,0.04) 0%, rgba(0,200,83,0.08) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    list-style: none;
}
.dropdown-menu-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.dropdown-menu-head strong {
    display: block;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
}
.dropdown-menu-head small {
    color: #6c757d;
    font-size: 0.72rem;
}
.dropdown-item-product {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 18px !important;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
}
.dropdown-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dropdown-item-product--green .dropdown-item-icon {
    background: rgba(0, 200, 83, 0.12);
    color: #00a844;
}
.dropdown-item-product--blue .dropdown-item-icon {
    background: rgba(33, 150, 243, 0.12);
    color: #1976d2;
}
.dropdown-item-product--orange .dropdown-item-icon {
    background: rgba(255, 152, 0, 0.12);
    color: #f57c00;
}
.dropdown-item-product--purple .dropdown-item-icon {
    background: rgba(156, 39, 176, 0.12);
    color: #8e24aa;
}
.dropdown-item-product--teal .dropdown-item-icon {
    background: rgba(0, 150, 136, 0.12);
    color: #00897b;
}
.dropdown-item-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dropdown-item-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.82rem;
    line-height: 1.3;
}
.dropdown-item-desc {
    font-size: 0.7rem;
    color: #6c757d;
    line-height: 1.35;
}
.dropdown-item-arrow {
    font-size: 0.75rem;
    color: #ccc;
    transition: transform 0.25s ease, color 0.25s ease;
}
.dropdown-item-product:hover {
    background: linear-gradient(90deg, rgba(0,200,83,0.06) 0%, rgba(255,255,255,0) 100%) !important;
    border-left-color: var(--accent);
}
.dropdown-item-product:hover .dropdown-item-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.dropdown-item-product:hover .dropdown-item-arrow {
    color: var(--accent);
    transform: translateX(3px);
}
.dropdown-item-all {
    font-weight: 700 !important;
    color: var(--primary) !important;
    padding: 12px 18px !important;
    background: linear-gradient(90deg, rgba(0,200,83,0.08) 0%, rgba(11,31,58,0.04) 100%);
    transition: all 0.25s ease;
}
.dropdown-item-all i {
    color: var(--accent);
    margin-right: 8px;
}
.dropdown-item-all:hover {
    background: linear-gradient(90deg, rgba(0,200,83,0.15) 0%, rgba(11,31,58,0.08) 100%) !important;
    color: var(--accent) !important;
}
@media (min-width: 992px) {
    .navbar-corporate .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
    }
    .navbar-corporate .nav-dropdown-hover {
        position: relative;
    }
    .navbar-corporate .nav-dropdown-hover::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
    }
    .navbar-corporate .nav-dropdown-hover .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(16px) scale(0.97);
        transform-origin: top center;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s;
        pointer-events: none;
        margin-top: 0;
        top: 100% !important;
        inset: auto !important;
        left: 50% !important;
    }
    .navbar-corporate .nav-dropdown-hover:hover > .dropdown-menu,
    .navbar-corporate .nav-dropdown-hover > .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(8px) scale(1);
        pointer-events: auto;
    }
}
.navbar-corporate .navbar-toggler { border-color: var(--primary); }
.navbar-corporate .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B1F3A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-quote {
    border-radius: 4px !important;
    padding: 10px 20px !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.navbar-corporate .btn-accent:hover {
    background: #00a844; color: #fff; border-color: #00a844;
}

/* Legacy navbar */
.navbar:not(.navbar-corporate) {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar:not(.navbar-corporate).scrolled {
    background: rgba(var(--primary-rgb), 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
[data-theme="dark"] .navbar:not(.navbar-corporate).scrolled { background: rgba(10, 14, 23, 0.95); }

.navbar-brand {
    display: flex; align-items: center; gap: 10px;
    max-width: 220px; padding: 0; margin-right: 1rem;
}
.brand-text {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.3rem; color: var(--white);
    white-space: nowrap;
}
.nav-logo {
    display: block;
    height: 42px;
    max-height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.nav-logo-custom {
    filter: none;
    max-width: 200px;
}
.preloader-logo img {
    height: 60px;
    max-height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.navbar:not(.navbar-corporate) .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500; font-size: 0.9rem;
    padding: 8px 16px !important; position: relative;
}
.navbar:not(.navbar-corporate) .navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px; background: var(--accent);
    transition: var(--transition); transform: translateX(-50%);
}
.navbar:not(.navbar-corporate) .navbar-nav .nav-link:hover::after,
.navbar:not(.navbar-corporate) .navbar-nav .nav-link.active::after { width: 60%; }
.navbar:not(.navbar-corporate) .navbar-nav .nav-link:hover { color: var(--accent) !important; }

.navbar:not(.navbar-corporate) .navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar:not(.navbar-corporate) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-theme-toggle {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.btn-theme-toggle:hover { background: var(--accent); border-color: var(--accent); }

/* Buttons */
.btn-accent {
    background: var(--accent); color: var(--white); border: 2px solid var(--accent);
    font-weight: 600; padding: 12px 30px; border-radius: 50px;
    transition: var(--transition);
}
.btn-accent:hover {
    background: transparent; color: var(--accent);
    transform: translateY(-2px); box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}
.btn-outline-accent {
    color: var(--accent); border: 2px solid var(--accent);
    font-weight: 600; border-radius: 50px; padding: 8px 24px;
}
.btn-outline-accent:hover { background: var(--accent); color: var(--white); }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5); color: var(--white);
    font-weight: 600; padding: 12px 30px; border-radius: 50px;
}
.btn-outline-light:hover {
    background: var(--white); color: var(--primary);
    transform: translateY(-2px);
}

/* Hero */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.1); transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.92) 0%, rgba(var(--primary-rgb), 0.7) 50%, rgba(var(--primary-rgb), 0.85) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-top: 80px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(var(--accent-rgb), 0.15); border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent); padding: 8px 20px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8);
    max-width: 650px; margin-bottom: 36px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-buttons .btn i { margin-left: 8px; transition: transform 0.3s; }
.hero-buttons .btn:hover i { transform: translateX(4px); }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 2;
}
.scroll-indicator {
    display: block; width: 30px; height: 50px;
    border: 2px solid rgba(255,255,255,0.3); border-radius: 20px;
    position: relative;
}
.scroll-indicator span {
    position: absolute; top: 8px; left: 50%;
    width: 4px; height: 10px; background: var(--accent);
    border-radius: 2px; transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.3; }
}

/* Sections */
.section-padding { padding: 100px 0; }
.bg-light-section { background: var(--bg-light); }
.bg-dark-section { background: var(--primary); }

.section-label {
    display: inline-block; color: var(--accent); font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-label.light { color: var(--accent); }
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px; color: var(--text-dark);
}
.bg-dark-section .section-title { color: var(--white); }
.section-subtitle {
    color: var(--text-muted); font-size: 1.05rem;
    max-width: 600px; margin-bottom: 0;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px; padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
[data-theme="dark"] .glass-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.glass-card-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 30px;
    transition: var(--transition);
}
.glass-card-dark:hover { border-color: rgba(var(--accent-rgb), 0.3); }

/* About */
.about-image-wrapper { position: relative; }
.about-image { overflow: hidden; border-radius: 16px; }
.about-image img { transition: transform 0.6s ease; width: 100%; }
.about-image:hover img { transform: scale(1.05); }
.about-badge {
    position: absolute; bottom: -20px; right: 30px;
    padding: 20px 30px; text-align: center;
}
.badge-year {
    display: block; font-size: 2rem; font-weight: 800;
    color: var(--accent); font-family: var(--font-heading);
}
.badge-text { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.about-info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.info-item {
    display: flex; align-items: center; gap: 16px; padding: 16px 20px;
}
.info-item i { font-size: 1.5rem; color: var(--accent); }
.info-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); }
.info-item span { font-weight: 600; font-size: 0.95rem; }

/* Team */
.team-card { overflow: hidden; padding: 0; text-align: center; }
.team-image {
    position: relative; overflow: hidden; height: 280px;
}
.team-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-image img { transform: scale(1.1); }
.team-overlay {
    position: absolute; inset: 0;
    background: rgba(var(--primary-rgb), 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a {
    width: 45px; height: 45px; background: var(--accent);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--white); font-size: 1.2rem;
}
.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-role { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.team-info p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; margin-bottom: 0; }

/* Vision Mission */
.vm-card { text-align: center; }
.vm-icon {
    width: 70px; height: 70px; background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
    font-size: 1.8rem; color: var(--primary);
}
.vm-icon.accent { background: rgba(var(--accent-rgb), 0.1); color: var(--accent); }
.vm-card h3 { margin-bottom: 16px; }
.vm-card p { color: var(--text-muted); margin: 0; }

/* Smart Aim */
.aim-card { padding: 36px 24px; }
.aim-icon {
    width: 60px; height: 60px; background: rgba(var(--accent-rgb), 0.15);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
    font-size: 1.5rem; color: var(--accent);
}
.aim-card h4 { color: var(--white); margin-bottom: 12px; }
.aim-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* Products */
.product-card { text-align: center; }
.product-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--primary-rgb), 0.1));
    border-radius: 20px; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
    font-size: 2rem; color: var(--accent);
    transition: var(--transition);
}
.product-card:hover .product-icon {
    background: var(--accent); color: var(--white);
    transform: rotateY(180deg);
}
.product-card h4 { margin-bottom: 12px; }
.product-card > p { color: var(--text-muted); font-size: 0.95rem; }
.product-features {
    list-style: none; padding: 0; margin: 20px 0; text-align: left;
}
.product-features li {
    padding: 6px 0; font-size: 0.9rem; color: var(--text-muted);
}
.product-features li i { color: var(--accent); margin-right: 8px; }

/* Product Detail Page */
.product-detail-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
}
.product-detail-image {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 280px;
}
.product-detail-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}
.product-detail-lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
}
.product-detail-body p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}
.product-detail-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 10px;
}
.product-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.product-detail-features li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.product-specs-table-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
}
.product-specs-table {
    width: 100%;
    margin: 0;
}
.product-specs-table th,
.product-specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
}
.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td { border-bottom: none; }
.product-specs-table th {
    width: 42%;
    color: var(--primary);
    font-weight: 600;
    background: rgba(var(--primary-rgb), 0.03);
}
.product-specs-table td { color: var(--text-muted); }
.product-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
}
.product-info-card--accent {
    border-color: rgba(var(--accent-rgb), 0.25);
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06) 0%, #fff 100%);
}
.product-info-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.product-info-card-head i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.product-info-card-head h3 {
    margin: 0;
    font-size: 1.25rem;
}
.product-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.product-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.product-info-list li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .product-detail-actions { flex-direction: column; }
    .product-detail-actions .btn { width: 100%; text-align: center; }
    .product-specs-table th,
    .product-specs-table td { padding: 12px 16px; font-size: 0.88rem; }
}

/* Industries */
.industry-card {
    display: flex; align-items: flex-start; gap: 20px; padding: 28px;
}
.industry-icon {
    width: 55px; height: 55px; min-width: 55px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; color: var(--accent);
    transition: var(--transition);
}
.industry-card:hover .industry-icon { background: var(--accent); color: var(--white); }
.industry-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.industry-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Industries Page */
.industries-page {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.industries-page-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 0;
}
.industries-page-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent);
}
.industries-page-intro {
    max-width: 680px;
    margin: 18px auto 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.75;
}
.industry-page-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.industry-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}
.industry-page-card-top {
    padding: 28px 24px 20px;
}
.industry-page-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 16px;
    transition: var(--transition);
}
.industry-page-card:hover .industry-page-icon {
    background: var(--accent);
    color: #fff;
}
.industry-page-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.35;
}
.industry-page-desc {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}
.industry-page-image {
    padding: 12px 16px 20px;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
    border-top: 1px solid #eef0f3;
    text-align: center;
}
.industry-page-image img {
    max-height: 160px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.industry-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
.industry-product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.1);
    transform: translateY(-4px);
}
.industry-product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.industry-product-card h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}
.industry-product-card p {
    color: #3d4f63;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
.industry-product-link {
    color: #008c38;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none;
}
.industry-product-link:hover { color: var(--accent); }
.industry-product-link i { transition: transform 0.25s ease; }
.industry-product-card:hover .industry-product-link i { transform: translateX(4px); }

/* Why Choose */
.why-card {
    padding: 30px; border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); height: 100%;
}
[data-theme="dark"] .why-card { border-color: rgba(255,255,255,0.08); }
.why-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(var(--accent-rgb), 0.1);
    transform: translateY(-5px);
}
.why-icon {
    width: 50px; height: 50px; background: rgba(var(--accent-rgb), 0.1);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; color: var(--accent);
    margin-bottom: 16px;
}
.why-card h5 { margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #142d4f 100%);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card { position: relative; z-index: 1; padding: 20px; }
.stat-icon { font-size: 2rem; color: var(--accent); margin-bottom: 12px; }
.stat-number {
    font-size: 3rem; font-weight: 800; color: var(--white);
    font-family: var(--font-heading); line-height: 1;
    display: inline;
}
.stat-suffix {
    display: inline; font-size: 2rem; font-weight: 800;
    color: var(--accent); font-family: var(--font-heading);
}
.stat-label { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 0.95rem; }

/* Testimonials */
.testimonial-card { position: relative; }
.testimonial-rating { color: #ffc107; margin-bottom: 16px; }
.testimonial-text {
    color: var(--text-muted); font-style: italic;
    font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    overflow: hidden; border: 2px solid var(--accent);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author h6 { margin: 0; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* Clients Slider */
.clients-section { overflow: hidden; }
.clients-slider { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.clients-track {
    display: flex; gap: 60px; animation: clientScroll 30s linear infinite;
    width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
    flex-shrink: 0; width: 150px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.5; transition: var(--transition); filter: grayscale(100%);
}
.client-logo:hover { opacity: 1; filter: grayscale(0); }
.client-logo img { max-height: 50px; object-fit: contain; }
@keyframes clientScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gallery */
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 12px; cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(var(--primary-rgb), 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-overlay {
    flex-direction: column; gap: 8px;
}
.gallery-overlay i { font-size: 2rem; color: var(--white); }
.gallery-caption { color: #fff; font-size: 0.85rem; font-weight: 600; text-align: center; padding: 0 12px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Gallery page tabs */
.gallery-tabs { gap: 8px; border-bottom: none; }
.gallery-tabs .nav-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    color: var(--text); background: #f1f5f9;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.gallery-tabs .nav-link i { font-size: 1.1rem; }
.gallery-tabs .nav-link.active {
    background: var(--accent); color: #fff;
    border-color: var(--accent);
}
.gallery-tab-count {
    background: rgba(0,0,0,0.12); font-size: 0.75rem;
    padding: 2px 8px; border-radius: 20px;
}
.gallery-tabs .nav-link.active .gallery-tab-count { background: rgba(255,255,255,0.25); }

/* Gallery videos */
.gallery-video-card {
    background: #fff; border-radius: 12px;
    overflow: hidden; border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.gallery-video-frame iframe { border: none; border-radius: 12px 12px 0 0; }
.gallery-video-title {
    padding: 14px 16px; margin: 0;
    font-size: 0.95rem; font-weight: 600; color: var(--primary);
}
.gallery-video-thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.gallery-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(11,31,58,0.45); color: #fff;
    font-size: 3rem; text-decoration: none;
    transition: background 0.2s;
}
.gallery-play-btn:hover { background: rgba(11,31,58,0.6); color: #fff; }

/* FAQ */
.faq-accordion .accordion-item {
    border: 1px solid rgba(0,0,0,0.08); border-radius: 12px !important;
    margin-bottom: 12px; overflow: hidden;
}
[data-theme="dark"] .faq-accordion .accordion-item { border-color: rgba(255,255,255,0.08); }
.faq-accordion .accordion-button {
    font-weight: 600; font-size: 0.95rem; padding: 20px 24px;
    background: transparent; box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent); background: rgba(var(--accent-rgb), 0.05);
}
.faq-accordion .accordion-body { color: var(--text-muted); padding: 0 24px 20px; }

/* Contact */
.contact-info-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; margin-bottom: 16px;
}
.contact-info-card i {
    font-size: 1.3rem; color: var(--accent);
    width: 45px; height: 45px; min-width: 45px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contact-info-card h5 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-card p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.9rem; }
.contact-info-card a { color: rgba(255,255,255,0.7); }
.contact-info-card a:hover { color: var(--accent); }
.contact-info-card .text-accent { color: var(--accent) !important; font-weight: 500; }
.contact-info-card .text-accent:hover { text-decoration: underline; }

.contact-form .form-control {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); padding: 12px 16px; border-radius: 10px;
}
.contact-form .form-control:focus {
    background: rgba(255,255,255,0.08); border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15); color: var(--white);
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.4); }

/* Contact Form Popup */
.contact-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(11, 31, 58, 0.72);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.contact-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.contact-popup {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 36px 28px 28px;
    text-align: center;
    background: linear-gradient(160deg, #0f2744 0%, #0b1f3a 55%, #091a30 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transform: scale(0.82) translateY(24px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.contact-popup-overlay.is-visible .contact-popup {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.contact-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.contact-popup-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: rotate(90deg);
}
.contact-popup-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.contact-popup-icon--success {
    background: rgba(0, 200, 83, 0.15);
    border: 3px solid rgba(0, 200, 83, 0.35);
    animation: popupIconPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.contact-popup-icon--success::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 200, 83, 0.45);
    animation: popupRingPulse 1.4s ease-out 0.35s infinite;
}
.contact-popup-icon--success i {
    font-size: 2.4rem;
    color: var(--accent);
    animation: popupCheckBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}
.contact-popup-icon--error {
    background: rgba(220, 53, 69, 0.15);
    border: 3px solid rgba(220, 53, 69, 0.35);
    animation: popupShake 0.5s ease 0.15s both;
}
.contact-popup-icon--error i {
    font-size: 2.2rem;
    color: #ff6b7a;
}
.contact-popup-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: popupTextFade 0.45s ease 0.25s both;
}
.contact-popup-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 22px;
    animation: popupTextFade 0.45s ease 0.35s both;
}
.contact-popup-btn {
    min-width: 140px;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 700;
    animation: popupTextFade 0.45s ease 0.45s both;
}
@keyframes popupIconPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes popupCheckBounce {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes popupRingPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}
@keyframes popupShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}
@keyframes popupTextFade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Modern Map (Google Maps Embed) */
.modern-map-section { padding: 0 0 80px; background: #f4f6f9; }
.modern-map-shell {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 20px 50px rgba(11,31,58,0.12);
}
.modern-map-head {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #142d52 100%);
    color: #fff;
}
.modern-map-head h3 { margin: 6px 0 4px; font-size: 1.35rem; font-weight: 700; }
.modern-map-head p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.modern-map-head .section-label { color: var(--accent); }
.btn-map-nav {
    white-space: nowrap; font-weight: 600; font-size: 0.85rem;
    padding: 10px 18px !important; border-radius: 10px !important;
    display: inline-flex; align-items: center; gap: 8px;
}
.modern-map {
    width: 100%; z-index: 1;
    background: #e8edf3;
    position: relative;
    overflow: hidden;
}
.google-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.modern-map--compact { border-radius: 8px; }
.modern-map-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 14px 22px; background: #f8fafc;
    border-top: 1px solid #e8edf3;
    font-size: 0.85rem; color: #64748b;
}
.modern-map-foot a {
    color: var(--accent); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.modern-map-foot a:hover { color: var(--primary); }
@media (max-width: 767px) {
    .modern-map-head { flex-direction: column; align-items: flex-start; }
    .modern-map-foot { flex-direction: column; align-items: flex-start; }
}

/* Footer */
.site-footer { background: #060d18; color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 40px; }
.footer-logo {
    display: block;
    height: 50px;
    max-height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.08);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.site-footer h5 {
    color: var(--white); font-size: 1.1rem; margin-bottom: 20px;
    position: relative; padding-bottom: 12px;
}
.site-footer h5::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--accent);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; font-size: 0.9rem;
}
.footer-contact i { color: var(--accent); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-policies a {
    color: rgba(255,255,255,0.5); font-size: 0.85rem;
    margin-left: 20px;
}
.footer-policies a:hover { color: var(--accent); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 30px; z-index: 999;
    width: 55px; height: 55px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--white); font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition); animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 998;
    width: 45px; height: 45px; background: var(--accent);
    border: none; border-radius: 50%; color: var(--white);
    font-size: 1.1rem; cursor: pointer; opacity: 0;
    visibility: hidden; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--primary); }

/* Inner Pages */
.page-hero {
    padding: 140px 0 80px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    z-index: 0; pointer-events: none;
}
.page-hero-gradient {
    position: absolute; inset: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        #0B1F3A 0deg,
        #1a3a6b 60deg,
        #00C853 120deg,
        #2563eb 180deg,
        #7c3aed 240deg,
        #0d9488 300deg,
        #0B1F3A 360deg
    );
    opacity: 0.55;
    animation: pageHeroSpin 18s linear infinite;
    filter: blur(40px);
}
.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.65;
    animation: pageHeroFloat 8s ease-in-out infinite;
}
.page-hero-orb--1 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0,200,83,0.9) 0%, transparent 70%);
    top: -80px; left: 8%;
    animation-duration: 9s;
}
.page-hero-orb--2 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(37,99,235,0.85) 0%, transparent 70%);
    top: 20%; right: 5%;
    animation-duration: 11s;
    animation-delay: -2s;
}
.page-hero-orb--3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(124,58,237,0.8) 0%, transparent 70%);
    bottom: -40px; left: 35%;
    animation-duration: 10s;
    animation-delay: -4s;
}
.page-hero-orb--4 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(13,148,136,0.75) 0%, transparent 70%);
    bottom: 10%; right: 25%;
    animation-duration: 7s;
    animation-delay: -1s;
}
.page-hero-shine {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255,255,255,0.06) 45%,
        rgba(0,200,83,0.12) 50%,
        rgba(255,255,255,0.06) 55%,
        transparent 65%
    );
    background-size: 200% 100%;
    animation: pageHeroShine 6s ease-in-out infinite;
}
.page-hero-content {
    position: relative; z-index: 2;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,31,58,0.3) 0%, rgba(11,31,58,0.75) 100%);
    z-index: 1; pointer-events: none;
}
@keyframes pageHeroSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes pageHeroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -18px) scale(1.08); }
    66% { transform: translate(-16px, 12px) scale(0.95); }
}
@keyframes pageHeroShine {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
    .page-hero-gradient,
    .page-hero-orb,
    .page-hero-shine { animation: none; }
}
.page-breadcrumb .breadcrumb { justify-content: center; margin-bottom: 24px; }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-breadcrumb .breadcrumb-item a:hover { color: var(--accent); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #142d4f 100%);
}

.explore-card {
    display: block; color: inherit; text-decoration: none;
    text-align: center; padding: 32px 24px; height: 100%;
    transition: var(--transition);
}
.explore-card:hover {
    color: inherit; transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.3);
}
.explore-icon {
    width: 60px; height: 60px; margin: 0 auto 16px;
    background: rgba(var(--accent-rgb), 0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent);
    transition: var(--transition);
}
.explore-card:hover .explore-icon { background: var(--accent); color: var(--white); }
.explore-card h5 { margin-bottom: 8px; }
.explore-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.explore-link {
    color: var(--accent); font-weight: 600; font-size: 0.85rem;
}
.explore-link i { transition: transform 0.3s; }
.explore-card:hover .explore-link i { transform: translateX(4px); }

/* Policy Page */
.policy-content { color: var(--text-muted); line-height: 1.8; }
.policy-content p { margin-bottom: 16px; }

/* Responsive */
@media (max-width: 991px) {
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
    }

    /* col-lg-* without a smaller breakpoint must stack full-width */
    [class*="col-lg-"]:not([class*="col-12"]):not([class*="col-sm-"]):not([class*="col-md-"]):not([class*="col-6"]):not([class*="col-4"]):not([class*="col-3"]) {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-about-mockup > .container > .row.g-4 > .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nav-logo {
        height: 36px;
        max-height: 36px;
        max-width: 150px;
    }
    .navbar-brand { max-width: 170px; }
    .navbar:not(.navbar-corporate) .navbar-collapse {
        background: rgba(var(--primary-rgb), 0.98);
        padding: 20px; border-radius: 12px; margin-top: 10px;
    }
    .navbar-corporate .navbar-collapse {
        background: #fff !important;
        padding: 14px 16px 18px !important;
        margin-top: 10px;
        border-radius: 12px;
        border: 1px solid #e8ecf0;
        box-shadow: 0 10px 30px rgba(11,31,58,0.1);
    }
    .navbar-corporate .navbar-nav { gap: 4px; }
    .navbar-corporate .nav-link {
        padding: 10px 8px !important;
        border-bottom: 1px solid #f1f5f9;
    }
    .navbar-corporate .nav-item:last-child .nav-link { border-bottom: none; }
    .navbar-corporate .dropdown-menu-products {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100%;
        min-width: 0;
        margin: 8px 0 4px !important;
        box-shadow: none;
        border: 1px solid #e8ecf0;
    }
    .btn-quote {
        margin-top: 14px;
        width: 100%;
        text-align: center;
        display: block;
    }
    .section-padding { padding: 60px 0; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }
    .about-badge { right: 10px; bottom: -10px; }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-padding { padding: 50px 0; }
    .top-bar { padding: 7px 0; }
    .top-bar-contact-link { font-size: 0.72rem; }
    .navbar-corporate { padding: 8px 0 !important; }
    .corporate-brand { max-width: 200px !important; }
    .nav-logo-corporate { height: 40px; max-height: 40px; }
    .brand-name { font-size: 0.82rem; }
    .brand-tagline { font-size: 0.55rem; }
    html { scroll-padding-top: 118px; }
    .page-hero {
        padding: 110px 0 50px !important;
        margin-top: 100px !important;
    }
    .page-hero-title,
    .page-hero .section-title { font-size: 1.6rem !important; }
    .page-hero .section-subtitle { font-size: 0.88rem; padding: 0 4px; }
    .modern-map-head {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }
    .modern-map-head .btn-map-nav { width: 100%; justify-content: center; }
    .stat-number { font-size: 2.2rem; }
    .footer-top { padding: 50px 0 30px; }
    .footer-policies a { display: block; margin: 8px 0 0; }
    .whatsapp-float { bottom: 80px; right: 16px; width: 50px; height: 50px; }
    .back-to-top { right: 16px; bottom: 16px; }
    .gallery-tabs .nav-link { padding: 8px 16px; font-size: 0.82rem; }

    .section-title,
    .section-subtitle,
    .industries-page-intro {
        text-align: center !important;
    }
    .industry-page-card,
    .industry-product-card,
    .product-card,
    .why-card {
        text-align: center;
    }
    .industry-page-desc,
    .industry-product-card p {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
