/* =============================================
   FIREWORLD FIBER GLASS — Premium Style Sheet
   Theme: Black / White / Fire Orange (#F87A07)
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --orange: #F87A07;
    --orange-hover: #e06e05;
    --text-primary: #000000;
    --text-muted: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --border-color: #E5E5E5;
    --border-dark: #222222;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 90px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol { list-style: none; }

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

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-accent { color: var(--orange); }
.text-white { color: var(--white); }
.uppercase { text-transform: uppercase; }

.section-padding {
    padding: 100px 0;
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }
.bg-darker { background-color: var(--bg-darker); color: var(--white); }

.bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-darker h2, .bg-darker h3, .bg-darker h4 { color: var(--white); }
.bg-dark p, .bg-darker p { color: #aaa; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 122, 7, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-fire {
    position: relative;
    width: 120px;
    height: 140px;
    margin-bottom: 30px;
}

.fire-flame {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(1px);
}

.fire-flame.flame-1 {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 100px;
    background: linear-gradient(to top, #F87A07 0%, #FF4500 40%, #FF6347 70%, rgba(255,69,0,0) 100%);
    animation: fireFlame1 0.8s ease-in-out infinite alternate;
    z-index: 5;
}

.fire-flame.flame-2 {
    left: 15px;
    width: 40px;
    height: 80px;
    background: linear-gradient(to top, #F87A07 0%, #FF6347 50%, rgba(255,99,71,0) 100%);
    animation: fireFlame2 0.6s ease-in-out infinite alternate;
    z-index: 4;
}

.fire-flame.flame-3 {
    right: 15px;
    width: 40px;
    height: 85px;
    background: linear-gradient(to top, #F87A07 0%, #FF4500 50%, rgba(255,69,0,0) 100%);
    animation: fireFlame3 0.7s ease-in-out infinite alternate;
    z-index: 4;
}

.fire-flame.flame-4 {
    left: 30px;
    width: 30px;
    height: 60px;
    background: linear-gradient(to top, #FFD700 0%, #F87A07 50%, rgba(248,122,7,0) 100%);
    animation: fireFlame4 0.5s ease-in-out infinite alternate;
    z-index: 6;
}

.fire-flame.flame-5 {
    right: 28px;
    width: 28px;
    height: 55px;
    background: linear-gradient(to top, #FFD700 0%, #F87A07 50%, rgba(248,122,7,0) 100%);
    animation: fireFlame5 0.55s ease-in-out infinite alternate;
    z-index: 6;
}

.fire-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(248,122,7,0.5) 0%, rgba(255,69,0,0.2) 50%, transparent 70%);
    filter: blur(10px);
    animation: fireGlow 1s ease-in-out infinite alternate;
    z-index: 1;
}

.fire-embers {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    z-index: 10;
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0;
    animation: emberRise 2s ease-out infinite;
}

.ember:nth-child(1) { left: 10px; animation-delay: 0s; }
.ember:nth-child(2) { left: 25px; animation-delay: 0.3s; }
.ember:nth-child(3) { left: 40px; animation-delay: 0.6s; }
.ember:nth-child(4) { left: 15px; animation-delay: 0.9s; }
.ember:nth-child(5) { left: 35px; animation-delay: 1.2s; }
.ember:nth-child(6) { left: 50px; animation-delay: 0.4s; }
.ember:nth-child(7) { left: 5px; animation-delay: 0.7s; }
.ember:nth-child(8) { left: 45px; animation-delay: 1.0s; }

.preloader-brand {
    text-align: center;
    position: relative;
    z-index: 10;
}

.preloader-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 8px;
    color: var(--white);
    text-shadow: 0 0 30px rgba(248,122,7,0.5), 0 0 60px rgba(248,122,7,0.2);
    animation: preloaderTextGlow 2s ease-in-out infinite alternate;
}

.preloader-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 12px;
    color: var(--orange);
    margin-top: 6px;
    opacity: 0.9;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 30px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #FFD700);
    border-radius: 3px;
    animation: preloaderBarFill 2s ease-in-out forwards;
}

@keyframes fireFlame1 {
    0% { height: 90px; opacity: 1; }
    100% { height: 110px; opacity: 0.9; }
}

@keyframes fireFlame2 {
    0% { height: 70px; opacity: 0.9; transform: rotate(-5deg); }
    100% { height: 85px; opacity: 0.8; transform: rotate(2deg); }
}

@keyframes fireFlame3 {
    0% { height: 75px; opacity: 0.9; transform: rotate(5deg); }
    100% { height: 90px; opacity: 0.8; transform: rotate(-2deg); }
}

@keyframes fireFlame4 {
    0% { height: 55px; opacity: 0.8; }
    100% { height: 65px; opacity: 1; }
}

@keyframes fireFlame5 {
    0% { height: 50px; opacity: 0.8; }
    100% { height: 60px; opacity: 1; }
}

@keyframes fireGlow {
    0% { opacity: 0.5; width: 130px; }
    100% { opacity: 0.8; width: 150px; }
}

@keyframes emberRise {
    0% { bottom: 0; opacity: 1; transform: translateX(0); }
    50% { opacity: 0.8; }
    100% { bottom: 120px; opacity: 0; transform: translateX(15px); }
}

@keyframes preloaderTextGlow {
    0% { text-shadow: 0 0 20px rgba(248,122,7,0.3), 0 0 40px rgba(248,122,7,0.1); }
    100% { text-shadow: 0 0 40px rgba(248,122,7,0.6), 0 0 80px rgba(248,122,7,0.3); }
}

@keyframes preloaderBarFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-dark);
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
}

.top-bar-item i {
    color: var(--orange);
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-social {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 50%;
    color: #ccc;
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar-social:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ===== Header ===== */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 9000;
    transition: all var(--transition);
    box-shadow: none;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

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



.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--black);
}

.logo-text span {
    color: var(--orange);
}

/* ===== Navigation ===== */
.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link.active {
    color: var(--orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header-cta {
    margin-left: 20px;
}

/* ===== Dropdown Menu ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > .nav-link .dropdown-arrow {
    font-size: 0.65rem;
    transition: transform var(--transition);
}

.nav-dropdown:hover > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop only — mobile uses checkbox CSS toggle */
@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 280px;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 9999;
        padding: 8px 0;
    }
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--orange);
    border-left-color: var(--orange);
    padding-left: 24px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--orange);
    font-size: 0.85rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 0;
}

.dropdown-item-all {
    font-weight: 700;
    color: var(--orange);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===== Mobile Toggle ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    padding: 5px 0;
    z-index: 9999;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    background: var(--black);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.65) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 750px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(248,122,7,0.3);
    border-radius: 2px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--orange);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange);
    animation: scrollDown 2s ease infinite;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.hero-nav-dot.active {
    background: var(--orange);
    border-color: var(--orange);
}

/* ===== Page Header (Inner Pages) ===== */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 25px 25px;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb,
.breadcrumb a,
.breadcrumb a:visited {
    color: #ffffff !important;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange) !important;
}

.breadcrumb span {
    color: var(--orange) !important;
    font-weight: 600;
}

.breadcrumb i {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.7rem;
}

/* ===== About Preview ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--orange);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--orange);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-text .section-tag {
    text-align: left;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.about-feature-item i {
    color: var(--orange);
    font-size: 1rem;
}

/* ===== Services / Offerings Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height var(--transition-slow);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 122, 7, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--orange);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--orange);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Why Choose Us ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width var(--transition);
}

.why-card:hover::after {
    width: 60px;
}

.why-card:hover {
    background: var(--bg-light);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(248, 122, 7, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    margin-bottom: 12px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(248,122,7,0.05) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 40px;
    height: 2px;
    background: rgba(248,122,7,0.3);
    margin: 12px auto 0;
}

/* ===== Industries ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.industry-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 0.95rem;
}

/* ===== Gallery Preview ===== */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-preview-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-preview-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-preview-item:hover::after {
    opacity: 1;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--black);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248,122,7,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: #999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-slow);
    background: var(--white);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5));
}

.product-body {
    padding: 28px;
}

.product-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.product-body p {
    font-size: 0.93rem;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-features li i {
    color: var(--orange);
    font-size: 0.8rem;
}

/* ===== Gallery Full Page ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 16px;
}

.gallery-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

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

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transform: scale(0.5);
    transition: transform var(--transition);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover, .lightbox-next:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    margin-bottom: 6px;
}

.contact-info-card p {
    margin-bottom: 4px;
    font-size: 0.93rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(248,122,7,0.1);
    background: var(--white);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* ===== Vision / Mission / Values ===== */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmv-card {
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.vmv-card:hover::before {
    transform: scaleX(1);
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 122, 7, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.vmv-icon i {
    font-size: 1.5rem;
    color: var(--orange);
}

.vmv-card h3 {
    margin-bottom: 16px;
}

.vmv-card ul {
    text-align: left;
    padding-left: 0;
}

.vmv-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.vmv-card ul li i {
    color: var(--orange);
    font-size: 0.8rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #FA9A3F, var(--orange));
    background-size: 200% 100%;
    animation: footerGradient 4s ease infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(248,122,7,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about p {
    color: rgba(255,255,255,0.85);
    font-size: 0.93rem;
    margin-top: 20px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 16px;
    transition: transform 0.5s ease;
}

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

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-social-link:hover {
    border-color: var(--orange);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.footer h4:hover {
    text-shadow: 0 0 12px rgba(248,122,7,0.4);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange);
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.93rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(248,122,7,0.3);
}

.footer-links a i {
    color: var(--orange);
    font-size: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--orange);
    margin-top: 4px;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.85);
    font-size: 0.93rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* ===== WhatsApp Chat Widget ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9500;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #F87A07;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(248,122,7,0.3);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(248,122,7,0.4);
}

.whatsapp-btn .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #F87A07;
    animation: waPulse 2s infinite;
    pointer-events: none;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 370px;
    background: var(--black);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(248,122,7,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    border: 1px solid rgba(248,122,7,0.25);
}

.whatsapp-chat.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
    background: #F87A07;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.wa-avatar {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
}

.wa-header-info h4 {
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.wa-header-info p {
    color: rgba(0,0,0,0.6);
    font-size: 0.78rem;
    margin: 0;
}

.wa-close {
    margin-left: auto;
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    background: none;
    border: none;
}

.wa-close:hover {
    opacity: 1;
}

.whatsapp-chat-body {
    padding: 22px;
    background: #111;
    min-height: 100px;
}

.wa-message {
    background: #1a1a1a;
    padding: 14px 18px;
    border-radius: 2px 12px 12px 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 12px;
    max-width: 90%;
    border-left: 3px solid #F87A07;
}

.wa-message-time {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-align: right;
    margin-top: 6px;
}

.whatsapp-chat-options {
    padding: 18px 22px;
    background: var(--black);
    border-top: 1px solid rgba(248,122,7,0.2);
}

.whatsapp-chat-options p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.wa-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid rgba(248,122,7,0.3);
    border-radius: 8px;
    font-size: 0.88rem;
    color: #F87A07;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    background: rgba(248,122,7,0.06);
}

.wa-option:hover {
    background: rgba(248,122,7,0.15);
    border-color: #F87A07;
    color: #fff;
}

.wa-option:last-child {
    margin-bottom: 0;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 36px;
    width: 44px;
    height: 44px;
    background: var(--black);
    border: 1px solid #333;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* ===== Map ===== */
.map-section {
    height: 400px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 16px;
}

/* ===== Animations / Keyframes ===== */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes footerPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== Hidden Mobile Utility ===== */
.hidden-mobile { display: inline-flex; }

/* ===== Separator ===== */
.section-separator {
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

/* ===== About Page Specific ===== */
.about-full-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-full-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-full-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== Industry Cards Dark ===== */
.industries-dark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-dark-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
}

.industry-dark-card:hover {
    border-color: var(--orange);
    background: rgba(248,122,7,0.05);
    transform: translateY(-5px);
}

.industry-dark-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 16px;
}

.industry-dark-card h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.industry-dark-card p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Our Products Section (Home) ===== */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.home-product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FA9A3F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.home-product-card:hover::before {
    transform: scaleX(1);
}

.home-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(248,122,7,0.2);
}

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

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

.home-product-card:hover .home-product-card-img img {
    transform: scale(1.08);
}

.home-product-card-img .product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-product-card:hover .product-card-overlay {
    opacity: 1;
}

.home-product-card-body {
    padding: 20px;
}

.home-product-card-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.home-product-card:hover .home-product-card-body h3 {
    color: var(--orange);
}

.home-product-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-card-body .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-product-card-body .btn-link:hover {
    gap: 10px;
}

.home-product-card-body .btn-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.home-product-card-body .btn-link:hover i {
    transform: translateX(3px);
}

/* ===== SEO Content Section (Home) ===== */
.seo-content-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.seo-content-text h2 {
    margin-bottom: 20px;
}

.seo-content-text h2 .text-accent {
    color: var(--orange);
}

.seo-content-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content-text .seo-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.seo-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.seo-highlight-item i {
    color: var(--orange);
    font-size: 0.85rem;
}

.seo-content-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.seo-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.seo-content-image .seo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-family: var(--font-heading);
}

.seo-badge .seo-badge-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.seo-badge .seo-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Dashboard Page ===== */
.dashboard-section {
    padding: 80px 0;
}

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

.dashboard-stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #FA9A3F);
}

.dashboard-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dashboard-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(248,122,7,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--orange);
}

.dashboard-stat-card .stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dashboard-stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.dashboard-log-section {
    margin-top: 40px;
}

.dashboard-log-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.dashboard-log-card h3 {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-log-card h3 i {
    color: var(--orange);
}

.dashboard-log-list {
    max-height: 400px;
    overflow-y: auto;
}

.dashboard-log-item {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.dashboard-log-item:hover {
    background: var(--bg-light);
}

.dashboard-log-item:last-child {
    border-bottom: none;
}

.dashboard-log-item .log-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dashboard-log-item .log-icon.log-btn {
    background: rgba(248,122,7,0.1);
    color: var(--orange);
}

.dashboard-log-item .log-icon.log-wa {
    background: rgba(248,122,7,0.08);
    color: var(--orange-hover);
}

.dashboard-log-item .log-icon.log-form {
    background: rgba(0,0,0,0.06);
    color: var(--text-muted);
}

.dashboard-log-item .log-text {
    flex: 1;
    color: var(--text-muted);
}

.dashboard-log-item .log-time {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
}

.dashboard-empty {
    padding: 40px 24px;
    text-align: center;
    color: var(--text-light);
}

.dashboard-empty i {
    font-size: 2.5rem;
    color: var(--border-color);
    margin-bottom: 12px;
    display: block;
}

.dashboard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 30px;
}

/* ===== Product Detail Page ===== */
.product-detail-hero {
    position: relative;
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.product-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 100%);
}

.product-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 25px 25px;
}

.product-detail-hero .page-header-content {
    position: relative;
    z-index: 2;
}

.product-detail-hero h1 {
    color: #ffffff !important;
}

.product-detail-hero p {
    color: rgba(255,255,255,0.8) !important;
}

.product-detail-section {
    padding: 80px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: zoom-in;
}

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

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

.product-thumb {
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all var(--transition);
    opacity: 0.6;
}

.product-thumb.active {
    border-color: var(--orange);
    opacity: 1;
}

.product-thumb:hover {
    opacity: 1;
    border-color: var(--orange);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding-top: 10px;
}

.product-detail-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(248,122,7,0.3);
    border-radius: 2px;
    background: rgba(248,122,7,0.05);
}

.product-detail-info h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.product-detail-info > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-detail-divider {
    width: 60px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 30px 0;
}

.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.product-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--orange);
    transition: var(--transition);
}

.product-highlight-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.product-highlight-item i {
    color: var(--orange);
    font-size: 1rem;
    min-width: 18px;
}

.product-highlight-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.product-detail-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-content-section {
    padding: 80px 0;
}

.product-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-content-text h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.product-content-text h3 {
    margin-top: 30px;
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.product-content-text p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.product-content-text ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.product-content-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-content-text ul li i {
    color: var(--orange);
    font-size: 0.8rem;
    margin-top: 5px;
    min-width: 14px;
}

.product-specs-sidebar {
    position: sticky;
    top: 100px;
}

.specs-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 24px;
}

.specs-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.related-products-section {
    padding: 80px 0;
}

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

/* ===== Enhanced Animation Utilities ===== */
.animate-float {
    animation: footerFloat 3s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: footerPulse 2s ease-in-out infinite;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ===== Legal Pages ===== */
.legal-page-section {
    padding: 80px 0;
}

.legal-content {
    padding: 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.legal-container ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-container ul li i {
    color: var(--orange);
    font-size: 0.75rem;
    margin-top: 6px;
    min-width: 14px;
}

.legal-updated {
    display: inline-block;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 30px;
    border-left: 3px solid var(--orange);
}

.legal-contact-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 40px;
}

.legal-contact-box h3 {
    margin-top: 0;
}

.legal-contact-box p {
    margin-bottom: 8px;
}

/* ===== SEO Keyword Link Styles ===== */
.seo-keyword-link {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: inline;
    cursor: pointer;
    transition: all var(--transition);
}

.seo-keyword-link:hover .text-accent {
    text-shadow: 0 0 20px rgba(248,122,7,0.4);
}

.seo-keyword-link .text-accent {
    position: relative;
    transition: all var(--transition);
}

.seo-keyword-link .text-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.4s ease;
}

.seo-keyword-link:hover .text-accent::after {
    width: 100%;
}

.seo-keyword-highlight {
    position: relative;
    overflow: hidden;
}

.seo-keyword-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    animation: seoKeywordShimmer 3s ease infinite;
}

@keyframes seoKeywordShimmer {
    0%, 100% { opacity: 0.5; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

/* ===== Our Advantages Section ===== */
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(248,122,7,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(248,122,7,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.advantages-section .section-header {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.advantages-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.advantages-section .section-tag {
    color: var(--orange);
    border-color: rgba(248,122,7,0.3);
}

.advantages-section .section-line {
    background: var(--orange);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248,122,7,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248,122,7,0.3);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(248,122,7,0.1), 0 0 30px rgba(248,122,7,0.05);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    background: rgba(248,122,7,0.08);
    border: 1px solid rgba(248,122,7,0.15);
    position: relative;
    transition: all 0.5s ease;
}

.advantage-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(248,122,7,0.1);
    animation: advantageIconPulse 3s ease-in-out infinite;
}

.advantage-card:hover .advantage-icon {
    background: rgba(248,122,7,0.15);
    border-color: rgba(248,122,7,0.3);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(248,122,7,0.2);
}

.advantage-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.advantage-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.advantage-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    transition: color 0.5s ease;
}

.advantage-card:hover .advantage-number {
    color: rgba(248,122,7,0.08);
}

@keyframes advantageIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0; }
}

/* Advantage center stat */
.advantages-stat-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.advantages-stat {
    text-align: center;
    position: relative;
}

.advantages-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.advantages-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.advantages-stat::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.advantages-stat:last-child::after {
    display: none;
}

/* ===== Footer Powered By ===== */
.footer-powered {
    text-align: center;
    padding-top: 20px;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-powered p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}

.footer-powered a {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.footer-powered a:hover {
    color: var(--orange);
}

.footer-powered a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.footer-powered a:hover::after {
    width: 100%;
}

/* ===== Advanced Reveal Effects ===== */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(800px) rotateY(15deg);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal-rotate.revealed {
    opacity: 1;
    transform: perspective(800px) rotateY(0);
}

/* ===== Shimmer Effect ===== */
.shimmer-text {
    background: linear-gradient(90deg, var(--white) 0%, var(--orange) 50%, var(--white) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease infinite;
}

@keyframes shimmerText {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== Magnetic Hover for Cards ===== */
.service-card,
.why-card,
.industry-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.industry-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* ===== Section Divider Decorations ===== */
.section-padding {
    position: relative;
}

/* ===== Enhanced Button Shine Effect ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.1) 50%,
        transparent 100%
    );
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: rotate(30deg) translateX(100%);
}

/* ===== Parallax Float for Badges ===== */
.about-experience-badge,
.seo-badge {
    animation: premiumFloat 6s ease-in-out infinite;
}

@keyframes premiumFloat {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(4px) rotate(-1deg); }
}

/* ===== Smooth Scroll Snap Sections ===== */
.hero-content {
    animation: heroContentReveal 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes heroContentReveal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===== Glow Border for CTA Section ===== */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248,122,7,0.3), transparent);
}

/* ===== Typed cursor for hero tag ===== */
.hero-tag {
    position: relative;
    overflow: hidden;
}

.hero-tag::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: var(--orange);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== Gradient text for section headers ===== */
.text-gradient-fire {
    background: linear-gradient(135deg, #F87A07, #FF4500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Enhanced Gallery Card Hover ===== */
.gallery-preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-md);
    pointer-events: none;
}

.gallery-preview-item:hover::after {
    opacity: 1;
}

/* =============================================
   ALIGNMENT & PROFESSIONAL POLISH FIXES
   ============================================= */

/* --- Body & Global Text --- */
p {
    text-align: left;
    hyphens: auto;
}

/* Centered paragraphs only inside section headers, hero, CTAs */
.section-header p,
.cta-content p,
.cta-section p,
.hero p,
.hero-desc,
.page-header p,
.product-detail-hero p,
.footer-about p,
.preloader p,
.text-center p,
p.text-center {
    text-align: center;
}

/* Headings and UI elements — stay left/center (never justify) */
h1, h2, h3, h4, h5, h6,
.section-tag,
.hero-tag,
.hero-title,
.hero-desc,
.breadcrumb,
.btn,
.nav-link,
.dropdown-item,
.footer-links a,
.footer-contact-item p,
.stat-label,
.product-features li,
.about-feature-item,
.seo-highlight-item,
.vmv-card ul li,
label,
.top-bar-item,
.contact-info-card p,
.contact-info-card h4 {
    text-align: center;
}

/* Center-aligned elements must remain centered */
.text-center,
.section-header,
.section-header h2,
.section-header p,
.section-header .section-tag,
.why-card,
.stat-item,
.stat-number,
.stat-label,
.industry-card,
.industry-dark-card,
.vmv-card,
.vmv-icon,
.cta-section,
.cta-content,
.cta-section p,
.footer-bottom,
.footer-bottom p,
.preloader,
.preloader-brand,
.service-icon,
.advantages-stat,
.advantage-icon,
.dashboard-stat-card,
.section-line {
    text-align: center;
}

/* --- Container: consistent horizontal padding --- */
.container {
    padding-left: 24px;
    padding-right: 24px;
}

/* --- Section spacing consistency --- */
.section-padding {
    padding: 100px 0;
}

/* --- Hero: ensure text left-aligns cleanly --- */
.hero-desc {
    text-align: left;
    line-height: 1.85;
}

.hero-tag,
.hero-title,
.hero-btns {
    text-align: left;
}

/* --- About text block --- */
.about-text p,
.seo-content-text p,
.product-content-text p {
    text-align: justify;
    line-height: 1.85;
}

.about-text h2,
.about-text .section-tag {
    text-align: left;
}

/* --- Product body text --- */
.product-body p {
    text-align: justify;
    line-height: 1.75;
}

/* --- Product detail content --- */
.product-content-text h2,
.product-content-text h3,
.product-content-text ul {
    text-align: left;
}

.product-content-text ul li {
    text-align: left;
    line-height: 1.7;
}

.product-detail-info p {
    text-align: justify;
    line-height: 1.8;
}

.product-detail-info h1 {
    text-align: left;
}

/* --- Service cards --- */
.service-card p {
    text-align: justify;
}

.service-card h3 {
    text-align: left;
}

/* --- Why cards --- */
.why-card p {
    text-align: center;
}

/* --- Gallery grid: uniform card heights --- */
.gallery-card {
    height: 280px;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 16px;
    align-items: start;
}

/* --- Products grid: consistent card heights --- */
.products-grid {
    align-items: start;
}

.product-img-wrapper {
    height: 240px;
}

/* --- Home products grid: even card heights --- */
.home-products-grid {
    align-items: stretch;
}

.home-product-card {
    display: flex;
    flex-direction: column;
}

.home-product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-product-card-body p {
    text-align: left;
    flex: 1;
}

.home-product-card-body .btn-link {
    margin-top: auto;
}

/* --- Contact form: proper label alignment --- */
.form-group label {
    text-align: left;
    display: block;
}

.contact-form-wrapper h3,
.contact-form-wrapper p {
    text-align: left;
}

.contact-form-wrapper p {
    text-align: justify;
}

/* --- Footer: clean column alignment --- */
.footer-about p {
    text-align: justify;
}

.footer h4,
.footer-links a,
.footer-contact-item p {
    text-align: left;
}

.footer-bottom {
    text-align: left;
}

.footer-bottom p {
    text-align: left;
}

/* --- VMV cards: consistent height --- */
.vmv-grid {
    align-items: stretch;
}

.vmv-card {
    display: flex;
    flex-direction: column;
}

.vmv-card ul {
    text-align: left;
    flex: 1;
}

/* --- Industry cards: consistent alignment --- */
.industry-card p,
.industry-dark-card p {
    text-align: center;
}

/* --- CTA section: keep centered --- */
.cta-section p {
    text-align: center;
}

/* --- Stats: always center --- */
.stat-label,
.stat-number {
    text-align: center;
}

/* --- Page header (inner pages) --- */
.page-header h1,
.page-header p,
.page-header-content .breadcrumb {
    text-align: left;
}

.page-header p {
    text-align: left;
}

/* --- Section header subtitle justified when long --- */
.section-header p {
    text-align: center;
}

/* --- Breadcrumb: horizontal alignment --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* --- Map section: full width embed --- */
.map-section {
    height: 420px;
    overflow: hidden;
    padding: 0;
    display: block;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* --- Specs card alignment --- */
.specs-card {
    text-align: left;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.spec-label {
    text-align: left;
    white-space: nowrap;
}

.spec-value {
    text-align: right;
    flex: 1;
}

/* --- Advantage cards: consistent alignment --- */
.advantage-card {
    text-align: center;
}

.advantage-card p {
    text-align: center;
}

/* --- Legal pages --- */
.legal-container p {
    text-align: justify;
    line-height: 1.85;
}

.legal-container h2,
.legal-container h3 {
    text-align: left;
}

/* --- Related products grid: even heights --- */
.related-products-grid {
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body p {
    flex: 1;
}

.product-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* --- Gallery preview grid on home: equal height cells --- */
.gallery-preview-grid {
    align-items: stretch;
}

/* --- Responsive alignment fixes --- */
@media (max-width: 768px) {
    p {
        text-align: left;
    }

    .about-text p,
    .seo-content-text p,
    .product-content-text p,
    .product-detail-info p,
    .service-card p,
    .footer-about p,
    .product-body p,
    .contact-form-wrapper p,
    .legal-container p {
        text-align: left;
    }

    .spec-row {
        flex-direction: column;
        gap: 4px;
    }

    .spec-value {
        text-align: left;
    }

    .home-product-card-body p {
        text-align: left;
        -webkit-line-clamp: unset;
    }
}

/* ══════════════════════════════════════════════════════════
   PROFESSIONAL REDESIGN — PRODUCT LAYOUT + 3D ANIMATIONS
   ══════════════════════════════════════════════════════════ */

/* ── Product detail: strict left-image / right-content ── */
.product-detail-layout {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 56px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 110px;
}

.product-gallery-main {
    width: 100%;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    background: #f8f8f8;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.product-gallery-main:hover {
    box-shadow: 0 28px 70px rgba(248,122,7,0.13), 0 4px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px) perspective(800px) rotateY(-1deg);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    padding: 16px;
    background: #f8f8f8;
}

/* For gallery images that should fill (not contain) */
.product-gallery-main img[data-fill="true"] {
    object-fit: cover;
    padding: 0;
}

.product-gallery-main:hover img {
    transform: scale(1.04);
}

.product-detail-info {
    padding-top: 0;
}

.product-detail-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid rgba(248,122,7,0.35);
    border-radius: 3px;
    background: rgba(248,122,7,0.06);
}

.product-detail-info h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.18;
    color: var(--black);
}

.product-detail-info > p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 22px;
    color: var(--text-muted);
}

.product-detail-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FA9A3F);
    border-radius: 2px;
    margin: 24px 0;
}

.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.product-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--orange);
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

.product-highlight-item:hover {
    transform: translateX(4px) translateY(-1px);
    box-shadow: 0 6px 20px rgba(248,122,7,0.12);
    background: white;
    border-left-color: var(--orange);
}

.product-highlight-item i {
    color: var(--orange);
    font-size: 0.95rem;
    margin-top: 2px;
    min-width: 16px;
}

.product-highlight-item span {
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.45;
}

.product-detail-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

/* ── Product content below: left text / right specs ── */
.product-content-section {
    padding: 72px 0;
    background: var(--bg-light);
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 56px;
    align-items: start;
}

.product-content-text h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin-bottom: 18px;
    color: var(--black);
}

.product-content-text h3 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--black);
    position: relative;
    padding-left: 14px;
}

.product-content-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--orange);
    border-radius: 2px;
}

.product-content-text p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.product-content-text ul {
    margin-bottom: 18px;
    padding-left: 0;
    list-style: none;
}

.product-content-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.93rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.product-content-text ul li:last-child { border-bottom: none; }

.product-content-text ul li i {
    color: var(--orange);
    font-size: 0.78rem;
    margin-top: 5px;
    min-width: 14px;
}

/* ── Specs sidebar ── */
.product-specs-sidebar {
    position: sticky;
    top: 110px;
}

.specs-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.specs-card:hover {
    box-shadow: 0 12px 40px rgba(248,122,7,0.10);
    transform: translateY(-3px);
}

.specs-card h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    color: var(--black);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.88rem;
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.specs-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid #f0f0f0;
}

.specs-card ul li:last-child { border-bottom: none; }

.specs-card ul li i {
    color: var(--orange);
    font-size: 0.8rem;
    min-width: 14px;
}

/* ── About preview: left image / right content ── */
.about-preview {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}

.about-img-wrapper:hover {
    transform: perspective(1000px) rotateY(2deg) rotateX(-1deg) translateY(-6px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.16), 0 0 0 1px rgba(248,122,7,0.12);
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

/* ══════════════════════════════════════════════════════════
   3D ANIMATION SYSTEM — Site-wide
   ══════════════════════════════════════════════════════════ */

/* Cards: 3D lift on hover */
.product-card,
.service-card,
.why-card,
.vmv-card,
.industry-card,
.home-product-card,
.contact-info-card {
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.product-card:hover {
    transform: translateY(-8px) perspective(600px) rotateX(1.5deg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.13), 0 0 0 1px rgba(248,122,7,0.08);
}

.service-card:hover {
    transform: translateY(-8px) perspective(600px) rotateX(1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.home-product-card:hover {
    transform: translateY(-10px) perspective(600px) rotateX(1.5deg);
    box-shadow: 0 28px 64px rgba(0,0,0,0.14), 0 0 0 1px rgba(248,122,7,0.10);
}

.vmv-card:hover {
    transform: translateY(-6px) perspective(600px) rotateX(1deg);
    box-shadow: 0 16px 44px rgba(0,0,0,0.10);
}

.industry-card:hover {
    transform: translateY(-6px) perspective(600px) rotateY(2deg);
    box-shadow: 0 14px 40px rgba(248,122,7,0.13);
    border-color: var(--orange);
}

/* Stats section: number pop-up */
.stat-item {
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.04);
}

/* Buttons: 3D press */
.btn {
    transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(248,122,7,0.35);
}

.btn-outline-dark:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* Reveal animations: refined 3D entrance */
.reveal {
    opacity: 0;
    transform: translateY(32px) perspective(600px) rotateX(4deg);
    transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) perspective(600px) rotateX(0deg);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px) perspective(600px) rotateY(6deg);
    transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0) perspective(600px) rotateY(0deg);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px) perspective(600px) rotateY(-6deg);
    transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0) perspective(600px) rotateY(0deg);
}

/* Page header 3D depth */
.page-header,
.product-detail-hero {
    perspective: 1200px;
}

/* Section header animated underline */
.section-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FA9A3F);
    margin: 0 auto 20px;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.section-header.revealed .section-line {
    width: 60px;
}

/* Gallery cards: 3D flip-lift */
.gallery-card {
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.5s ease;
    will-change: transform;
}

.gallery-card:hover {
    transform: translateY(-8px) perspective(600px) rotateX(2deg) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* Footer social: 3D spin */
.footer-social-link {
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                border-color 0.3s ease, color 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-4px) rotateY(15deg) scale(1.12);
}

/* WhatsApp button: breathing 3D pulse */
.whatsapp-btn {
    animation: wa3dPulse 3s ease-in-out infinite;
}

@keyframes wa3dPulse {
    0%, 100% { transform: scale(1) rotateZ(0deg); box-shadow: 0 4px 20px rgba(248,122,7,0.30); }
    50% { transform: scale(1.06) rotateZ(2deg); box-shadow: 0 8px 32px rgba(248,122,7,0.45); }
}

/* Advantage cards: 3D tilt */
.advantage-card {
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.45s ease;
    will-change: transform;
}

.advantage-card:hover {
    transform: translateY(-10px) perspective(600px) rotateX(2deg) rotateY(-1deg);
    box-shadow: 0 24px 56px rgba(248,122,7,0.14), 0 0 0 1px rgba(248,122,7,0.12);
}

/* Industry dark cards */
.industry-dark-card {
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                border-color 0.3s ease, background 0.3s ease;
}

.industry-dark-card:hover {
    transform: translateY(-7px) perspective(600px) rotateX(1.5deg);
    border-color: var(--orange);
    background: rgba(248,122,7,0.07);
    box-shadow: 0 18px 44px rgba(248,122,7,0.14);
}

/* Nav dropdown: 3D slide-in */
/* Desktop only — 3D dropdown animation */
@media (min-width: 992px) {
    .dropdown-menu {
        transform-origin: top center;
        transition: opacity 0.3s ease,
                    visibility 0.3s ease,
                    transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
        transform: translateX(-50%) translateY(10px) perspective(400px) rotateX(-8deg);
    }
    .nav-dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0) perspective(400px) rotateX(0deg);
    }
}

/* Logo: subtle 3D bob */
.logo img {
    transition: transform 0.4s ease;
}

.logo img:hover {
    transform: perspective(400px) rotateY(6deg) scale(1.04);
}

/* Stagger delays for grid children */
.products-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.10s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.15s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.20s; }
.products-grid .product-card:nth-child(5) { transition-delay: 0.05s; }
.products-grid .product-card:nth-child(6) { transition-delay: 0.10s; }

/* ── Responsive: disable perspective on mobile ── */
@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }

    .product-gallery-main {
        height: 300px;
    }

    .product-gallery-main img {
        padding: 10px;
    }

    .product-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-specs-sidebar {
        position: static;
    }

    .about-preview {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-img-wrapper img {
        height: 300px;
    }

    .about-img-wrapper:hover,
    .product-gallery-main:hover,
    .product-card:hover,
    .home-product-card:hover,
    .service-card:hover {
        transform: translateY(-4px);
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-gallery-main {
        height: 240px;
    }

    .product-highlight-item span {
        font-size: 0.83rem;
    }
}

/* ── Product card images: consistent, professional fit ── */
.product-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* PNG product images: contain with padding so product shows fully */
.product-img-wrapper img[src*=".png"] {
    object-fit: contain;
    padding: 16px;
    background: #f5f5f5;
}

/* JPG gallery images: cover for full visual impact */
.product-img-wrapper img[src*=".jpg"] {
    object-fit: cover;
    padding: 0;
    background: transparent;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

/* Gallery-main on product detail pages */
.product-gallery-main {
    height: 440px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img[src*=".png"] {
    object-fit: contain;
    padding: 24px;
    background: #f5f5f5;
}

.product-gallery-main img[src*=".jpg"] {
    object-fit: cover;
    padding: 0;
}


/* ═══════════════════════════════════════════════════
   BREADCRUMB — Background image display fix
   ═══════════════════════════════════════════════════ */
.page-header,
.product-detail-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for text readability */
.page-header::before,
.product-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.58) 55%, rgba(0,0,0,0.70) 100%);
    z-index: 1;
}

/* Orange accent bar at bottom */
.page-header::after,
.product-detail-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    z-index: 2;
}

/* All content above overlay */
.page-header .container,
.product-detail-hero .container,
.page-header-content {
    position: relative;
    z-index: 3;
}

.page-header h1,
.product-detail-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.75);
}
.page-header p,
.product-detail-hero p {
    color: rgba(255,255,255,0.82) !important;
}
.page-header .breadcrumb a,
.product-detail-hero .breadcrumb a { color: rgba(255,255,255,0.75) !important; }
.page-header .breadcrumb a:hover,
.product-detail-hero .breadcrumb a:hover { color: var(--orange) !important; }
.page-header .breadcrumb span,
.product-detail-hero .breadcrumb span { color: var(--orange) !important; }

/* Top bar location hover */
.top-bar-item a { cursor: pointer; }
.top-bar-item a:hover span,
.top-bar-item a:hover i { color: var(--orange) !important; }

/* UAE city cards hover */
a.uae-item:hover,
.uae-item:hover {
    border-color: var(--orange) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(248,122,7,0.15);
}
