/* MAIN STYLESHEET - SAFETY AUTO PARTS */
:root {
    --primary: #FFFFFF;
    --secondary: #F8FAFC;
    --accent: #FF6B00;
    --accent-hover: #E05E00;
    --dark: #111827;
    --light-text: #6B7280;
    --border-color: #E2E8F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-soft: 0 10px 30px -10px rgba(17, 24, 39, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(17, 24, 39, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Luxury Header with Glassmorphism */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-header.header-hidden {
    transform: translateY(-100%);
}

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

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.logo-box img {
    height: 50px;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--dark);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 10px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav-accent {
    background: var(--dark);
    color: #FFFFFF !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.25s ease !important;
}

.btn-nav-accent:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-trigger,
.menu-mobile-trigger {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
    border-radius: 50%;
    transition: background 0.25s ease;
}

.search-trigger:hover,
.menu-mobile-trigger:hover {
    background: var(--secondary);
}

.menu-mobile-trigger {
    display: none;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    padding: 40px 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-close {
    background: transparent;
    border: none;
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.mobile-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.mobile-links a:hover {
    color: var(--accent);
}

/* Sections Structure */
.content-wrapper {
    margin-top: 0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--light-text);
}

.breadcrumb-item a {
    color: var(--dark);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active span {
    color: var(--accent);
    font-weight: 600;
}

.sec-container {
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 80px 25px; */
}

.sec-tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px 0 30px 0;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Premium Hero Slider */
.hero-slider-section {
    position: relative;
    height: calc(100vh - 70px);
    margin-top: -70px;
}

.heroSwiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    overflow: hidden;
}

.slide-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.swiper-slide-active .slide-image-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.7) 0%, rgba(17, 24, 39, 0.3) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.slide-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.slide-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-family: var(--font-body);
}

.btn-accent-large {
    background: var(--accent);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-accent-large:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

/* Modern Company Overview */
.modern-overview {
    background: linear-gradient(180deg, var(--secondary) 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.modern-overview-header {
    max-width: 900px;
    margin: 0 auto;
}

.overview-lead-text {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.8;
    text-align: center;
}

/* Split Layout for Overview */
.overview-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image-side {
    position: relative;
    padding-right: 20px;
}

.image-wrapper-3d {
    position: relative;
    border-radius: 20px;
    z-index: 2;
}

.image-wrapper-3d img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.15);
    display: block;
    position: relative;
    z-index: 2;
}

.image-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--dark);
    color: #FFFFFF;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.overview-content-side {
    padding-left: 20px;
}

.premium-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--dark);
}

.overview-content-side .overview-lead-text {
    text-align: left;
    margin-bottom: 20px;
    color: var(--light-text);
}

.overview-features {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.feat-item i {
    color: var(--accent);
    font-size: 20px;
}

@media (max-width: 991px) {
    .overview-split-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .overview-content-side {
        padding-left: 0;
    }

    .overview-image-side {
        padding-right: 0;
        margin-left: 20px;
    }
}

.expertise-header {
    margin-bottom: 50px;
}

.creative-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.creative-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.creative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.creative-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.creative-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.creative-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.4) 100%);
}

.creative-card-content {
    padding: 35px 25px;
    position: relative;
    flex-grow: 1;
}

.creative-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    right: 25px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    border: 4px solid #FFFFFF;
    transition: all 0.4s ease;
}

.creative-card:hover .creative-icon {
    transform: rotateY(180deg);
    background: var(--dark);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.3);
}

.creative-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.creative-card p {
    color: var(--light-text);
    font-size: 14.5px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .modern-overview {
        padding: 60px 0;
    }

    .overview-lead-text {
        font-size: 16px;
    }

    .creative-card-content {
        padding: 30px 20px;
    }
}

.btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark);
    color: #FFFFFF;
}

/* Modern Category Grid */
.modern-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

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

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: var(--dark);
    transform: translateX(5px);
}

/* Category Cards */
.category-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.category-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.category-card:hover .category-img-box img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.btn-circle-view {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-circle-view:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.category-details {
    padding: 25px;
}

.category-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.category-details p {
    color: var(--light-text);
    font-size: 14px;
}

/* Product Luxury Card */
.product-luxury-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.product-luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.product-img-holder {
    position: relative;
    height: 220px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-holder img {
    max-height: 180px;
    object-fit: contain;
}

.sku-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(17, 24, 39, 0.08);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-info-holder {
    padding: 25px;
}

.product-info-holder h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.short-desc {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 20px;
    height: 40px;
    overflow: hidden;
}

.product-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-view-details {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid var(--dark);
    padding-bottom: 2px;
}

.btn-view-details:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-quick-inquire {
    background: var(--secondary);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    color: var(--dark);
    transition: all 0.25s ease;
}

.btn-quick-inquire:hover {
    background: var(--accent);
    color: #FFFFFF;
}

/* ThreeJS Showcase Grid */
.threejs-showcase-section {
    background-color: var(--secondary);
}

.showcase-3d-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.control-hints {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hint-item {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
}

.showcase-3d-canvas-box {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

#threeJsCanvasContainer {
    width: 100%;
    height: 450px;
    position: relative;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

/* Process Timeline (timeline list) */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-node {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    z-index: 2;
}

.node-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.node-content p {
    color: var(--light-text);
}

/* Infrastructure Gallery */
.infra-slide {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.infra-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Digital Catalog Cards */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.catalog-card-premium {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.cover-image-container {
    height: 350px;
    overflow: hidden;
}

.cover-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.catalog-body p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.btn-flipbook-trigger {
    background: var(--dark);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    display: block;
    transition: all 0.25s ease;
}

.btn-flipbook-trigger:hover {
    background: var(--accent);
}

/* SVG Interactive Map */
.export-network-section {
    background-color: var(--secondary);
}

.network-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.country-stat-list {
    margin-top: 30px;
    list-style: none;
}

.country-stat-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.svg-map-wrapper {
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    padding: 20px;
}

.world-svg-map {
    width: 100%;
    height: auto;
}

.map-marker {
    cursor: pointer;
}

.ping-pulse {
    animation: pulse 2s infinite;
    transform-origin: center;
}

.map-tooltip {
    position: absolute;
    background: var(--dark);
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    display: none;
    z-index: 50;
}

/* Certifications Layout */
.cert-card-premium {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.cert-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.cert-card-premium h3 {
    margin-bottom: 10px;
}

.cert-card-premium p {
    color: var(--light-text);
    font-size: 14px;
}

/* Client Testimonials Slider */
.testimonials-slider-section {
    background: var(--secondary);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #CBD5E1;
    font-size: 20px;
}

.stars i.active {
    color: #FFB800;
}

.comment {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}

.client-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-text {
    text-align: left;
}

.profile-text h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.profile-text p {
    font-size: 13px;
    color: var(--light-text);
}

/* Inquiry CTA Forms & Styling */
.inquiry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.cta-direct-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-whatsapp-cta {
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-phone-cta {
    border: 2px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.inquiry-form-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

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

.luxury-form .form-group {
    margin-bottom: 20px;
}

.luxury-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.luxury-form input[type="text"],
.luxury-form input[type="email"],
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.25s ease;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* AJAX Search Modal Overlay */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    padding-top: 100px;
    justify-content: center;
}

.search-modal.active {
    display: flex;
}

.search-modal-container {
    background: #FFFFFF;
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.search-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.search-body {
    padding: 25px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--light-text);
}

#searchInput {
    width: 100%;
    padding: 15px 15px 15px 50px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.search-results {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.search-tip {
    color: var(--light-text);
    text-align: center;
    padding: 20px 0;
}

/* Float WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
}

/* Flash Alerts */
.flash-alert {
    max-width: 1300px;
    margin: 20px auto 0 auto;
    padding: 15px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flash-success {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.flash-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
}

/* Standard Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* 404 Styling */
.error-404-sec {
    min-height: 70vh;
}

/* Responsiveness overrides */
@media(max-width: 992px) {

    .overview-grid,
    .showcase-3d-grid,
    .network-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .menu-mobile-trigger {
        display: block;
    }
}

/* Luxury Footer Styling */
.luxury-footer {
    background-color: var(--dark);
    color: #F8FAFC;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand img.footer-logo {
    height: 90px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-brand p.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-column ul li a i {
    font-size: 12px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-column ul li a:hover i {
    transform: translateX(3px);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-details p i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
}

.footer-newsletter h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}


.footer-bottom {
    max-width: 1300px;
    margin: 60px auto 0 auto;
    padding: 30px 25px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #64748B;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crafted-text {
    color: #94A3B8;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.heart-icon {
    display: inline-flex;
    align-items: center;
    color: #FF6B00;
    font-size: 14px;
    animation: heartBreath 2s ease-in-out infinite;
}

.jk-webcom {
    color: #F8FAFC;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s linear;
}

.jk-webcom:hover {
    color: var(--accent);
}

.crafted-tagline {
    color: #64748B;
    font-size: 12px;
    line-height: 1.4;
}

@keyframes heartBreath {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left {
        align-items: center;
    }

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

    .luxury-footer {
        padding: 50px 0 30px 0;
    }
}

/* Global Quote Modal Styles */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.5);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
}

.quote-modal-overlay.active {
    display: flex;
}

.quote-modal {
    background: #FFFFFF;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: var(--dark);
    text-align: left;
}

.quote-header {
    background: var(--secondary);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quote-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.quote-close-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.quote-body {
    padding: 20px;
}

.w-100 {
    width: 100%;
}

/* ==========================================
   NEW REDESIGNED PREMIUM SECTIONS (V2)
========================================== */
/* Global Impact Section */
.global-impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a202c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.global-impact-section .premium-heading {
    color: #fff;
}

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

.impact-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.impact-stats-row {
    display: flex;
    gap: 40px;
}

.impact-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-plus {
    font-size: 24px;
    color: var(--accent);
    font-weight: 700;
    position: relative;
    top: -20px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-top: 5px;
}

.impact-visuals {
    position: relative;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.5);
}

.mt-30 {
    margin-top: 30px;
    margin-left: 40px;
}

.impact-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.glass-panel h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.glass-panel p {
    /* color: rgba(255,255,255,0.7); */
}

/* Premium Manufacturing Process */
.premium-process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-staggered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.process-luxury-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
}

.process-luxury-card:nth-child(even) {
    transform: translateY(30px);
}

.process-luxury-card:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px) scale(1.02);
}

.process-luxury-card:nth-child(even):hover {
    transform: translateY(25px) scale(1.02);
}

.process-step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.03);
    line-height: 1;
    transition: color 0.4s ease;
}

.process-luxury-card:hover .process-step-number {
    color: rgba(255, 107, 0, 0.1);
}

.process-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.process-luxury-card:hover .process-icon-box {
    background: var(--accent);
    color: #fff;
}

.process-luxury-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-luxury-card p {
    color: var(--light-text);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Interactive Infrastructure */
.interactive-infrastructure-section {
    padding: 100px 0;
    background: #fff;
}

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

.infra-lead {
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 18px;
}

.infra-interactive-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infra-item {
    padding: 20px 25px;
    border-left: 4px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.infra-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.infra-item p {
    color: var(--light-text);
    font-size: 15px;
}

.infra-item:hover,
.infra-item.active {
    border-left-color: var(--accent);
    background: #fafafa;
}

.infra-item:hover h4,
.infra-item.active h4 {
    color: var(--accent);
}

.infra-visual-side {
    position: relative;
    height: 500px;
}

.infra-image-display {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
}

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

.image-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.5), transparent);
}

/* Premium Export Network */
.premium-export-network {
    padding: 100px 0;
    background: var(--dark);
    color: #fff;
}

.premium-export-network .premium-heading {
    color: #fff;
}

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

.network-lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.luxury-country-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.country-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.country-stat-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.country-stat-card i {
    color: var(--accent);
    font-size: 20px;
}

.c-info strong {
    display: block;
    font-size: 16px;
    color: #fff;
}

.c-info span {
    font-size: 12px;
    color: #aaa;
}

.premium-map-container {
    position: relative;
    width: 100%;
    padding-top: 60%;
}

.luxury-world-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.luxury-world-map .landmass {
    fill: #2a3441;
    stroke: #374151;
    stroke-width: 2;
    transition: fill 0.3s ease;
}

.luxury-world-map:hover .landmass {
    fill: #374151;
}

.premium-map-marker {
    cursor: pointer;
}

.marker-pulse {
    fill: var(--accent);
    opacity: 0.3;
    animation: luxuryPulse 2s infinite ease-out;
    transform-origin: center;
}

.marker-core {
    fill: var(--accent);
}

@keyframes luxuryPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.premium-map-tooltip {
    position: absolute;
    background: #fff;
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 991px) {

    .impact-grid,
    .infra-split-layout,
    .network-luxury-grid {
        grid-template-columns: 1fr;
    }

    .process-luxury-card:nth-child(even) {
        transform: translateY(0);
    }
}

/* ==========================================
   PREMIUM REDESIGN REST OF SECTIONS
========================================== */
/* Premium Hero Slider */
.luxury-gradient-overlay {
    background: linear-gradient(to right, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.2) 100%);
}

.premium-glass-content {
    padding: 50px;
    max-width: 800px;
    text-align: left;
    margin-left: 5%;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: luxuryPulse 2s infinite;
}

.premium-hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.premium-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-luxury-solid {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-luxury-solid:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

/* Premium Company Overview */
.premium-overview-section {
    padding: 120px 0;
    background: #fff;
}

/* --- PREMIUM COMPANY OVERVIEW REDESIGN --- */

.premium-gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    padding-bottom: 30px; /* Space for the floating badge */
}

.gallery-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
}

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

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

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

/* Maintain proper aspect ratios to prevent overlapping while showing fully */
.g-img-1 { aspect-ratio: 4 / 3; }
.g-img-2 { aspect-ratio: 4 / 3; }
.g-img-3 { aspect-ratio: 4 / 3; }
.g-img-4 { aspect-ratio: 4 / 3; }
.g-img-wide {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
}

/* Floating 30+ Years Badge */
.premium-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 15px 35px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
    white-space: nowrap;
    animation: floatBadge 6s ease-in-out infinite;
}

.premium-badge .badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #F97316; /* Accent Orange */
    line-height: 1;
}

.premium-badge .badge-text {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side Premium Content Styling */
.premium-content .sec-tag {
    color: #F97316; /* Accent Orange */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.premium-content .premium-heading {
    color: #0F172A; /* Primary Text */
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.premium-content .divider {
    width: 60px;
    height: 4px;
    background: #F97316;
    margin-bottom: 30px;
    border-radius: 2px;
}

.premium-content p {
    color: #64748B; /* Secondary Text */
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.premium-content .luxury-features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-content .lux-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0F172A;
    font-weight: 600;
    font-size: 1.15rem;
}

.premium-content .lux-feat-item i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F97316;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@keyframes floatBadge {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -15px); }
    100% { transform: translate(-50%, 0); }
}

.collage-backdrop {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.luxury-features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lux-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
}

.lux-feat-item i {
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.luxury-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lux-expertise-card {
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.lux-expertise-card:hover {
    background: #fff;
    box-shadow: var(--shadow-premium);
    border-color: var(--border-color);
    transform: translateY(-10px);
}

.lux-icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.lux-expertise-card:hover .lux-icon {
    transform: scale(1.1);
}

.lux-expertise-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.lux-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 0 0 16px 16px;
    transition: width 0.4s ease;
}

.lux-expertise-card:hover .lux-hover-line {
    width: 100%;
}

/* Premium Categories */
.premium-categories-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.luxury-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.lux-category-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.lux-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-category-card:hover .lux-cat-img {
    transform: scale(1.1);
}

.lux-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.lux-cat-content {
    color: #fff;
}

.lux-cat-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.lux-cat-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.lux-cat-btn {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.lux-category-card:hover .lux-cat-btn {
    gap: 15px;
}

/* Premium Certifications */
.premium-certifications-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.text-white {
    color: #fff;
}

.lux-cert-card {
    padding: 40px;
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin: 10px;
}

.lux-cert-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Premium Testimonials */
.premium-testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.lux-testimonial-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    margin: 20px 10px;
}

.quote-mark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(255, 107, 0, 0.1);
}

.lux-testimonial-card .comment {
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    margin: 25px 0;
    line-height: 1.8;
}

/* Premium Inquiry CTA */
.premium-inquiry-cta {
    padding: 120px 0;
    background: #fff;
}

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

.lux-inquiry-lead {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.btn-whatsapp-lux,
.btn-phone-lux {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-lux {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.btn-whatsapp-lux:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-phone-lux {
    background: rgba(17, 24, 39, 0.05);
    color: var(--dark);
}

.btn-phone-lux:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}

.lux-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.lux-form-group {
    position: relative;
    margin-bottom: 25px;
}

.lux-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.lux-form-group input,
.lux-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.lux-form-group input:focus,
.lux-form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .premium-hero-title {
        font-size: 42px;
    }

    .premium-glass-content {
        margin-left: 0;
    }

    .luxury-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-inquiry-grid {
        grid-template-columns: 1fr;
    }

    .lux-floating-badge {
        right: 0;
        bottom: -20px;
    }

    .overview-collage {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .luxury-category-grid {
        grid-template-columns: 1fr;
    }

    .overview-collage {
        height: 450px;
    }

    .collage-5 .img-1 {
        height: 200px;
        width: 45%;
    }

    .collage-5 .img-2 {
        height: 220px;
        width: 50%;
        top: 30px;
    }

    .collage-5 .img-3 {
        height: 180px;
        width: 40%;
        top: 220px;
        left: 0;
    }

    .collage-5 .img-4 {
        height: 160px;
        width: 35%;
        bottom: 80px;
        right: 0;
    }

    .collage-5 .img-5 {
        height: 200px;
        width: 45%;
        bottom: 0;
        left: 35%;
    }

    .lux-floating-badge.parallax-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px;
    }

    .lux-floating-badge.parallax-badge .badge-number {
        font-size: 32px;
    }
}

/* ==========================================
   COMPACT ENTERPRISE REDESIGN (ABOUT)
========================================== */

/* Base Layout & Spacing Rules */
.ent-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.ent-section { padding: 80px 0; }
@media (max-width: 768px) { .ent-section { padding: 50px 0; } }

/* Typography */
.ent-heading-large { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
.ent-heading-medium { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
.ent-heading-small { font-size: clamp(1.5rem, 2vw, 2.2rem); font-weight: 600; line-height: 1.3; }
.ent-heading-xsmall { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
.ent-paragraph { font-size: 16px; line-height: 1.8; color: #64748B; }
.ent-paragraph-small { font-size: 14px; line-height: 1.7; color: #64748B; }
.ent-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #F97316; margin-bottom: 12px; display: inline-block; }

/* Grid Layouts */
.ent-split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ent-compact-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ent-compact-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Buttons */
.ent-btn-primary, .ent-btn-outline {
    padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; text-align: center;
}
.ent-btn-primary { background: #F97316; color: #fff; border: 2px solid #F97316; }
.ent-btn-primary:hover { background: #EA580C; border-color: #EA580C; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2); }
.ent-btn-outline { background: transparent; color: #0F172A; border: 2px solid #0F172A; }
.ent-btn-outline:hover { background: #0F172A; color: #fff; transform: translateY(-3px); }

/* Hero Section */
.ent-hero-section { min-height: 70vh; background: #f8fafc; padding: 120px 0 80px; overflow: hidden; }
.ent-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(249, 115, 22, 0.1); color: #F97316; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.pulse-dot-orange { width: 8px; height: 8px; background: #F97316; border-radius: 50%; animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.ent-hero-visual { padding-right: 40px; }
.ent-hero-img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); width: 100%; height: auto; max-height: 500px; object-fit: cover; }
.ent-float-stat { position: absolute; padding: 20px 24px; border-radius: 16px; display: flex; flex-direction: column; z-index: 5; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.glass-panel-dark { background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); color: #fff; }
.stat-top { top: -20px; right: -20px; }
.stat-bottom { bottom: 40px; left: -40px; }
.ent-float-stat strong { font-size: 24px; line-height: 1; margin-bottom: 4px; }
.ent-float-stat span { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }

/* Shapes */
.ent-shape { position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1; }
.shape-1 { width: 300px; height: 300px; background: rgba(249, 115, 22, 0.15); top: -100px; right: -50px; }
.shape-2 { width: 400px; height: 400px; background: rgba(59, 130, 246, 0.1); bottom: -150px; left: -100px; }

/* About Gallery */
.ent-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ent-gallery-img { border-radius: 20px; overflow: hidden; aspect-ratio: 1; }
.ent-gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ent-gallery-img:hover img { transform: scale(1.05); }

/* Features & Stats */
.ent-features { display: flex; flex-direction: column; gap: 12px; }
.ent-feature-item { font-size: 15px; font-weight: 500; color: #0F172A; display: flex; align-items: center; gap: 12px; }
.ent-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; border-top: 1px solid #E2E8F0; padding-top: 30px; }
.ent-stat { display: flex; flex-direction: column; }
.ent-stat strong { font-size: 32px; font-weight: 800; color: #0F172A; line-height: 1; }
.ent-stat span { font-size: 13px; font-weight: 600; color: #64748B; margin-top: 4px; }

/* Vision & Mission Cards */
.ent-card { border-radius: 20px; padding: 32px; max-height: 260px; display: flex; flex-direction: column; transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.05); }
.glass-card { background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); }
.glass-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.ent-card-icon { font-size: 32px; color: #F97316; margin-bottom: 20px; }
.ent-link { color: #F97316; font-size: 14px; font-weight: 600; text-decoration: none; margin-top: auto; display: inline-flex; align-items: center; gap: 8px; }
.ent-link:hover { color: #EA580C; }

/* Value Cards */
.ent-value-card { background: #fff; border-radius: 20px; padding: 24px; position: relative; overflow: hidden; border: 1px solid #E2E8F0; max-height: 220px; transition: all 0.4s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.ent-value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 30px rgba(0,0,0,0.06); border-color: rgba(249,115,22,0.3); }
.ent-glow-bg { position: absolute; top: -50px; right: -50px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%); border-radius: 50%; }
.ent-card-icon-small { width: 48px; height: 48px; background: #FFF7ED; color: #F97316; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px; }

/* Manufacturing */
.ent-rounded-img { border-radius: 20px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ent-counter strong { font-weight: 800; line-height: 1; display: block; }

/* Global Map */
.pulse-marker { animation: markerPing 2s infinite ease-out; transform-origin: center; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
@keyframes markerPing { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(4); } }

/* CTA Banner */
.ent-cta-banner { border-radius: 20px; padding: 48px 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; overflow: hidden; }

/* Footer Compact Updates */
.luxury-footer { padding: 60px 0 20px !important; }
.footer-column { padding: 0 15px; }
.footer-column ul li { margin-bottom: 10px !important; }
.footer-newsletter { margin-top: 20px !important; }
.footer-newsletter input { padding: 12px 16px !important; font-size: 14px; }
.footer-newsletter button { width: 44px !important; height: 44px !important; }

/* Responsive Constraints */
@media (max-width: 991px) {
    .ent-split-layout, .ent-compact-grid-2 { grid-template-columns: 1fr; }
    .ent-compact-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ent-hero-section { text-align: center; padding-top: 100px; }
    .ent-hero-visual { padding-right: 0; margin-top: 40px; }
    .stat-top, .stat-bottom { position: relative; top: auto; right: auto; left: auto; bottom: auto; display: inline-block; margin: 10px; }
    .ent-cta-content { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .ent-compact-grid-3 { grid-template-columns: 1fr; }
    .ent-stats-row { grid-template-columns: 1fr; gap: 16px; }
    .ent-gallery-grid { grid-template-columns: 1fr; }
    .ent-btn-primary, .ent-btn-outline { width: 100%; display: block; margin-bottom: 10px; }
    .d-flex.gap-3 { flex-direction: column; width: 100%; }
}

/* ==========================================
   FLASH BANNER MODAL
========================================== */
.flash-banner-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.flash-banner-overlay.show-banner {
    opacity: 1;
    visibility: visible;
}

.flash-banner-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    transform: translateY(50px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.flash-banner-overlay.show-banner .flash-banner-content {
    transform: translateY(0) scale(1);
}

.flash-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.flash-close-btn:hover {
    background: #F97316;
}

.flash-banner-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.flash-banner-image-link img {
    transition: transform 0.4s ease;
}

.flash-banner-image-link:hover img {
    transform: scale(1.05);
}

/* ==========================================
   MODERN FLOATING WIDGET
========================================== */
.modern-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-item {
    position: relative;
    display: flex;
    align-items: center;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.call-btn {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}
.wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.float-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #0F172A;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.float-item:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animations for visibility */
.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: floatPulse 2s infinite;
}

.wa-btn::before { animation-delay: 1s; }

@keyframes floatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .modern-float-widget {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .float-tooltip {
        display: none;
    }
}
/* ==========================================
   DROPDOWN MENU STYLES
   ========================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1); /* Gold accent */
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu a {
    font-size: 1.1rem;
    padding: 10px 0;
    color: var(--text-light);
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-color);
}

/* ==========================================
   ABOUT SUBPAGES STYLES
   ========================================== */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/pattern-bg.png') center/cover;
    opacity: 0.1;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.about-content-section {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Feature Cards (Why Choose Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Director Desk */
.director-section {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    margin: -40px auto 80px;
    position: relative;
    z-index: 10;
}

.director-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid #D4AF37;
    padding-left: 20px;
    margin: 30px 0;
}

.director-sign {
    margin-top: 40px;
}

.director-sign h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.director-sign p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .director-section {
        padding: 40px 30px;
    }
}

/* ==========================================
   5-6 SECTION RICH ABOUT PAGES STYLES
   ========================================== */
.about-hero-rich {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f1c40f;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-rich h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.about-hero-rich p {
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 14px;
    min-width: 150px;
}

.hero-stat-item .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f1c40f;
}

.hero-stat-item .stat-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.rich-section {
    padding: 80px 0;
    position: relative;
}

.rich-section.bg-light {
    background-color: #f8f9fa;
}

.rich-section.bg-dark {
    background-color: #0f172a;
}

.section-title-wrap {
    margin-bottom: 50px;
}

.section-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title-wrap h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
}

.bg-dark .section-title-wrap h2 {
    color: #ffffff;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
    border-radius: 2px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.align-center {
    align-items: center;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-color);
}

.check-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.check-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item i {
    color: #d4af37;
}

.image-card-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.badge-sub {
    font-size: 0.8rem;
    color: #94a3b8;
}

.infra-highlights {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.infra-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex: 1;
    border-top: 3px solid #d4af37;
}

.infra-box i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.product-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.matrix-card {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.matrix-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.card-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 12px;
}

.matrix-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.matrix-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.rich-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.rich-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-icon-gold {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.subpage-hub-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.subpage-hub-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.hub-icon {
    width: 55px;
    height: 55px;
    background: rgba(13, 27, 42, 0.05);
    color: #0d1b2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 20px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-hub-link:hover {
    gap: 12px;
    color: #0d1b2a;
}

.cta-banner-rich {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #ffffff;
    padding: 80px 0;
}

.cta-banner-rich h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.cta-banner-rich p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 35px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold-large {
    background: #d4af37;
    color: #0d1b2a;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold-large:hover {
    background: #f1c40f;
    transform: translateY(-3px);
}

.btn-whatsapp-large {
    background: #25d366;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-phone-large {
    background: #0284c7;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-phone-large:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #0d1b2a;
}

/* Responsiveness */
@media (max-width: 991px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
    .about-hero-rich h1 {
        font-size: 2.2rem;
    }
    .hero-stats-row {
        gap: 15px;
    }
    .hero-stat-item {
        min-width: 130px;
        padding: 12px 18px;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE CONTAINER & GRID FRAMEWORK FOR ABOUT PAGES
   ========================================================================== */

/* Standard Container - Maximum Width 1280px */
.container, 
.ent-container,
.about-container {
    width: 100% !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
}

/* Section Padding Standards: 80px Desktop / 50px Mobile */
.rich-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Grid Layout System */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.product-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Reverse Grid Column Order for Alternating Desktop Layouts */
@media (min-width: 992px) {
    .grid-2-col.reverse > :first-child {
        order: 2;
    }
    .grid-2-col.reverse > :last-child {
        order: 1;
    }
}

/* Flex Alignment Helpers */
.align-center {
    align-items: center;
}

/* Typography & Titles */
.section-title-wrap {
    margin-bottom: 50px;
}

.section-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title-wrap h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.bg-dark .section-title-wrap h2 {
    color: #ffffff;
}

.section-desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 12px auto 0;
}

.bg-dark .section-desc {
    color: #94a3b8;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #d4af37;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Hero Section Responsiveness */
.about-hero-rich {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.about-hero-rich h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.about-hero-rich p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 850px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 28px;
    border-radius: 14px;
    flex: 1 1 180px;
    max-width: 220px;
    box-sizing: border-box;
}

.hero-stat-item .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f1c40f;
}

.hero-stat-item .stat-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 600;
}

/* Card Equalization & Styling */
.matrix-card,
.rich-card,
.subpage-hub-card,
.vision-card,
.pillar-card,
.pillar-dark-card,
.principle-card,
.step-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 30px;
}

.vision-card,
.pillar-card,
.principle-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.pillar-dark-card {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
}

.pillar-dark-card .p-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 12px;
}

.pillar-dark-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.pillar-dark-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-card {
    background: #ffffff;
    border-left: 4px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    padding: 24px;
}

.step-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #b48a1d;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.v-icon-badge {
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.vision-card h4,
.pillar-card h4,
.principle-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.vision-card p,
.pillar-card p,
.principle-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
}

.p-icon {
    width: 60px;
    height: 60px;
    background: #0f172a;
    color: #d4af37;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* Director Rich Section Layout */
.director-section-rich {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.director-main-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.director-quote-rich {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid #d4af37;
    padding: 24px 28px;
    border-radius: 0 16px 16px 0;
    margin: 24px 0 30px;
    position: relative;
}

.director-quote-rich .quote-icon {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 8px;
    display: block;
}

.director-quote-rich p {
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
}

.director-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 14px;
    border-left: 4px solid #d4af37;
}

.director-badge-overlay .d-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.director-badge-overlay .d-sub {
    font-size: 0.8rem;
    color: #94a3b8;
}

.assurance-banner,
.expansion-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.assure-item i,
.pillar-card i.icon-gold {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 12px;
    display: block;
}

/* ==========================================================================
   MEDIA QUERIES FOR FULL RESPONSIVENESS BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Desktop Boundaries (1024px to 1200px) */
@media (max-width: 1200px) {
    .grid-4-col,
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .rich-section {
        padding: 60px 0;
    }
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .grid-3-col,
    .product-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .director-section-rich {
        padding: 30px 20px;
    }
    .check-list-grid {
        grid-template-columns: 1fr;
    }
    .infra-highlights {
        flex-direction: column;
    }
}

/* Mobile Devices (Under 768px) */
@media (max-width: 767px) {
    .rich-section {
        padding: 50px 0;
    }
    .container, 
    .ent-container,
    .about-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .grid-3-col,
    .grid-4-col,
    .product-matrix-grid,
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hero-stat-item {
        max-width: 100%;
        padding: 12px 14px;
    }
    .hero-stat-item .stat-num {
        font-size: 1.5rem;
    }
    .hero-stat-item .stat-lbl {
        font-size: 0.75rem;
    }
    .cta-btn-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-gold-large,
    .btn-whatsapp-large,
    .btn-phone-large,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}
