/* ============================================
   RECONNECT PHARMA - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-orange: #F47920;
    --primary-dark: #2D2D2D;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(244, 121, 32, 0.1);
    border-color: var(--primary-orange);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.products-track .product-card.reveal-scale,
.products-carousel .product-card.reveal-scale {
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
}

.reveal-rotate {
    opacity: 0;
    transform: rotate(-10deg) translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: rotate(0) translateY(0);
}

.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; }

/* ============================================
   SCROLL ENTRY ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-on-scroll[data-animation="fade-up"] { transform: translateY(80px); }
.animate-on-scroll[data-animation="fade-up"].animated { transform: translateY(0); }
.animate-on-scroll[data-animation="fade-down"] { transform: translateY(-80px); }
.animate-on-scroll[data-animation="fade-down"].animated { transform: translateY(0); }
.animate-on-scroll[data-animation="fade-left"] { transform: translateX(80px); }
.animate-on-scroll[data-animation="fade-left"].animated { transform: translateX(0); }
.animate-on-scroll[data-animation="fade-right"] { transform: translateX(-80px); }
.animate-on-scroll[data-animation="fade-right"].animated { transform: translateX(0); }
.animate-on-scroll[data-animation="zoom-in"] { transform: scale(0.7); }
.animate-on-scroll[data-animation="zoom-in"].animated { transform: scale(1); }
.animate-on-scroll[data-animation="zoom-out"] { transform: scale(1.3); }
.animate-on-scroll[data-animation="zoom-out"].animated { transform: scale(1); }
.animate-on-scroll[data-animation="flip-up"] { transform: perspective(1000px) rotateX(45deg); transform-origin: bottom; }
.animate-on-scroll[data-animation="flip-up"].animated { transform: perspective(1000px) rotateX(0); }
.animate-on-scroll[data-animation="slide-up"] { transform: translateY(120px); }
.animate-on-scroll[data-animation="slide-up"].animated { transform: translateY(0); }
.animate-on-scroll[data-animation="rotate-in"] { transform: rotate(-15deg) scale(0.8); }
.animate-on-scroll[data-animation="rotate-in"].animated { transform: rotate(0) scale(1); }
.animate-on-scroll[data-animation="blur-in"] { filter: blur(15px); transform: scale(1.1); }
.animate-on-scroll[data-animation="blur-in"].animated { filter: blur(0); transform: scale(1); }
.animate-on-scroll[data-animation="slide-rotate"] { transform: translateY(60px) rotate(5deg); }
.animate-on-scroll[data-animation="slide-rotate"].animated { transform: translateY(0) rotate(0); }

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.5); }
    70% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
.animate-on-scroll[data-animation="pop-in"] { transform: scale(0.5); }
.animate-on-scroll[data-animation="pop-in"].animated { animation: popIn 0.6s cubic-bezier(0.26, 0.53, 0.74, 1.48) forwards; }

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(50px); }
    50% { transform: scale(1.05) translateY(-10px); }
    70% { transform: scale(0.95) translateY(5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.animate-on-scroll[data-animation="bounce-in"].animated { animation: bounceIn 0.8s ease forwards; }

@keyframes swingIn {
    0% { opacity: 0; transform: perspective(500px) rotateY(-70deg); }
    100% { opacity: 1; transform: perspective(500px) rotateY(0); }
}
.animate-on-scroll[data-animation="swing-in"].animated { animation: swingIn 0.8s ease-out forwards; }

@keyframes elastic {
    0% { opacity: 0; transform: scale(0); }
    55% { transform: scale(1.1); }
    70% { transform: scale(0.95); }
    85% { transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
.animate-on-scroll[data-animation="elastic"].animated { animation: elastic 1s ease-out forwards; }

/* ============================================
   TEXT ANIMATIONS
   ============================================ */
.text-reveal { overflow: hidden; }
.text-reveal span { display: inline-block; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.5, 0, 0, 1); }
.text-reveal.active span { transform: translateY(0); }

.typing-text { border-right: 3px solid var(--primary-orange); white-space: nowrap; overflow: hidden; animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink-caret { from, to { border-color: transparent; } 50% { border-color: var(--primary-orange); } }

.gradient-text { background: linear-gradient(90deg, var(--primary-orange), #ff9a44, var(--primary-orange)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientFlow 3s ease infinite; }
@keyframes gradientFlow { 0% { background-position: 0% center; } 50% { background-position: 100% center; } 100% { background-position: 0% center; } }

.letter-spacing-anim { transition: letter-spacing 0.4s ease; }
.letter-spacing-anim:hover { letter-spacing: 3px; }

/* ============================================
   FLOATING ANIMATIONS
   ============================================ */
.float-animation { animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.float-animation-slow { animation: floatSlow 6s ease-in-out infinite; }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
.pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ============================================
   EFFECTS
   ============================================ */
.magnetic-btn { position: relative; transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.parallax-container { overflow: hidden; position: relative; }
.parallax-element { transition: transform 0.1s ease-out; will-change: transform; }

.tilt-card { transform-style: preserve-3d; transition: transform 0.5s ease; }
.tilt-card:hover { transform: perspective(1000px) rotateX(5deg) rotateY(5deg); }
.tilt-card .tilt-content { transform: translateZ(30px); transition: transform 0.5s ease; }

.glow-on-hover { position: relative; transition: all 0.3s ease; }
.glow-on-hover::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary-orange); filter: blur(20px); opacity: 0; transition: opacity 0.3s ease; z-index: -1; border-radius: inherit; }
.glow-on-hover:hover::before { opacity: 0.4; }

.ripple { position: relative; overflow: hidden; }
.ripple::after { content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; background-image: radial-gradient(circle, var(--primary-orange) 10%, transparent 10.01%); background-repeat: no-repeat; background-position: 50%; transform: scale(10, 10); opacity: 0; transition: transform 0.5s, opacity 1s; }
.ripple:active::after { transform: scale(0, 0); opacity: 0.3; transition: 0s; }

.morph-shape { position: absolute; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; background: linear-gradient(135deg, rgba(244, 121, 32, 0.1) 0%, rgba(244, 121, 32, 0.05) 100%); animation: morph 8s ease-in-out infinite; z-index: -1; }
@keyframes morph { 0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } 50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; } 75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; } }

.shimmer { position: relative; overflow: hidden; }
.shimmer::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: shimmer 2s infinite; }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 100%; } }

.underline-animation { position: relative; display: inline-block; }
.underline-animation::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -2px; left: 0; background-color: var(--primary-orange); transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.underline-animation:hover::after { width: 100%; }
.underline-center::after { left: 50%; transform: translateX(-50%); }

.flip-card { perspective: 1000px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; }
.flip-card-back { transform: rotateY(180deg); }

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-dark); background-color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 30px; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background-color: var(--white); border-bottom: 1px solid #e8e8e8; transition: var(--transition-fast); }
.header.scrolled { box-shadow: var(--shadow-medium); border-bottom-color: transparent; }
.header-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 50px; width: auto; transition: var(--transition-fast); }
.logo:hover img { transform: scale(1.02); }

.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 10px 18px; font-size: 15px; font-weight: 500; color: var(--text-dark); transition: var(--transition-fast); position: relative; white-space: nowrap; }
.nav-link:hover { color: var(--primary-orange); }
.nav-link.active { color: var(--primary-orange); }
.nav-link i { font-size: 14px; transition: var(--transition-fast); }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background-color: var(--white); border-radius: 8px; box-shadow: var(--shadow-heavy); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(15px); transition: var(--transition-fast); z-index: 100; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(5px); }
.dropdown-item { display: block; padding: 10px 20px; font-size: 14px; font-weight: 400; color: var(--text-dark); transition: var(--transition-fast); position: relative; }
.dropdown-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background-color: var(--primary-orange); transition: var(--transition-fast); }
.dropdown-item:hover { color: var(--primary-orange); background-color: rgba(244, 121, 32, 0.05); padding-left: 25px; }
.dropdown-item:hover::before { height: 60%; }

.nav-cta { margin-left: 15px; }
.nav-contact-info { display: flex; align-items: center; gap: 20px; margin-left: 30px; }
.nav-contact-link { display: flex; align-items: center; gap: 8px; color: var(--text-dark); font-size: 14px; font-weight: 500; transition: var(--transition-fast); }
.nav-contact-link i { color: var(--primary-orange); font-size: 18px; }
.nav-contact-link:hover { color: var(--primary-orange); }
.nav-contact-link span { display: inline-block; }

.btn-contact { display: inline-flex; align-items: center; justify-content: center; padding: 12px 30px; background-color: var(--primary-orange); color: var(--white); font-size: 15px; font-weight: 600; border-radius: 50px; border: none; transition: var(--transition-fast); position: relative; overflow: hidden; white-space: nowrap; margin-left: 10px; }
.btn-contact::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: var(--transition-medium); }
.btn-contact:hover { background-color: #e06a15; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(244, 121, 32, 0.4); }
.btn-contact:hover::before { left: 100%; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.menu-toggle span { display: block; width: 25px; height: 2px; background-color: var(--text-dark); transition: var(--transition-fast); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO BANNER / SLIDER
   ============================================ */
.hero-section { position: relative; width: 100%; height: 92vh; min-height: 600px; margin-top: 85px; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%); z-index: 2; }

.hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 0 80px; color: var(--white); }
.hero-subtitle { font-size: 16px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease forwards; animation-delay: 0.3s; }
.hero-title { font-size: 60px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; max-width: 700px; opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease forwards; animation-delay: 0.5s; }
.hero-title span { color: var(--primary-orange); }
.hero-description { font-size: 18px; line-height: 1.7; max-width: 550px; margin-bottom: 35px; opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease forwards; animation-delay: 0.7s; }
.hero-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 35px; background-color: var(--primary-orange); color: var(--white); font-size: 16px; font-weight: 600; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition-fast); opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease forwards; animation-delay: 0.9s; width: fit-content; }
.hero-btn:hover { background-color: var(--white); color: var(--primary-orange); transform: translateX(5px); box-shadow: var(--shadow-heavy); }
.hero-btn i { transition: var(--transition-fast); }
.hero-btn:hover i { transform: translateX(5px); }

.slider-nav { position: absolute; bottom: 50px; right: 80px; display: flex; gap: 15px; z-index: 10; }
.slider-arrow { display: flex; align-items: center; justify-content: center; width: 55px; height: 55px; background-color: var(--primary-orange); border-radius: 5px; cursor: pointer; transition: var(--transition-fast); border: none; outline: none; }
.slider-arrow i { font-size: 24px; color: var(--white); transition: var(--transition-fast); line-height: 1; display: flex; align-items: center; justify-content: center; }
.slider-arrow:hover { background-color: var(--white); transform: scale(1.05); box-shadow: var(--shadow-medium); }
.slider-arrow:hover i { color: var(--primary-orange); }
.slider-arrow.prev-arrow:hover i { transform: translateX(-3px); }
.slider-arrow.next-arrow:hover i { transform: translateX(3px); }

.slider-dots { position: absolute; bottom: 50px; left: 80px; display: flex; gap: 12px; z-index: 10; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.4); cursor: pointer; transition: var(--transition-fast); border: none; }
.slider-dot.active, .slider-dot:hover { background-color: var(--primary-orange); transform: scale(1.2); }

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* Header/Hero Responsive */
@media screen and (max-width: 1200px) {
    .nav-link { padding: 10px 12px; font-size: 14px; }
    .nav-contact-info { gap: 15px; margin-left: 20px; }
    .nav-contact-link span { display: none; }
    .nav-contact-link i { font-size: 20px; }
    .btn-contact { padding: 10px 20px; font-size: 14px; }
    .hero-content { padding: 0 50px; }
    .slider-nav { right: 50px; }
    .slider-dots { left: 50px; }
}

@media screen and (max-width: 992px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background-color: var(--white); flex-direction: column; align-items: flex-start; padding: 100px 30px 30px; box-shadow: var(--shadow-heavy); transition: var(--transition-fast); gap: 0; overflow-y: auto; }
    .nav-menu.active { right: 0; }
    .nav-item { width: 100%; }
    .nav-link { padding: 15px 0; border-bottom: 1px solid var(--light-gray); width: 100%; justify-content: space-between; }
    .nav-link.active { color: var(--primary-orange); }
    .nav-contact-info { display: none; }
    .dropdown-menu { position: static; box-shadow: none; padding-left: 20px; max-height: 0; overflow: hidden; opacity: 1; visibility: visible; transform: none; }
    .nav-item.dropdown-active .dropdown-menu { max-height: 500px; padding: 10px 0 10px 20px; }
    .nav-cta { margin-left: 0; margin-top: 20px; width: 100%; }
    .btn-contact { width: 100%; justify-content: center; }
    .menu-toggle { display: flex; }
    .hero-title { font-size: 45px; }
    .hero-content { padding: 0 30px; }
    .slider-nav { right: 30px; bottom: 30px; }
    .slider-dots { left: 30px; bottom: 30px; }
}

@media screen and (max-width: 768px) {
    .header-wrapper { padding: 12px 0; }
    .logo img { height: 45px; }
    .hero-section { margin-top: 70px; min-height: 500px; }
    .hero-title { font-size: 35px; }
    .hero-description { font-size: 16px; }
    .hero-subtitle { font-size: 14px; }
    .slider-arrow { width: 45px; height: 45px; }
    .slider-arrow i { font-size: 20px; }
    .slider-nav { right: 20px; bottom: 20px; gap: 10px; }
    .slider-dots { left: 20px; bottom: 20px; }
}

@media screen and (max-width: 576px) {
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: 28px; }
    .hero-description { font-size: 15px; margin-bottom: 25px; }
    .hero-btn { padding: 14px 28px; font-size: 15px; }
    .slider-dots { display: none; }
    .slider-nav { right: 50%; transform: translateX(50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 100px 0; background-color: var(--white); overflow: hidden; }
.about-images-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 60px; }
.about-img-box { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); aspect-ratio: 4/3; }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: var(--transition-medium); }
.about-img-box .img-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(244, 121, 32, 0.2) 0%, transparent 60%); opacity: 0; transition: var(--transition-fast); }
.about-img-box:hover img { transform: scale(1.08); }
.about-img-box:hover .img-overlay { opacity: 1; }

.about-content-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.about-left { padding-right: 20px; }
.section-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.tag-line { width: 40px; height: 3px; background-color: var(--primary-orange); border-radius: 2px; }
.tag-text { font-size: 16px; font-weight: 600; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; }
.about-title { font-size: 40px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 25px; }
.about-title span { color: var(--primary-orange); }
.about-description { font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 20px; }

.about-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; background-color: var(--primary-orange); color: var(--white); font-size: 16px; font-weight: 600; border-radius: 50px; transition: var(--transition-fast); position: relative; overflow: hidden; margin-top: 15px; }
.about-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: var(--transition-medium); }
.about-btn:hover { background-color: #e06a15; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(244, 121, 32, 0.4); }
.about-btn:hover::before { left: 100%; }
.about-btn i { transition: var(--transition-fast); }
.about-btn:hover i { transform: translateX(5px); }

.about-right { padding-left: 20px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-feature { display: flex; flex-direction: column; gap: 15px; padding: 25px; border-radius: 12px; background-color: var(--light-gray); transition: var(--transition-fast); }
.about-feature:hover { background-color: var(--primary-orange); transform: translateY(-5px); box-shadow: var(--shadow-medium); }
.feature-icon { flex-shrink: 0; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background-color: var(--white); border-radius: 10px; transition: var(--transition-fast); }
.feature-icon i { font-size: 24px; color: var(--primary-orange); transition: var(--transition-fast); }
.about-feature:hover .feature-icon { background-color: var(--white); }
.about-feature:hover .feature-icon i { color: var(--primary-orange); }
.feature-content h4 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; transition: var(--transition-fast); }
.feature-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; transition: var(--transition-fast); }
.about-feature:hover .feature-content h4, .about-feature:hover .feature-content p { color: var(--white); }

@media screen and (max-width: 992px) {
    .about-section { padding: 80px 0; }
    .about-images-row { gap: 20px; margin-bottom: 50px; }
    .about-content-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .about-left { padding-right: 0; }
    .about-right { padding-left: 0; }
    .about-title { font-size: 34px; }
}

@media screen and (max-width: 768px) {
    .about-section { padding: 60px 0; }
    .about-images-row { grid-template-columns: 1fr; gap: 15px; margin-bottom: 40px; }
    .about-img-box { aspect-ratio: 16/9; }
    .about-title { font-size: 28px; }
    .about-features { gap: 15px; }
    .about-feature { padding: 20px; }
}

@media screen and (max-width: 576px) {
    .about-images-row { grid-template-columns: 1fr; }
    .about-img-box { aspect-ratio: 16/9; }
    .about-features { grid-template-columns: 1fr; }
    .about-feature { padding: 20px; }
    .feature-icon { width: 45px; height: 45px; }
    .feature-icon i { font-size: 20px; }
}

.text-orange { color: var(--primary-orange); }
.bg-orange { background-color: var(--primary-orange); }
.reveal-element { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-element.revealed { opacity: 1; transform: translateY(0); }

.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--white); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner { width: 50px; height: 50px; border: 3px solid var(--light-gray); border-top-color: var(--primary-orange); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background-color: rgba(244, 121, 32, 0.1); z-index: 9999; }
.scroll-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary-orange), #ff9a44); width: 0%; transition: width 0.1s ease-out; box-shadow: 0 0 10px rgba(244, 121, 32, 0.5); }

.ripple-effect { position: absolute; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); transform: scale(0); animation: ripple-animation 0.6s linear; pointer-events: none; }
@keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }

body.loaded .reveal, body.loaded .reveal-left, body.loaded .reveal-right, body.loaded .reveal-scale, body.loaded .reveal-rotate {
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 50px 0; background-color: var(--light-gray); position: relative; overflow: hidden; }
.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.section-tag.center { justify-content: center; }
.section-title { font-size: 42px; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; }
.section-title span { color: var(--primary-orange); }
.section-subtitle { font-size: 16px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.services-layout { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 40px; align-items: center; }
.services-left, .services-right { display: flex; flex-direction: column; gap: 25px; }

.service-card-horizontal { display: flex; align-items: center; gap: 20px; background: var(--white); padding: 25px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); transition: var(--transition-fast); position: relative; overflow: hidden; }
.service-card-horizontal::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--primary-orange); transform: scaleY(0); transition: transform 0.4s ease; }
.service-card-horizontal:hover { transform: translateX(10px); box-shadow: 0 10px 30px rgba(244, 121, 32, 0.15); }
.service-card-horizontal:hover::before { transform: scaleY(1); }

.service-card-horizontal.reverse { flex-direction: row-reverse; text-align: right; }
.service-card-horizontal.reverse::before { left: auto; right: 0; }
.service-card-horizontal.reverse:hover { transform: translateX(-10px); }

.service-icon-box { width: 60px; height: 60px; min-width: 60px; background: linear-gradient(135deg, var(--primary-orange), #ff9a56); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.service-icon-box i { font-size: 26px; color: var(--white); }
.service-card-horizontal:hover .service-icon-box { transform: scale(1.1) rotate(5deg); box-shadow: 0 8px 25px rgba(244, 121, 32, 0.4); }

.service-card-content h4 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; transition: var(--transition-fast); }
.service-card-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }
.service-card-horizontal:hover .service-card-content h4 { color: var(--primary-orange); }

.services-center { position: relative; }
.services-image-box { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
.services-image-box img { width: 100%; height: 500px; object-fit: cover; display: block; transition: var(--transition-medium); }
.services-image-box:hover img { transform: scale(1.05); }
.services-image-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent 50%, rgba(244, 121, 32, 0.3) 100%); pointer-events: none; }

@media screen and (max-width: 1200px) { .services-layout { grid-template-columns: 1fr 1fr 1fr; gap: 25px; } .services-image-box img { height: 450px; } }
@media screen and (max-width: 992px) { .services-layout { grid-template-columns: 1fr; gap: 40px; } .services-left, .services-right { order: 2; } .services-center { order: 1; } .services-image-box img { height: 350px; } .service-card-horizontal.reverse { flex-direction: row; text-align: left; } .service-card-horizontal.reverse::before { left: 0; right: auto; } .service-card-horizontal.reverse:hover { transform: translateX(10px); } }
@media screen and (max-width: 576px) { .service-card-horizontal { padding: 20px; gap: 15px; } .service-icon-box { width: 50px; height: 50px; min-width: 50px; } .service-icon-box i { font-size: 22px; } .service-card-content h4 { font-size: 16px; } .service-card-content p { font-size: 13px; } .services-image-box img { height: 280px; } }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section { padding: 50px 0; background: var(--white); }
.products-carousel-wrapper { width: 100%; overflow: hidden; margin-bottom: 50px; padding: 20px 0; }
.products-carousel { overflow: hidden; position: relative; }
.products-carousel::before, .products-carousel::after { content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 10; pointer-events: none; }
.products-carousel::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.products-carousel::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.products-track { display: flex; gap: 30px; animation: scrollProducts 25s linear infinite; }
.products-carousel:hover .products-track { animation-play-state: paused; }
@keyframes scrollProducts { from { transform: translateX(0); } to { transform: translateX(calc(-330px * 6)); } }

.product-card, .product-card.reveal-scale, .product-card.reveal-scale.delay-1, .product-card.reveal-scale.delay-2, .product-card.reveal-scale.delay-3, .product-card.reveal-scale.delay-4, .products-track .product-card { flex: 0 0 300px; min-width: 300px; background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: box-shadow 0.3s ease; opacity: 1 !important; transform: scale(1) !important; visibility: visible !important; }
.product-card:hover { transform: translateY(-10px) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.product-image { position: relative; overflow: hidden; height: 220px; background: #f8f8f8; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: var(--transition-medium); }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(244, 121, 32, 0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-fast); }
.product-card:hover .product-overlay { opacity: 1; }
.product-btn { padding: 12px 25px; background: var(--white); color: var(--primary-orange); font-weight: 600; border-radius: 50px; transform: translateY(20px); transition: var(--transition-fast); }
.product-card:hover .product-btn { transform: translateY(0); }
.product-btn:hover { background: var(--text-dark); color: var(--white); }
.product-content { padding: 25px; }
.product-category { display: inline-block; padding: 5px 12px; background: rgba(244, 121, 32, 0.1); color: var(--primary-orange); font-size: 12px; font-weight: 600; border-radius: 20px; margin-bottom: 12px; }
.product-content h4 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.product-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.products-cta { text-align: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: var(--primary-orange); color: var(--white); font-size: 16px; font-weight: 600; border-radius: 50px; transition: var(--transition-fast); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: var(--transition-medium); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(244, 121, 32, 0.4); }
.btn-primary:hover::before { left: 100%; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section { padding: 50px 0; background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; }
.stats-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(244, 121, 32, 0.95), rgba(45, 45, 45, 0.9)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stat-box { text-align: center; padding: 30px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-box:last-child { border-right: none; }
.stat-box .stat-icon { width: 70px; height: 70px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: var(--transition-fast); }
.stat-box .stat-icon i { font-size: 30px; color: var(--white); }
.stat-box:hover .stat-icon { background: var(--white); transform: scale(1.1); }
.stat-box:hover .stat-icon i { color: var(--primary-orange); }
.stat-box .stat-number { font-size: 48px; font-weight: 700; color: var(--white); }
.stat-box .stat-plus { font-size: 36px; color: var(--white); }
.stat-box .stat-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 5px; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: 50px 0; background: var(--light-gray); }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); padding: 40px 35px; border-radius: 15px; position: relative; transition: var(--transition-fast); }
.testimonial-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); }
.testimonial-quote { position: absolute; top: 30px; right: 30px; }
.testimonial-quote i { font-size: 50px; color: rgba(244, 121, 32, 0.15); }
.testimonial-text { font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 30px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-image { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary-orange); }
.author-image img { width: 100%; height: 100%; object-fit: cover; }
.author-info h5 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.author-info span { font-size: 13px; color: var(--text-light); }

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section { padding: 50px 0; background: linear-gradient(135deg, #1a2a4a 0%, #0d1829 100%); overflow: hidden; }
.partners-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.partners-logos-container { display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
.partners-marquee { overflow: hidden; position: relative; }
.marquee-content { display: flex; gap: 20px; animation: marqueeScroll 25s linear infinite; }
.partners-marquee.reverse .marquee-content { animation: marqueeScrollReverse 25s linear infinite; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.partner-card { flex-shrink: 0; width: 180px; height: 80px; background: #ffffff; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 15px 20px; transition: var(--transition-fast); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.partner-card:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(244, 121, 32, 0.3); }
.partner-card img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: var(--transition-fast); }
.partner-card:hover img { filter: grayscale(0%); opacity: 1; }

.partners-content { padding-left: 40px; }
.section-tag.light .tag-line { background: var(--primary-orange); }
.section-tag.light .tag-text { color: var(--primary-orange); }
.partners-title { font-size: 40px; font-weight: 700; color: #ffffff; line-height: 1.3; margin-bottom: 20px; }
.partners-title span { color: var(--primary-orange); }
.partners-description { font-size: 16px; color: rgba(255, 255, 255, 0.8); line-height: 1.8; margin-bottom: 30px; }
.partners-quote { position: relative; padding: 25px 30px; background: rgba(255, 255, 255, 0.05); border-radius: 12px; border-left: 4px solid var(--primary-orange); }
.partners-quote i { font-size: 40px; color: var(--primary-orange); opacity: 0.3; position: absolute; top: 15px; left: 20px; }
.partners-quote p { font-size: 15px; font-style: italic; color: rgba(255, 255, 255, 0.9); line-height: 1.7; margin-bottom: 15px; position: relative; z-index: 1; }
.partners-quote .quote-author { font-size: 14px; font-weight: 600; color: var(--primary-orange); }

@media screen and (max-width: 992px) { .partners-wrapper { grid-template-columns: 1fr; gap: 40px; } .partners-content { padding-left: 0; text-align: center; } .partners-title { font-size: 32px; } .section-tag.light { justify-content: center; } }
@media screen and (max-width: 768px) { .partners-section { padding: 70px 0; } .partners-title { font-size: 28px; } .partner-card { width: 150px; height: 70px; } .marquee-content { gap: 15px; } }
@media screen and (max-width: 576px) { .partners-title { font-size: 24px; } .partner-card { width: 130px; height: 60px; padding: 10px 15px; } .partners-quote { padding: 20px; } .partners-quote i { font-size: 30px; } }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 100px 0; background: url('https://images.unsplash.com/photo-1631549916768-4119b2e5f926?auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(244, 121, 32, 0.9)); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: 42px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.cta-content h2 span { color: var(--primary-orange); }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 35px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: transparent; color: var(--white); font-size: 16px; font-weight: 600; border-radius: 50px; border: 2px solid var(--white); transition: var(--transition-fast); }
.btn-secondary:hover { background: var(--white); color: var(--primary-orange); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--text-dark); color: var(--white); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; }
.footer-logo img { width: 120px; height: 120px; object-fit: contain; border-radius: 50%; background: #fff; padding: 12px; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.social-link i { font-size: 18px; color: var(--white); }
.social-link:hover { background: var(--primary-orange); transform: translateY(-3px); }
.footer-col h4 { font-size: 18px; font-weight: 600; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary-orange); border-radius: 2px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition-fast); display: inline-block; }
.footer-links a:hover { color: var(--primary-orange); padding-left: 8px; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 18px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact i { font-size: 18px; color: var(--primary-orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--primary-orange); }

.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary-orange); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition-fast); z-index: 999; box-shadow: 0 5px 20px rgba(244, 121, 32, 0.4); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--text-dark); transform: translateY(-5px); }
.back-to-top i { font-size: 22px; }

/* Homepage Responsive */
@media screen and (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
    .product-card { flex: 0 0 280px; min-width: 280px; }
}
@media screen and (max-width: 992px) {
    .section-title { font-size: 34px; }
    .testimonials-slider { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content h2 { font-size: 34px; }
    .product-card { flex: 0 0 260px; min-width: 260px; }
    .product-image { height: 200px; }
    .products-track { gap: 20px; }
}
@media screen and (max-width: 768px) {
    .services-section, .products-section, .testimonials-section, .cta-section { padding: 70px 0; }
    .cta-section { background-attachment: scroll !important; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-box { border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-box:last-child { border-bottom: none; }
    .footer { display: block !important; visibility: visible !important; opacity: 1 !important; position: relative; z-index: 10; }
    .footer-top, .footer-bottom { display: block !important; visibility: visible !important; opacity: 1 !important; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-logo { display: flex; justify-content: center; }
    .footer-logo img { width: 100px; height: 100px; object-fit: contain; border-radius: 50%; background: #fff; padding: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
}
@media screen and (max-width: 576px) {
    .section-title { font-size: 28px; }
    .cta-content h2 { font-size: 28px; }
    .stat-box .stat-number { font-size: 36px; }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.about-intro { padding: 140px 0 100px; background: #fff; }
.about-intro-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-tag { display: inline-block; color: var(--primary-orange); font-size: 14px; font-weight: 600; letter-spacing: 2px; margin-bottom: 20px; }
.about-intro-left h1 { font-size: 52px; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.about-intro-right p { font-size: 18px; color: #555; line-height: 1.9; }

@media screen and (max-width: 992px) { .about-intro { padding: 120px 0 60px; } .about-intro-wrapper { grid-template-columns: 1fr; gap: 30px; } .about-intro-left h1 { font-size: 36px; } }
@media screen and (max-width: 768px) { .about-intro-left h1 { font-size: 28px; } .about-intro-right p { font-size: 16px; } }

.section-light { padding: 100px 0; background: #fff; }
.section-dark { padding: 100px 0; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; color: var(--primary-orange); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.section-title { font-size: 42px; font-weight: 700; color: #1a1a2e; margin-bottom: 15px; }
.section-title span { color: var(--primary-orange); }
.section-subtitle { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; }
.section-header.light .section-tag { color: var(--primary-orange); }
.section-header.light .section-title { color: #fff; }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.7); }
.section-header.left { text-align: left; }
.section-header.left .section-subtitle { margin: 0; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; background: var(--primary-orange); color: #fff; font-size: 16px; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; }
.btn-primary:hover { background: #e06a15; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(244,121,32,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; background: transparent; color: #fff; font-size: 16px; font-weight: 600; border: 2px solid #fff; border-radius: 50px; transition: all 0.3s ease; }
.btn-outline:hover { background: #fff; color: #1a1a2e; transform: translateY(-3px); }

/* Video Banner */
.video-banner { position: relative; width: 100%; height: 70vh; min-height: 500px; overflow: hidden; background: #1a1a2e; }
.video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; background: #1a1a2e; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,26,46,0.3) 0%, rgba(244,121,32,0.2) 100%); pointer-events: none; }
@media screen and (max-width: 768px) { .video-banner { height: 50vh; min-height: 300px; } }

.about-intro-left, .about-intro-right { transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.about-intro-left.animate-on-scroll:not(.animated) { opacity: 0; transform: translateX(-60px); }
.about-intro-right.animate-on-scroll:not(.animated) { opacity: 0; transform: translateX(60px); }
.about-intro-left.animated, .about-intro-right.animated { opacity: 1; transform: translateX(0); }

.video-banner.animate-on-scroll:not(.animated) { opacity: 0; transform: translateY(50px); }
.video-banner.animated { opacity: 1; transform: translateY(0); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); }
.video-banner.animated .video-wrapper video { animation: videoZoom 15s ease-in-out infinite alternate; }
@keyframes videoZoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* ============================================
   OUR STORIES SECTION
   ============================================ */
.our-stories { padding: 100px 0 80px; background: #f8f9fa; overflow: hidden; }
.stories-wrapper { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: flex-start; padding-left: calc((100vw - 1400px) / 2 + 30px); }
@media screen and (max-width: 1460px) { .stories-wrapper { padding-left: 30px; } }
.stories-left h2 { font-size: 44px; font-weight: 700; color: #1a1a2e; line-height: 1.2; margin-bottom: 24px; }
.stories-left p { font-size: 15px; color: #6b7280; line-height: 1.8; }
.stories-right { position: relative; overflow: visible; min-width: 0; }

.stories-swiper { overflow: hidden !important; width: 100%; }
.stories-swiper .swiper-slide { width: 400px !important; height: auto; }
.story-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px 24px 32px; min-height: 276px; display: flex; flex-direction: column; width: 400px; }
.story-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); }
.story-number { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; background: #F47920; color: #fff; font-size: 15px; font-weight: 600; border-radius: 12px; margin-bottom: 24px; flex-shrink: 0; }
.story-card p { font-size: 15px; color: #4b5563; line-height: 1.75; margin: 0; }

.stories-nav { display: flex; align-items: center; gap: 10px; justify-content: flex-end; margin-top: 50px; padding-right: 40px; width: calc(100vw - 1040px); }
.story-nav-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid #d1d5db; cursor: pointer; transition: all 0.25s ease; }
.story-nav-btn.story-prev, .story-nav-btn.story-next { border-radius: 50%; }
.story-nav-btn i { font-size: 18px; color: #9ca3af; }
.story-nav-btn:hover { background: #f3f4f6; }
.story-nav-btn:hover i { color: #6b7280; }
.story-nav-btn.swiper-button-disabled { opacity: 0.4; cursor: not-allowed; }
.story-nav-btn.swiper-button-disabled:hover { background: transparent; }

@media screen and (max-width: 1200px) { .stories-wrapper { grid-template-columns: 320px 1fr; gap: 60px; } .stories-left h2 { font-size: 38px; } }
@media screen and (max-width: 992px) { .our-stories { padding: 80px 0 60px; } .stories-wrapper { grid-template-columns: 1fr; gap: 40px; padding-left: 20px; padding-right: 20px; } .stories-left { max-width: 500px; } .stories-left h2 { font-size: 32px; } .stories-nav { padding-right: 0; } }
@media screen and (max-width: 768px) { .our-stories { padding: 60px 0 50px; } .stories-left h2 { font-size: 28px; } .story-card { padding: 24px 22px 32px; min-height: 200px; } .story-number { width: 48px; height: 48px; font-size: 14px; margin-bottom: 20px; } .stories-nav { margin-top: 40px; } .story-nav-btn { width: 44px; height: 44px; } }

/* ============================================
   OUR VALUES SECTION
   ============================================ */
.our-values { padding: 100px 0; background: #fff; overflow: hidden; }
.values-top { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.values-top-image { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; }
.values-top-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.values-top-content { padding-top: 20px; }
.values-tag { display: inline-block; font-size: 15px; font-weight: 600; color: var(--primary-orange); margin-bottom: 16px; letter-spacing: 0.5px; }
.values-top-content h2 { font-size: 48px; font-weight: 800; color: #1a1a2e; line-height: 1.2; letter-spacing: -0.5px; margin: 0; }

.values-bottom { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.values-bottom-image { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.values-bottom-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.values-bottom-content { padding-top: 20px; }
.values-bottom-content p { font-size: 15px; color: #6b7280; line-height: 1.85; margin: 0 0 24px; }
.values-bottom-content p:last-of-type { margin-bottom: 40px; }

.values-counters { display: flex; gap: 40px; padding-top: 10px; }
.values-counter { display: flex; flex-wrap: wrap; }
.counter-number { font-size: 42px; font-weight: 700; color: #1a1a2e; line-height: 1; display: inline; }
.counter-suffix { font-size: 42px; font-weight: 700; color: var(--primary-orange); line-height: 1; }
.counter-label { font-size: 14px; color: #9ca3af; margin-top: 8px; font-weight: 500; width: 100%; }

@media screen and (max-width: 1200px) { .values-top { grid-template-columns: 340px 1fr; gap: 50px; } .values-top-content h2 { font-size: 40px; } .values-bottom { padding-left: 390px; gap: 50px; } }
@media screen and (max-width: 992px) { .our-values { padding: 80px 0; } .values-top { grid-template-columns: 1fr; gap: 30px; } .values-top-image { max-width: 400px; aspect-ratio: 4/3; } .values-top-content h2 { font-size: 36px; } .values-bottom { padding-left: 0; grid-template-columns: 1fr 1fr; gap: 40px; } }
@media screen and (max-width: 768px) { .our-values { padding: 60px 0; } .values-top-content h2 { font-size: 30px; } .values-bottom { grid-template-columns: 1fr; gap: 30px; } .values-bottom-image { max-width: 400px; aspect-ratio: 4/3; } .values-counters { gap: 30px; } .counter-number, .counter-suffix { font-size: 34px; } }
@media screen and (max-width: 480px) { .values-top-content h2 { font-size: 26px; } .values-counters { flex-wrap: wrap; gap: 24px; } .counter-number, .counter-suffix { font-size: 30px; } }

/* ============================================
   VALUES CARDS GRID
   ============================================ */
.values-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 80px; }
.value-card { background: #f8f9fa; border-radius: 16px; padding: 32px 28px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--primary-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.value-card:hover { background: #fff; transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); }
.value-card:hover::before { transform: scaleX(1); }
.value-card-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 14px; margin-bottom: 20px; transition: all 0.4s ease; border: 1px solid #e5e7eb; }
.value-card:hover .value-card-icon { background: var(--primary-orange); border-color: var(--primary-orange); transform: scale(1.05); }
.value-card-icon i { font-size: 26px; color: var(--primary-orange); transition: all 0.4s ease; }
.value-card:hover .value-card-icon i { color: #fff; }
.value-card h4 { font-size: 18px; font-weight: 600; color: #1a1a2e; margin-bottom: 10px; transition: color 0.3s ease; }
.value-card:hover h4 { color: var(--primary-orange); }
.value-card p { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0; }

@media screen and (max-width: 1200px) { .values-cards-grid { gap: 20px; margin-top: 60px; } .value-card { padding: 28px 24px; } }
@media screen and (max-width: 992px) { .values-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media screen and (max-width: 768px) { .values-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 50px; } .value-card { padding: 24px 20px; } .value-card-icon { width: 48px; height: 48px; border-radius: 12px; } .value-card-icon i { font-size: 22px; } .value-card h4 { font-size: 16px; } }
@media screen and (max-width: 480px) { .values-cards-grid { grid-template-columns: 1fr; } }

/* ============================================
   INNOVATIONS SECTION
   ============================================ */
.innovations-section { padding: 100px 0; background: #f8f9fa; overflow: hidden; }
.innovations-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.innovations-tag { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.innovations-header h2 { font-size: 42px; font-weight: 700; color: #1a1a2e; line-height: 1.25; margin-bottom: 20px; }
.innovations-header h2 span { color: var(--primary-orange); }
.innovations-header p { font-size: 16px; color: #6b7280; line-height: 1.8; }
.innovations-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.innovations-img { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.innovations-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.innovations-img:hover img { transform: scale(1.08); }
.innovations-img-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 24px; background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%); transition: padding 0.3s ease; }
.innovations-img:hover .innovations-img-overlay { padding-bottom: 30px; }
.innovations-img-overlay h4 { font-size: 18px; font-weight: 600; color: #fff; margin: 0; }

@media screen and (max-width: 1200px) { .innovations-header h2 { font-size: 36px; } .innovations-images { gap: 22px; } }
@media screen and (max-width: 992px) { .innovations-section { padding: 80px 0; } .innovations-header h2 { font-size: 32px; } .innovations-header { margin-bottom: 50px; } }
@media screen and (max-width: 768px) { .innovations-section { padding: 60px 0; } .innovations-header h2 { font-size: 28px; } .innovations-header p { font-size: 15px; } .innovations-images { grid-template-columns: 1fr; gap: 18px; max-width: 500px; margin: 0 auto; } }

/* ============================================
   GLOBAL PRESENCE SECTION
   ============================================ */
.global-section { padding: 100px 0; background: linear-gradient(160deg, #0a0e1a 0%, #111827 40%, #0f172a 100%); position: relative; overflow: hidden; }
.global-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(244, 121, 32, 0.06) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(244, 121, 32, 0.04) 0%, transparent 40%), radial-gradient(circle at 60% 80%, rgba(244, 121, 32, 0.03) 0%, transparent 35%); pointer-events: none; }
.global-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.g-particle { position: absolute; background: var(--primary-orange); border-radius: 50%; opacity: 0; animation: particleFloat 12s ease-in-out infinite; }
@keyframes particleFloat { 0%, 100% { opacity: 0; transform: translateY(0) translateX(0); } 20% { opacity: 0.4; } 50% { opacity: 0.15; transform: translateY(-80px) translateX(30px); } 80% { opacity: 0.3; } }
.global-header { text-align: center; max-width: 680px; margin: 0 auto 60px; position: relative; z-index: 1; }
.global-tag { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.global-header h2 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 20px; }
.global-header h2 span { color: var(--primary-orange); }
.global-header p { font-size: 16px; color: rgba(255, 255, 255, 0.6); line-height: 1.8; }
.global-map-wrapper { position: relative; z-index: 1; margin-bottom: 70px; }
.global-map-container { max-width: 1100px; margin: 0 auto; position: relative; }
.world-map-canvas { width: 100%; height: auto; display: block; pointer-events: none; user-select: none; }
.map-connections { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.connection-line { fill: none; stroke: url(#lineGrad1); stroke-width: 1.2; stroke-dasharray: 8 6; stroke-dashoffset: 200; opacity: 0; transition: opacity 0.6s ease; filter: url(#glow); }
.connection-line.line-visible { opacity: 1; animation: dashFlow 3s linear infinite; }
.line-delay-1.line-visible { animation-delay: 0.3s; } .line-delay-2.line-visible { animation-delay: 0.6s; } .line-delay-3.line-visible { animation-delay: 0.9s; } .line-delay-4.line-visible { animation-delay: 1.2s; } .line-delay-5.line-visible { animation-delay: 1.5s; } .line-delay-6.line-visible { animation-delay: 1.8s; } .line-delay-7.line-visible { animation-delay: 2.1s; }
@keyframes dashFlow { 0% { stroke-dashoffset: 200; } 100% { stroke-dashoffset: 0; } }
.map-pin { position: absolute; z-index: 5; cursor: pointer; transform: translate(-50%, -50%) scale(0); opacity: 0; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; }
.map-pin.pin-visible { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.pin-core { width: 10px; height: 10px; background: var(--primary-orange); border-radius: 50%; position: relative; z-index: 3; box-shadow: 0 0 10px rgba(244, 121, 32, 0.6), 0 0 20px rgba(244, 121, 32, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.map-pin:hover .pin-core { transform: scale(1.5); box-shadow: 0 0 15px rgba(244, 121, 32, 0.8), 0 0 35px rgba(244, 121, 32, 0.4); }
.pin-hq .pin-core { width: 16px; height: 16px; background: #fff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(244, 121, 32, 0.5), 0 0 50px rgba(244, 121, 32, 0.2); }
.pin-hq:hover .pin-core { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 45px rgba(244, 121, 32, 0.6), 0 0 70px rgba(244, 121, 32, 0.3); }
.pin-ring { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border: 1.5px solid var(--primary-orange); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; animation: pinRingPulse 3s ease-out infinite; }
.pin-ring-2 { animation-delay: 1s; } .pin-ring-3 { animation-delay: 2s; }
.pin-hq .pin-ring { border-color: rgba(255, 255, 255, 0.7); width: 16px; height: 16px; }
@keyframes pinRingPulse { 0% { width: 10px; height: 10px; opacity: 0.7; } 100% { width: 60px; height: 60px; opacity: 0; } }
.pin-tooltip { position: absolute; bottom: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); background: rgba(15, 23, 42, 0.95); border: 1px solid rgba(244, 121, 32, 0.3); border-radius: 10px; padding: 12px 18px; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 20; backdrop-filter: blur(10px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(244, 121, 32, 0.1); }
.pin-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: rgba(244, 121, 32, 0.3); }
.map-pin:hover .pin-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.pin-tooltip strong { display: block; font-size: 14px; font-weight: 600; color: var(--primary-orange); margin-bottom: 3px; }
.pin-tooltip span { font-size: 12px; color: rgba(255, 255, 255, 0.65); }
.pin-hq .pin-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); background: var(--primary-orange); border-color: var(--primary-orange); box-shadow: 0 8px 30px rgba(244, 121, 32, 0.4); }
.pin-hq .pin-tooltip::after { border-top-color: var(--primary-orange); }
.pin-hq .pin-tooltip strong { color: #fff; }
.pin-hq .pin-tooltip span { color: rgba(255, 255, 255, 0.85); }

.global-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.global-stat { display: flex; align-items: center; gap: 20px; padding: 28px 24px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; transition: all 0.4s ease; }
.global-stat:hover { background: rgba(244, 121, 32, 0.08); border-color: rgba(244, 121, 32, 0.2); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(244, 121, 32, 0.1); }
.global-stat-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(244, 121, 32, 0.1); border-radius: 14px; flex-shrink: 0; transition: all 0.4s ease; }
.global-stat:hover .global-stat-icon { background: var(--primary-orange); box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4); }
.global-stat-icon i { font-size: 26px; color: var(--primary-orange); transition: color 0.4s ease; }
.global-stat:hover .global-stat-icon i { color: #fff; }
.global-stat-info h3 { font-size: 32px; font-weight: 700; color: #fff; line-height: 1; margin: 0 0 6px; }
.global-stat-info p { font-size: 14px; color: rgba(255, 255, 255, 0.5); margin: 0; font-weight: 500; }

@media screen and (max-width: 1200px) { .global-header h2 { font-size: 36px; } .global-stats { gap: 20px; } .global-stat { padding: 24px 20px; } .global-stat-info h3 { font-size: 28px; } }
@media screen and (max-width: 992px) { .global-section { padding: 80px 0; } .global-header h2 { font-size: 32px; } .global-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; } .global-map-wrapper { margin-bottom: 50px; } .pin-tooltip { display: none; } .pin-hq .pin-tooltip { display: block; padding: 8px 14px; } }
@media screen and (max-width: 768px) { .global-section { padding: 60px 0; } .global-header h2 { font-size: 28px; } .global-header p { font-size: 15px; } .global-stats { grid-template-columns: 1fr; gap: 16px; } .global-stat { padding: 22px 20px; } .global-stat-info h3 { font-size: 26px; } .pin-core { width: 7px; height: 7px; } .pin-hq .pin-core { width: 12px; height: 12px; } .connection-line { stroke-width: 0.8; } }
@media screen and (max-width: 480px) { .global-header h2 { font-size: 24px; } .global-stat-icon { width: 48px; height: 48px; } .global-stat-icon i { font-size: 22px; } .pin-hq .pin-tooltip { font-size: 11px; padding: 6px 10px; } }

/* ============================================
   GLOBAL STANDARDS SECTION
   ============================================ */
.global-standards { padding: 90px 0; background: #fff; overflow: hidden; }
.standards-header { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.standards-header h2 { font-size: 38px; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin-bottom: 16px; }
.standards-header h2 span { color: var(--primary-orange); }
.standards-header p { font-size: 16px; color: #6b7280; line-height: 1.8; }
.standards-swiper-wrapper { position: relative; }
.standards-swiper { overflow: hidden; padding: 10px 0 20px; }
.standards-swiper .swiper-wrapper { transition-timing-function: linear !important; }
.standard-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 32px 24px 28px; text-align: center; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.4s ease; }
.standard-card:hover { border-color: var(--primary-orange); box-shadow: 0 8px 30px rgba(244, 121, 32, 0.1); transform: translateY(-4px); }
.standard-logo { width: 80px; height: 80px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.standard-logo svg { width: 100%; height: 100%; }
.standard-card h4 { font-size: 14px; font-weight: 600; color: #1a1a2e; line-height: 1.4; margin-bottom: 6px; }
.standard-card p { font-size: 13px; color: #9ca3af; margin: 0; font-weight: 500; }

@media screen and (max-width: 992px) { .global-standards { padding: 70px 0; } .standards-header h2 { font-size: 32px; } .standards-header { margin-bottom: 40px; } }
@media screen and (max-width: 768px) { .global-standards { padding: 60px 0; } .standards-header h2 { font-size: 28px; } .standard-card { padding: 24px 18px 22px; min-height: 190px; } .standard-logo { width: 65px; height: 65px; margin-bottom: 16px; } .standard-card h4 { font-size: 13px; } }
@media screen and (max-width: 480px) { .standards-header h2 { font-size: 24px; } .standard-card { min-height: 170px; } }

/* ============================================
   DIVISION PAGE STYLES
   ============================================ */
/* --- Division Hero Banner --- */
.division-hero { position: relative; display: flex; align-items: center; overflow: hidden; padding: 120px 0 50px; }
.division-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.division-hero-bg img, .division-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.division-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(15,52,96,0.88) 60%, rgba(244,121,32,0.2) 100%); z-index: 1; }
.division-hero-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.division-hero .container { position: relative; z-index: 3; }
.division-hero-content { max-width: 720px; margin: 0 auto; text-align: center; }
.division-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 22px; background: rgba(244,121,32,0.12); border: 1px solid rgba(244,121,32,0.25); border-radius: 50px; color: var(--primary-orange); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.division-hero-tag i { font-size: 16px; }
.division-hero-title { font-size: 52px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.division-hero-title span { color: var(--primary-orange); }
.division-hero-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.division-hero-stats { display: inline-flex; align-items: center; gap: 24px; padding: 14px 28px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; backdrop-filter: blur(8px); }
.division-hero-stat { text-align: center; }
.division-hero-stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--primary-orange); line-height: 1.2; }
.division-hero-stat span { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.division-hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

.division-overview { padding: 100px 0; background: #fff; overflow: hidden; }
.division-overview-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.division-tag { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.division-overview-header h2 { font-size: 42px; font-weight: 700; color: #1a1a2e; line-height: 1.25; margin-bottom: 18px; }
.division-overview-header h2 span { color: var(--primary-orange); }
.division-overview-header p { font-size: 16px; color: #6b7280; line-height: 1.8; }

.division-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.division-card { position: relative; background: #f8f9fa; border-radius: 18px; padding: 36px 30px 32px; transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; border: 1px solid transparent; }
.division-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease; }
.division-card:hover { background: #fff; border-color: rgba(244, 121, 32, 0.15); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.division-card:hover::before { transform: scaleX(1); }
.division-card-number { position: absolute; top: 20px; right: 24px; font-size: 52px; font-weight: 800; color: rgba(0, 0, 0, 0.03); line-height: 1; transition: color 0.4s ease; }
.division-card:hover .division-card-number { color: rgba(244, 121, 32, 0.08); }
.division-card-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 14px; margin-bottom: 22px; border: 1px solid #e5e7eb; transition: all 0.4s ease; }
.division-card:hover .division-card-icon { background: var(--primary-orange); border-color: var(--primary-orange); transform: scale(1.05); box-shadow: 0 8px 24px rgba(244, 121, 32, 0.3); }
.division-card-icon i { font-size: 28px; color: var(--primary-orange); transition: color 0.4s ease; }
.division-card:hover .division-card-icon i { color: #fff; }
.division-card h3 { font-size: 20px; font-weight: 600; color: #1a1a2e; margin-bottom: 12px; transition: color 0.3s ease; }
.division-card:hover h3 { color: var(--primary-orange); }
.division-card p { font-size: 14px; color: #6b7280; line-height: 1.75; margin-bottom: 20px; }
.division-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary-orange); transition: all 0.3s ease; }
.division-card-link i { transition: transform 0.3s ease; }
.division-card:hover .division-card-link i { transform: translateX(5px); }

.division-detail { padding: 100px 0; background: #fff; overflow: hidden; }
.division-detail-alt { background: #f8f9fa; }
.division-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.division-detail-row.row-reverse { direction: rtl; }
.division-detail-row.row-reverse > * { direction: ltr; }
.division-detail-image { position: relative; border-radius: 20px; overflow: hidden; }
.division-detail-image img { width: 100%; height: 480px; object-fit: cover; display: block; border-radius: 20px; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.division-detail-image:hover img { transform: scale(1.04); }
.division-detail-badge { position: absolute; bottom: 20px; right: 20px; width: 56px; height: 56px; background: var(--primary-orange); border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(244, 121, 32, 0.4); }
.division-detail-badge i { font-size: 26px; color: #fff; }
.division-detail-tag { display: inline-block; font-size: 13px; font-weight: 600; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.division-detail-content h2 { font-size: 38px; font-weight: 700; color: #1a1a2e; line-height: 1.25; margin-bottom: 20px; }
.division-detail-content h2 span { color: var(--primary-orange); }
.division-detail-content > p { font-size: 15px; color: #6b7280; line-height: 1.85; margin-bottom: 28px; }
.division-detail-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.division-detail-item { display: flex; align-items: center; gap: 12px; }
.division-detail-item i { font-size: 18px; color: var(--primary-orange); flex-shrink: 0; }
.division-detail-item span { font-size: 15px; color: #374151; font-weight: 500; }
.division-detail-stats { display: flex; gap: 36px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.dd-stat { display: flex; flex-direction: column; gap: 4px; }
.dd-stat strong { font-size: 28px; font-weight: 700; color: var(--primary-orange); line-height: 1; }
.dd-stat span { font-size: 13px; color: #9ca3af; font-weight: 500; }

.division-cta { padding: 100px 0; background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; position: relative; overflow: hidden; }
.division-cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(244, 121, 32, 0.85) 100%); }
.division-cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.division-cta-tag { display: inline-block; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.division-cta-content h2 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 20px; }
.division-cta-content h2 span { color: var(--primary-orange); }
.division-cta-content > p { font-size: 16px; color: rgba(255, 255, 255, 0.75); line-height: 1.8; margin-bottom: 36px; }
.division-cta-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.btn-outline-light { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; background: transparent; color: #fff; font-size: 16px; font-weight: 600; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 50px; transition: all 0.3s ease; }
.btn-outline-light:hover { background: #fff; color: #1a1a2e; border-color: #fff; transform: translateY(-3px); }

@media screen and (max-width: 1200px) { .division-hero-title { font-size: 44px; } .division-overview-header h2 { font-size: 36px; } .division-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } .division-detail-row { gap: 50px; } .division-detail-content h2 { font-size: 32px; } }
@media screen and (max-width: 992px) { .division-hero { padding: 110px 0 44px; } .division-hero-title { font-size: 38px; } .division-overview { padding: 80px 0; } .division-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .division-overview-header h2 { font-size: 32px; } .division-detail { padding: 80px 0; } .division-detail-row, .division-detail-row.row-reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; } .division-detail-image img { height: 380px; } .division-detail-content h2 { font-size: 30px; } .division-cta-content h2 { font-size: 34px; } }
@media screen and (max-width: 768px) { .division-hero { padding: 100px 0 36px; } .division-hero-title { font-size: 32px; } .division-hero-desc { font-size: 14px; margin-bottom: 22px; } .division-hero-stats { gap: 16px; padding: 12px 20px; } .division-hero-stat strong { font-size: 20px; } .division-overview { padding: 60px 0; } .division-overview-header h2 { font-size: 28px; } .division-overview-header { margin-bottom: 40px; } .division-card { padding: 28px 24px 26px; } .division-card h3 { font-size: 18px; } .division-detail { padding: 60px 0; } .division-detail-image img { height: 300px; } .division-detail-content h2 { font-size: 26px; } .division-detail-stats { gap: 24px; } .dd-stat strong { font-size: 24px; } .division-cta { padding: 70px 0; } .division-cta-content h2 { font-size: 28px; } .division-cta-buttons { flex-direction: column; align-items: center; } .btn-primary, .btn-outline-light { width: 100%; max-width: 280px; justify-content: center; } }
@media screen and (max-width: 576px) { .division-hero { padding: 90px 0 30px; } .division-hero-title { font-size: 28px; } .division-hero-tag { font-size: 11px; padding: 6px 16px; } .division-hero-stats { flex-wrap: wrap; gap: 12px; } .division-hero-stat-divider { display: none; } }
@media screen and (max-width: 576px) { .division-cards-grid { grid-template-columns: 1fr; } .division-overview-header h2 { font-size: 24px; } .division-detail-content h2 { font-size: 24px; } .division-detail-image img { height: 250px; } .division-detail-stats { flex-wrap: wrap; gap: 20px; } .dd-stat { min-width: 80px; } .division-cta-content h2 { font-size: 24px; } }

/* ============================================
   DEALERSHIP PAGE STYLES
   ============================================ */

/* --- Hero Banner (MODIFIED: padding-based height, no divider, no stats) --- */
.dealer-hero {
    position: relative;
    padding: 120px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dealer-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.dealer-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.dealer-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(244, 121, 32, 0.3) 100%); z-index: 1; }
.dealer-hero-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.dealer-hero .container { position: relative; z-index: 3; }

.dealer-hero-content { text-align: center; }

.dealer-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 22px; background: rgba(244, 121, 32, 0.15); border: 1px solid rgba(244, 121, 32, 0.3); border-radius: 50px; color: var(--primary-orange); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.dealer-hero-tag i { font-size: 16px; }

.dealer-hero-title { margin-bottom: 16px; }
.dealer-hero-title .title-line { display: block; font-size: 52px; font-weight: 800; line-height: 1.1; color: #fff; letter-spacing: -1px; }
.dealer-hero-title .title-accent { color: var(--primary-orange); }

.dealer-hero-desc { max-width: 600px; margin: 0 auto 28px; font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, 0.7); font-weight: 300; }
.dealer-hero-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }

/* Scroll Indicator */
.dealer-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3; }
.dealer-scroll-indicator span { font-size: 11px; color: rgba(255, 255, 255, 0.4); letter-spacing: 2px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(244, 121, 32, 0.8), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.6); } }

/* --- Why Partner Section --- */
/* Dealer Intro - Compact */
.dealer-intro { padding: 70px 0 60px; }
@media screen and (max-width: 992px) { .dealer-intro { padding: 50px 0 40px; } }

.why-partner { padding: 100px 0; background: #fff; }
.why-partner-header { text-align: center; margin-bottom: 60px; }
.why-partner-header h2 { font-size: 42px; font-weight: 800; color: #1a1a2e; margin: 14px 0 18px; }
.why-partner-header h2 span { color: var(--primary-orange); }
.why-partner-header p { max-width: 600px; margin: 0 auto; font-size: 16px; color: #666; line-height: 1.7; }

.why-partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { position: relative; padding: 36px 30px; background: #fff; border: 1px solid #eee; border-radius: 16px; transition: all 0.4s ease; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--primary-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.why-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(244, 121, 32, 0.08); border-radius: 14px; margin-bottom: 20px; transition: all 0.4s ease; }
.why-card-icon i { font-size: 28px; color: var(--primary-orange); transition: all 0.4s ease; }
.why-card:hover .why-card-icon { background: var(--primary-orange); }
.why-card:hover .why-card-icon i { color: #fff; }
.why-card-content h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.why-card-content p { font-size: 14px; color: #666; line-height: 1.7; }
.why-card-number { position: absolute; top: 20px; right: 24px; font-size: 48px; font-weight: 900; color: rgba(244, 121, 32, 0.06); line-height: 1; }

/* --- Business Models Section --- */
/* --- Process / How It Works --- */
.dealer-process { padding: 100px 0; background: var(--light-gray); }
.dealer-process-header { text-align: center; margin-bottom: 70px; }
.dealer-process-header h2 { font-size: 42px; font-weight: 800; color: #1a1a2e; margin: 14px 0 18px; }
.dealer-process-header h2 span { color: var(--primary-orange); }
.dealer-process-header p { max-width: 520px; margin: 0 auto; font-size: 16px; color: #666; line-height: 1.7; }

.process-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-line { position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--primary-orange), rgba(244, 121, 32, 0.2)); z-index: 0; }
.process-step { position: relative; text-align: center; z-index: 1; padding: 0 16px; }
.process-dot { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: #fff; border: 3px solid var(--primary-orange); border-radius: 50%; margin: 0 auto 24px; transition: all 0.4s ease; }
.process-dot span { font-size: 22px; font-weight: 800; color: var(--primary-orange); transition: all 0.4s ease; }
.process-step:hover .process-dot { background: var(--primary-orange); transform: scale(1.1); box-shadow: 0 8px 30px rgba(244, 121, 32, 0.35); }
.process-step:hover .process-dot span { color: #fff; }
.process-content h4 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.process-content p { font-size: 13px; color: #666; line-height: 1.6; }

/* --- Form Section --- */
.dealer-form-section { padding: 100px 0; background: var(--light-gray); }
.dealer-form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.dealer-form-info h2 { font-size: 38px; font-weight: 800; color: #1a1a2e; margin: 14px 0 16px; line-height: 1.25; }
.dealer-form-info h2 span { color: var(--primary-orange); }
.dealer-form-info > p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 36px; }
.dealer-form-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.dff-item { display: flex; align-items: center; gap: 16px; }
.dff-icon { width: 48px; height: 48px; min-width: 48px; display: flex; align-items: center; justify-content: center; background: rgba(244, 121, 32, 0.08); border-radius: 12px; }
.dff-icon i { font-size: 22px; color: var(--primary-orange); }
.dff-item strong { display: block; font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.dff-item span { font-size: 13px; color: #888; }
.dealer-form-contact { display: flex; flex-direction: column; gap: 10px; }
.dealer-form-contact a { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #1a1a2e; transition: color 0.3s ease; }
.dealer-form-contact a i { color: var(--primary-orange); font-size: 18px; }
.dealer-form-contact a:hover { color: var(--primary-orange); }

.dealer-form-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); overflow: hidden; }
.dealer-form-card-header { padding: 28px 36px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.dealer-form-card-header h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dealer-form-card-header p { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.dealer-form-body { padding: 32px 36px 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--light-gray); border: 1.5px solid #e8e8e8; border-radius: 10px; font-size: 14px; font-family: 'Poppins', sans-serif; color: #333; transition: all 0.3s ease; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-orange); background: #fff; box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.08); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-full { margin-bottom: 20px; }
.form-full label { display: block; font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; }
.form-full textarea { width: 100%; resize: vertical; min-height: 120px; }
.form-group.form-full { grid-column: 1 / -1; margin-bottom: 20px; }
.dealer-submit-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; background: var(--primary-orange); color: #fff; font-size: 16px; font-weight: 600; font-family: 'Poppins', sans-serif; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; width: 100%; justify-content: center; }
.dealer-submit-btn:hover { background: #e06810; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(244, 121, 32, 0.35); }
.dealer-submit-btn i { font-size: 18px; }

/* ============================================
   DEALERSHIP PAGE RESPONSIVE
   ============================================ */
@media screen and (max-width: 1200px) {
    .dealer-hero { padding: 115px 0 46px; }
    .dealer-hero-title .title-line { font-size: 44px; }
    .why-partner-header h2, .dealer-process-header h2, .dealer-form-info h2 { font-size: 36px; }
}

@media screen and (max-width: 992px) {
    .dealer-hero { padding: 110px 0 42px; }
    .dealer-hero-title .title-line { font-size: 38px; }
    .dealer-hero-desc { font-size: 15px; }
    .why-partner-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .process-line { display: none; }
    .dealer-form-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .dealer-form-info h2 { font-size: 32px; }
    .why-partner-header h2, .dealer-process-header h2 { font-size: 32px; }
}

@media screen and (max-width: 768px) {
    .dealer-hero { padding: 100px 0 36px; }
    .dealer-hero-title .title-line { font-size: 32px; }
    .dealer-hero-actions { flex-direction: column; }
    .why-partner-header h2, .dealer-process-header h2, .dealer-form-info h2 { font-size: 28px; }
    .why-partner-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .dealer-form-body { padding: 24px 20px 28px; }
    .dealer-form-card-header { padding: 22px 20px; }
}

@media screen and (max-width: 576px) {
    .dealer-hero { padding: 90px 0 30px; }
    .dealer-hero-title .title-line { font-size: 28px; }
    .dealer-hero-tag { font-size: 11px; padding: 6px 16px; }
    .dealer-hero-desc { font-size: 14px; }
    .process-timeline { grid-template-columns: 1fr; gap: 32px; }
    .process-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
    .process-dot { min-width: 52px; width: 52px; height: 52px; margin: 0; }
    .process-content h4 { font-size: 16px; }
}

/* ============================================
   CAREER PAGE STYLES
   ============================================ */

/* --- Career Hero --- */
.career-hero {
    position: relative;
    padding: 120px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.career-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); }
.career-hero-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(244, 121, 32, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 60% 80%, rgba(244, 121, 32, 0.05) 0%, transparent 50%); }
.career-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(244, 121, 32, 0.2) 100%); z-index: 1; }
.career-hero-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.career-hero .container { position: relative; z-index: 3; }
.career-hero-content { text-align: center; }
.career-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 22px; background: rgba(244, 121, 32, 0.15); border: 1px solid rgba(244, 121, 32, 0.3); border-radius: 50px; color: var(--primary-orange); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.career-hero-tag i { font-size: 16px; }
.career-hero-title { margin-bottom: 16px; }
.career-hero-title .title-line { display: block; font-size: 52px; font-weight: 800; line-height: 1.1; color: #fff; letter-spacing: -1px; }
.career-hero-title .title-accent { color: var(--primary-orange); }
.career-hero-desc { max-width: 600px; margin: 0 auto 28px; font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, 0.7); font-weight: 300; }
.career-hero-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }

/* --- Why Join Section --- */
.career-why { padding: 80px 0; background: #fff; }
.career-why-header { text-align: center; margin-bottom: 50px; }
.career-why-header h2 { font-size: 38px; font-weight: 800; color: #1a1a2e; margin: 14px 0 12px; }
.career-why-header h2 span { color: var(--primary-orange); }
.career-why-header > p { max-width: 600px; margin: 0 auto; font-size: 15px; color: #666; line-height: 1.7; }

.career-perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.career-perk-card { background: var(--light-gray); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; border: 1px solid transparent; }
.career-perk-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: rgba(244, 121, 32, 0.2); }
.career-perk-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, rgba(244, 121, 32, 0.1), rgba(244, 121, 32, 0.05)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.career-perk-icon i { font-size: 26px; color: var(--primary-orange); }
.career-perk-card h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.career-perk-card p { font-size: 13.5px; color: #666; line-height: 1.6; }

/* --- Career Form Section --- */
.career-form-section { padding: 100px 0; background: var(--light-gray); }

/* --- Career Page Responsive --- */
@media screen and (max-width: 1200px) {
    .career-hero { padding: 115px 0 46px; }
    .career-hero-title .title-line { font-size: 44px; }
    .career-why-header h2 { font-size: 36px; }
}
@media screen and (max-width: 992px) {
    .career-hero { padding: 110px 0 42px; }
    .career-hero-title .title-line { font-size: 38px; }
    .career-hero-desc { font-size: 15px; }
    .career-perks-grid { grid-template-columns: repeat(2, 1fr); }
    .career-why-header h2 { font-size: 32px; }
}
@media screen and (max-width: 768px) {
    .career-hero { padding: 100px 0 36px; }
    .career-hero-title .title-line { font-size: 32px; }
    .career-hero-actions { flex-direction: column; }
    .career-why-header h2 { font-size: 28px; }
    .career-perks-grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 576px) {
    .career-hero { padding: 90px 0 30px; }
    .career-hero-title .title-line { font-size: 28px; }
    .career-hero-tag { font-size: 11px; padding: 6px 16px; }
    .career-hero-desc { font-size: 14px; }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* --- Products Hero Banner --- */
.products-hero {
    position: relative;
    padding: 120px 0 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.products-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.products-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(26,26,46,0.93) 0%, rgba(22,33,62,0.88) 50%, rgba(244,121,32,0.25) 100%);
    z-index: 1;
}

.products-hero-grid {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.products-hero .container {
    position: relative;
    z-index: 3;
}

.products-hero-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.products-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: rgba(244,121,32,0.15);
    border: 1px solid rgba(244,121,32,0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.products-hero-tag i { font-size: 16px; }

.products-hero-title {
    margin-bottom: 14px;
}

.products-hero-title .title-line {
    display: block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.products-hero-title .title-accent {
    color: var(--primary-orange);
}

.products-hero-desc {
    max-width: 620px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Hero Search Bar */
.products-hero-search {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 6px 6px 6px 20px;
}

.products-hero-search form {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.products-hero-search form > i {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.products-hero-search input {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    padding: 12px 0;
}

.products-hero-search input::placeholder {
    color: rgba(255,255,255,0.45);
}

.hero-search-btn {
    padding: 12px 28px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-search-btn:hover {
    background: #e06810;
    box-shadow: 0 6px 20px rgba(244,121,32,0.4);
}

/* Hero Search Wrapper for live results */
.hero-search-wrapper {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.hero-search-wrapper .products-hero-search {
    margin: 0;
}

/* Live Search Dropdown */
.live-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    z-index: 100;
    max-height: 380px;
    overflow-y: auto;
    padding: 8px;
}

.live-search-results.active {
    display: block;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.live-search-item:hover {
    background: #f5f5f5;
}

.live-search-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: #f9f9f9;
    flex-shrink: 0;
}

.live-search-info {
    flex: 1;
    min-width: 0;
}

.live-search-brand {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-search-molecule {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-search-meta {
    font-size: 11px;
    color: var(--primary-orange);
    font-weight: 500;
}

.live-search-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.live-search-viewall {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-top: 1px solid #eee;
    margin-top: 4px;
    border-radius: 0 0 10px 10px;
}

.live-search-viewall:hover {
    background: #fff5ee;
}

/* --- Product Stats Bar --- */
.product-stats-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
}

.ps-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 0;
}

.ps-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
}

.ps-bar-item i {
    font-size: 28px;
    color: var(--primary-orange);
}

.ps-bar-item strong {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.ps-bar-item span {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.ps-bar-divider {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
}

/* --- Products Listing Layout --- */
.products-listing-section {
    padding: 50px 0 100px;
    background: #f8f9fa;
}

.products-listing-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 32px;
    align-items: start;
}

/* --- Filter Sidebar --- */
/* --- Product Form Filter Sidebar --- */
.filter-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.filter-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-form-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-form-list {
    display: flex;
    flex-direction: column;
}

.filter-form-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 22px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.filter-form-item:last-child {
    border-bottom: none;
}

.filter-form-item:hover {
    color: #1a1a2e;
    background: #fafafa;
}

.filter-form-item input[type="checkbox"] {
    display: none;
}

.filter-form-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.filter-form-icon img {
    display: none;
}

.filter-form-item input[type="checkbox"]:checked ~ .filter-form-icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.filter-form-item input[type="checkbox"]:checked ~ .filter-form-icon::after {
    content: '\eb7b';
    font-family: 'remixicon';
    font-size: 12px;
    color: #fff;
    line-height: 1;
}

.filter-form-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.filter-form-item:hover .filter-form-name {
    color: #1a1a2e;
}

.filter-form-item input[type="checkbox"]:checked ~ .filter-form-name {
    color: #1a1a2e;
    font-weight: 600;
}
.filter-form-count { font-size: 12px; color: #999; margin-left: auto; }
.filter-form-item input[type="checkbox"]:checked ~ .filter-form-count { color: var(--primary-orange, #e8734a); font-weight: 600; }

/* --- Products Toolbar --- */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #fff;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    flex-wrap: wrap;
    gap: 14px;
}

.products-toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.products-result-count {
    font-size: 13px;
    color: #888;
}

.products-result-count strong {
    color: #1a1a2e;
}

.products-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-sort label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
}

.products-sort select {
    padding: 8px 32px 8px 12px;
    background: #f8f9fa;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.products-sort select:focus {
    border-color: var(--primary-orange);
}

.products-view-toggle {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.view-btn.active {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 2px 8px rgba(244,121,32,0.3);
}

.view-btn:not(.active):hover {
    color: #666;
    background: #e5e7eb;
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(244,121,32,0.08);
    border: 1px solid rgba(244,121,32,0.2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-orange);
    cursor: pointer;
    transition: all 0.25s ease;
}

.active-filter-tag:hover {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
}

.active-filter-tag i {
    font-size: 14px;
}

/* --- Medicine Product Cards --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.med-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    color: inherit;
}

.med-card:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.med-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 0;
}

.med-division-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(244,121,32,0.1);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.med-division-badge.badge-cardio { background: rgba(59,130,246,0.1); color: #3b82f6; }
.med-division-badge.badge-gastro { background: rgba(16,185,129,0.1); color: #10b981; }
.med-division-badge.badge-derma { background: rgba(236,72,153,0.1); color: #ec4899; }
.med-division-badge.badge-gynae { background: rgba(168,85,247,0.1); color: #a855f7; }
.med-division-badge.badge-critical { background: rgba(239,68,68,0.1); color: #ef4444; }
.med-division-badge.badge-neuro { background: rgba(99,102,241,0.1); color: #6366f1; }
.med-division-badge.badge-nutra { background: rgba(34,197,94,0.1); color: #22c55e; }

.med-form-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.med-form-tag i { font-size: 14px; }

.med-card-body {
    padding: 16px 18px 0;
    flex: 1;
}

.med-brand {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.med-card:hover .med-brand {
    color: var(--primary-orange);
}

.med-molecule {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 500;
}

.med-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.med-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.med-meta i {
    font-size: 14px;
    color: #ccc;
}

.med-card-footer {
    padding: 14px 18px 16px;
    margin-top: 14px;
    border-top: 1px solid #f5f5f5;
}

.med-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    transition: gap 0.3s ease;
}

.med-card:hover .med-view-link {
    gap: 10px;
}

.med-view-link i {
    font-size: 15px;
}

/* --- Pagination --- */
.products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #555;
    cursor: pointer;
    transition: all 0.25s ease;
}

.page-btn:hover:not(.disabled):not(.active) {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(244,121,32,0.04);
}

.page-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(244,121,32,0.3);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-btn i { font-size: 18px; }

.page-dots {
    font-size: 14px;
    color: #999;
    padding: 0 4px;
    letter-spacing: 2px;
}

/* --- List View --- */
.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 14px;
}

.products-grid.list-view .med-card {
    flex-direction: row;
    align-items: center;
}

.products-grid.list-view .med-card-img {
    width: 180px;
    min-width: 180px;
    height: 120px;
    border-radius: 14px 0 0 14px;
}

.products-grid.list-view .med-card-body {
    flex: 1;
    padding: 16px 20px;
}

.products-grid.list-view .med-card-footer {
    padding: 0 20px;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    align-self: stretch;
}

@media screen and (max-width: 768px) {
    .products-grid.list-view .med-card { flex-direction: column; }
    .products-grid.list-view .med-card-img { width: 100%; min-width: 100%; height: 160px; border-radius: 14px 14px 0 0; }
    .products-grid.list-view .med-card-footer { border-left: none; border-top: 1px solid #f5f5f5; padding: 14px 18px 16px; }
}

/* --- Products Page Responsive --- */
@media screen and (max-width: 1200px) {
    .products-hero-title .title-line { font-size: 44px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-bar-item { padding: 0 28px; }
}

@media screen and (max-width: 992px) {
    .products-hero { padding: 110px 0 44px; }
    .products-hero-title .title-line { font-size: 38px; }
    .products-listing-layout { grid-template-columns: 1fr; }
    .filter-sidebar {
        position: fixed;
        top: 0; left: -320px;
        width: 310px;
        height: 100vh;
        z-index: 1001;
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.35s ease;
    }
    .filter-sidebar.open { left: 0; }
    .filter-toggle-btn { display: flex; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-bar-grid { flex-wrap: wrap; gap: 16px; }
    .ps-bar-divider { display: none; }
    .ps-bar-item { padding: 0 20px; }
}

@media screen and (max-width: 768px) {
    .products-hero-title .title-line { font-size: 32px; }
    .products-hero-desc { font-size: 14px; }
    .products-hero-search { padding: 12px; }
    .products-hero-search form { flex-direction: column; gap: 8px; }
    .products-hero-search form > i { display: none; }
    .products-hero-search input { width: 100%; text-align: center; }
    .hero-search-btn { width: 100%; text-align: center; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .med-brand { font-size: 16px; }
    .med-molecule { font-size: 12px; }
    .products-toolbar-right { flex-wrap: wrap; }
    .ps-bar-grid { justify-content: flex-start; }
}

@media screen and (max-width: 576px) {
    .products-hero { padding: 90px 0 30px; }
    .products-hero-title .title-line { font-size: 28px; }
    .products-grid { grid-template-columns: 1fr; }
    .med-card-body { padding: 14px 16px 0; }
    .med-card-header { padding: 12px 16px 0; }
    .ps-bar-item strong { font-size: 18px; }
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* --- Breadcrumb --- */
.pd-breadcrumb {
    padding: 110px 0 0;
    background: #f8f9fa;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 13px;
}

.breadcrumb-nav a {
    color: #888;
    font-weight: 500;
    transition: color 0.25s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-orange);
}

.breadcrumb-nav i {
    font-size: 14px;
    color: #ccc;
}

.breadcrumb-nav .current {
    color: var(--primary-orange);
    font-weight: 600;
}

/* --- Product Detail Hero --- */
.pd-hero {
    padding: 50px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.pd-hero-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Visual Card */
.pd-visual-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.pd-visual-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.pd-visual-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(244,121,32,0.04) 0%, transparent 70%);
}

.pd-visual-badge {
    margin-bottom: 30px;
}

.pd-badge-division {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(244,121,32,0.1);
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pd-visual-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pd-visual-icon svg {
    filter: drop-shadow(0 4px 12px rgba(244,121,32,0.15));
}

.pd-visual-rx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #999;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pd-visual-rx span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 6px;
}

/* Product Info */
.pd-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pd-tag-division,
.pd-tag-form,
.pd-tag-rx {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

.pd-tag-division {
    background: rgba(244,121,32,0.08);
    color: var(--primary-orange);
    border-color: rgba(244,121,32,0.2);
}

.pd-tag-form {
    background: rgba(59,130,246,0.06);
    color: #3b82f6;
    border-color: rgba(59,130,246,0.15);
}

.pd-tag-rx {
    background: rgba(107,114,128,0.06);
    color: #6b7280;
    border-color: rgba(107,114,128,0.15);
}

.pd-product-name {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.pd-generic-name {
    font-size: 16px;
    color: #888;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Key Info Grid */
.pd-key-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.pd-key-item {
    background: #f8f9fc;
    border: 1px solid #eef0f5;
    border-radius: 12px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.pd-key-item:hover {
    border-color: rgba(244,121,32,0.2);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.pd-key-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.pd-key-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

/* Composition & Specifications */
.pd-specs {
    background: #f8f9fc;
    border: 1px solid #e8eaf0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.pd-specs-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pd-specs-title i {
    color: #e8734a;
    font-size: 15px;
}
.pd-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pd-specs-list li {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    padding: 3px 0;
    border-bottom: 1px dashed #e0e2e8;
}
.pd-specs-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.pd-spec-label {
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

/* Actions */
.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pd-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pd-action-primary {
    background: var(--primary-orange);
    color: #fff;
}

.pd-action-primary:hover {
    background: #e06810;
    box-shadow: 0 8px 25px rgba(244,121,32,0.35);
    transform: translateY(-2px);
}

.pd-action-outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e5e7eb;
}

.pd-action-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* --- Composition Section --- */
.pd-composition {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.pd-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pd-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(244,121,32,0.08);
    border: 1px solid rgba(244,121,32,0.15);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pd-section-tag i { font-size: 16px; }

.pd-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.pd-section-header h2 span {
    color: var(--primary-orange);
}

.pd-section-header p {
    font-size: 16px;
    color: #888;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Composition Wrapper */
.pd-comp-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.pd-comp-full {
    width: 100%;
}

/* Table Card */
.pd-table-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pd-table-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.pd-table-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-table-header h3 i {
    color: var(--primary-orange);
    font-size: 20px;
}

.pd-table-responsive {
    overflow-x: auto;
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
}

.pd-table thead th {
    padding: 14px 18px;
    background: #f8f9fa;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    border-bottom: 2px solid #eee;
    white-space: nowrap;
}

.pd-table tbody td {
    padding: 14px 18px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    vertical-align: middle;
}

.pd-table tbody tr:last-child td {
    border-bottom: none;
}

.pd-table tbody tr:hover {
    background: rgba(244,121,32,0.02);
}

.pd-table tbody tr.active-ingredient {
    background: rgba(244,121,32,0.04);
}

.pd-table tbody tr.active-ingredient td {
    color: #1a1a2e;
}

/* Ingredient Badges */
.ingredient-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-active {
    background: rgba(244,121,32,0.1);
    color: var(--primary-orange);
}

.badge-excipient {
    background: rgba(59,130,246,0.08);
    color: #3b82f6;
}

.badge-coating {
    background: rgba(16,185,129,0.08);
    color: #10b981;
}

/* --- Certifications Section --- */
.pd-certifications {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.pd-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* --- Related Products --- */
.pd-related {
    padding: 80px 0;
    background: #fff;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* --- Product Detail Responsive --- */
@media screen and (max-width: 1200px) {
    .pd-hero-layout { grid-template-columns: 340px 1fr; gap: 36px; }
    .pd-product-name { font-size: 36px; }
    .pd-certs-grid { grid-template-columns: repeat(3, 1fr); }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 992px) {
    .pd-hero-layout { grid-template-columns: 1fr; gap: 30px; }
    .pd-visual-card { max-width: 400px; margin: 0 auto; }
    .pd-product-name { font-size: 32px; }
    .pd-section-header h2 { font-size: 32px; }
    .pd-certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
    .pd-breadcrumb { padding: 90px 0 0; }
    .pd-hero { padding: 30px 0 50px; }
    .pd-product-name { font-size: 28px; }
    .pd-key-info { grid-template-columns: 1fr; }
    .pd-section-header h2 { font-size: 26px; }
    .pd-certs-grid { grid-template-columns: 1fr 1fr; }
    .pd-composition, .pd-certifications, .pd-related { padding: 50px 0; }
}

@media screen and (max-width: 576px) {
    .pd-product-name { font-size: 24px; }
    .pd-generic-name { font-size: 14px; }
    .pd-actions { flex-direction: column; }
    .pd-action-btn { justify-content: center; }
    .pd-certs-grid { grid-template-columns: 1fr; }
    .pd-section-header h2 { font-size: 22px; }
    .pd-table thead th, .pd-table tbody td { padding: 10px 12px; font-size: 12px; }
    .pd-related-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MEDICINE SVG IMAGE IN PRODUCT CARDS
   ============================================ */

.med-card-img { position: relative; width: 100%; height: 180px; overflow: hidden; border-radius: 14px 14px 0 0; background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f8 100%); display: flex; align-items: center; justify-content: center; padding: 12px; }
.med-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.med-card:hover .med-card-img img { transform: scale(1.06); }
.med-card-img .med-division-badge { position: absolute; top: 10px; left: 10px; z-index: 2; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background: rgba(244,121,32,0.9); color: #fff; }
.med-card-img .med-division-badge.badge-cardio { background: rgba(59,130,246,0.9); }
.med-card-img .med-division-badge.badge-gastro { background: rgba(16,185,129,0.9); }
.med-card-img .med-division-badge.badge-derma { background: rgba(236,72,153,0.9); }
.med-card-img .med-division-badge.badge-gynae { background: rgba(168,85,247,0.9); }
.med-card-img .med-division-badge.badge-critical { background: rgba(239,68,68,0.9); }
.med-card-img .med-division-badge.badge-neuro { background: rgba(99,102,241,0.9); }
.med-card-img .med-division-badge.badge-nutra { background: rgba(34,197,94,0.9); }
.med-card-body .med-form-tag { margin-bottom: 6px; }

/* Product Detail - Single Image */
.pd-visual-image { margin-bottom: 24px; position: relative; z-index: 1; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f8 100%); padding: 24px; display: flex; align-items: center; justify-content: center; }
.pd-visual-image img { width: 100%; max-height: 280px; object-fit: contain; display: block; transition: transform 0.5s ease; }
.pd-visual-card:hover .pd-visual-image img { transform: scale(1.04); }

/* ============================================
   CERTIFICATE CARD STYLES (PDF link)
   ============================================ */

.pd-cert-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border-radius: 18px; border: 1px solid #eef0f5; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); text-decoration: none; color: inherit; cursor: pointer; overflow: hidden; position: relative; }
.pd-cert-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #e5e7eb; transition: background 0.3s ease; z-index: 2; }
.pd-cert-card:hover::before { background: var(--primary-orange); }
.pd-cert-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: transparent; }

.pd-cert-img { position: relative; width: 100%; height: 180px; overflow: hidden; background: #fafbfc; }
.pd-cert-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.pd-cert-card:hover .pd-cert-img img { transform: scale(1.05); }
.pd-cert-img-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26,26,46,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.pd-cert-card:hover .pd-cert-img-overlay { opacity: 1; }
.pd-cert-img-overlay i { font-size: 32px; color: #fff; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(244,121,32,0.85); border-radius: 50%; backdrop-filter: blur(4px); }

.pd-cert-info { padding: 20px 18px; }
.pd-cert-info h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.pd-cert-info p { font-size: 12px; color: #999; line-height: 1.5; margin-bottom: 10px; }
.pd-cert-status { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #22c55e; margin-bottom: 12px; }
.pd-cert-status i { font-size: 13px; }

.pd-cert-view { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #f47920; padding: 6px 16px; border-radius: 50px; background: rgba(244,121,32,0.08); transition: all 0.3s ease; }
.pd-cert-card:hover .pd-cert-view { background: #f47920; color: #fff; }
.pd-cert-view i { font-size: 15px; }

/* Responsive */
@media screen and (max-width: 768px) {
    .med-card-img { height: 150px; padding: 10px; }
    .pd-visual-image { padding: 16px; }
    .pd-visual-image img { max-height: 220px; }
    .pd-cert-card { }
    .pd-cert-img { height: 140px; }
}
@media screen and (max-width: 576px) {
    .med-card-img { height: 160px; }
    .pd-visual-image img { max-height: 200px; }
}

/* ============================================
   CONTACT US PAGE
   ============================================ */

/* Hero */
.contact-hero { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; padding: 140px 0 80px; }
.contact-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.contact-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(26,26,46,0.92) 0%, rgba(22,33,62,0.85) 50%, rgba(244,121,32,0.3) 100%); z-index: 1; }
.contact-hero-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.contact-hero .container { position: relative; z-index: 3; }
.contact-hero-content { text-align: center; max-width: 700px; margin: 0 auto; }
.contact-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 28px; background: rgba(244,121,32,0.15); border: 1px solid rgba(244,121,32,0.3); border-radius: 50px; color: var(--primary-orange); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 30px; }
.contact-hero-tag i { font-size: 18px; }
.contact-hero-title { margin-bottom: 20px; }
.contact-hero-title .title-line { display: block; font-size: 64px; font-weight: 800; line-height: 1.1; color: #fff; letter-spacing: -1px; }
.contact-hero-title .title-accent { color: var(--primary-orange); }
.contact-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* Quick Contact Cards */
.contact-cards-section { padding: 80px 0; background: var(--light-gray); margin-top: -40px; position: relative; z-index: 4; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: #fff; border-radius: 18px; padding: 32px 28px; text-align: center; border: 1px solid #eef0f5; transition: all 0.4s ease; position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-orange), #ff9f43); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: transparent; }
.contact-card:hover::before { transform: scaleX(1); }
.contact-card-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; background: linear-gradient(135deg, rgba(244,121,32,0.1), rgba(244,121,32,0.05)); color: var(--primary-orange); font-size: 28px; transition: all 0.4s ease; }
.contact-card:hover .contact-card-icon { background: var(--primary-orange); color: #fff; transform: scale(1.08); }
.contact-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.contact-card > p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 18px; min-height: 40px; }
.contact-card-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.contact-card-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #1a1a2e; transition: color 0.3s; text-decoration: none; justify-content: center; }
.contact-card-links a i { color: var(--primary-orange); font-size: 16px; }
.contact-card-links a:hover { color: var(--primary-orange); }
.contact-card-avail { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #aaa; font-weight: 500; }
.contact-card-avail i { font-size: 14px; }

/* Contact Form Section */
.contact-form-section { padding: 100px 0; background: #fff; }
.contact-form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-info h2 { font-size: 38px; font-weight: 800; color: #1a1a2e; margin: 14px 0 16px; line-height: 1.25; }
.contact-form-info h2 span { color: var(--primary-orange); }
.contact-form-info > p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 36px; }

/* Department Contacts */
.contact-departments { margin-bottom: 36px; }
.contact-departments > h4 { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f4; }
.contact-departments > h4 i { color: var(--primary-orange); font-size: 20px; }
.contact-dept-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f5f5f8; transition: all 0.3s ease; }
.contact-dept-item:last-child { border-bottom: none; }
.contact-dept-item:hover { padding-left: 6px; }
.contact-dept-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(244,121,32,0.08); color: var(--primary-orange); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-dept-item strong { display: block; font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.contact-dept-item span { display: block; font-size: 12px; color: #999; margin-bottom: 4px; }
.contact-dept-item a { font-size: 13px; font-weight: 600; color: var(--primary-orange); text-decoration: none; transition: color 0.3s; }
.contact-dept-item a:hover { color: #d06010; }

/* Social Links */
.contact-social-row h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.contact-social-links { display: flex; gap: 10px; }
.contact-social-btn { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--light-gray); color: #666; font-size: 18px; transition: all 0.3s ease; text-decoration: none; }
.contact-social-btn:hover { background: var(--primary-orange); color: #fff; transform: translateY(-3px); }

/* Form Card - extends dealer form styles */
.contact-form-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); overflow: hidden; }
.form-consent { margin-bottom: 20px; }
.consent-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #888; line-height: 1.5; cursor: pointer; }
.consent-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary-orange); flex-shrink: 0; cursor: pointer; }
.consent-label a { color: var(--primary-orange); text-decoration: none; font-weight: 600; }
.form-submit-btn { width: 100%; padding: 14px 28px; background: linear-gradient(135deg, var(--primary-orange), #e06810); color: #fff; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; font-family: 'Poppins', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.4s ease; }
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,121,32,0.35); }
.form-submit-btn i { font-size: 18px; }

/* Office Locations */
.contact-offices { padding: 100px 0; background: var(--light-gray); }
.contact-offices-header { text-align: center; margin-bottom: 50px; }
.contact-offices-header h2 { font-size: 38px; font-weight: 800; color: #1a1a2e; margin: 14px 0 16px; line-height: 1.25; }
.contact-offices-header h2 span { color: var(--primary-orange); }
.contact-offices-header p { font-size: 15px; color: #888; max-width: 560px; margin: 0 auto; }
.contact-offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.contact-office-card { background: #fff; border-radius: 18px; padding: 30px 26px; border: 1px solid #eef0f5; transition: all 0.4s ease; position: relative; }
.contact-office-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: transparent; }
.contact-office-badge { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: rgba(244,121,32,0.1); color: var(--primary-orange); margin-bottom: 16px; }
.contact-office-badge.badge-mfg { background: rgba(16,185,129,0.1); color: #10b981; }
.contact-office-badge.badge-regional { background: rgba(59,130,246,0.1); color: #3b82f6; }
.contact-office-badge.badge-intl { background: rgba(168,85,247,0.1); color: #a855f7; }
.contact-office-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(244,121,32,0.1), rgba(244,121,32,0.04)); color: var(--primary-orange); font-size: 24px; margin-bottom: 16px; }
.contact-office-icon.icon-mfg { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04)); color: #10b981; }
.contact-office-icon.icon-regional { background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.04)); color: #3b82f6; }
.contact-office-icon.icon-intl { background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(168,85,247,0.04)); color: #a855f7; }
.contact-office-card h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
.contact-office-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.contact-office-details p { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #666; line-height: 1.5; }
.contact-office-details p i { color: var(--primary-orange); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-office-map-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary-orange); text-decoration: none; padding: 8px 18px; border-radius: 50px; background: rgba(244,121,32,0.06); transition: all 0.3s ease; }
.contact-office-map-btn:hover { background: var(--primary-orange); color: #fff; }

/* Google Map */
.contact-map-section { position: relative; }
.contact-map-wrapper { position: relative; }
.contact-map-wrapper iframe { display: block; width: 100%; height: 450px; filter: grayscale(30%); }
.contact-map-overlay-card { position: absolute; top: 30px; left: 50px; z-index: 5; }
.contact-map-card { background: #fff; border-radius: 16px; padding: 24px 28px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); max-width: 300px; }
.contact-map-logo { width: 120px; margin-bottom: 12px; }
.contact-map-card h4 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.contact-map-card p { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 14px; }
.contact-map-direction-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--primary-orange); color: #fff; font-size: 13px; font-weight: 700; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; }
.contact-map-direction-btn:hover { background: #d06810; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,121,32,0.3); }

/* FAQ */
.contact-faq { padding: 100px 0; background: #fff; }
.contact-faq-header { text-align: center; margin-bottom: 50px; }
.contact-faq-header h2 { font-size: 38px; font-weight: 800; color: #1a1a2e; margin: 14px 0 16px; }
.contact-faq-header h2 span { color: var(--primary-orange); }
.contact-faq-header p { font-size: 15px; color: #888; }
.contact-faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.contact-faq-item { background: var(--light-gray); border-radius: 14px; overflow: hidden; border: 1px solid #eef0f5; transition: all 0.3s ease; }
.contact-faq-item:hover { border-color: rgba(244,121,32,0.2); }
.contact-faq-item.open { background: #fff; border-color: rgba(244,121,32,0.3); box-shadow: 0 8px 30px rgba(244,121,32,0.08); }
.contact-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; transition: all 0.3s ease; }
.contact-faq-q span { font-size: 15px; font-weight: 600; color: #1a1a2e; line-height: 1.5; }
.contact-faq-q i { font-size: 22px; color: var(--primary-orange); flex-shrink: 0; transition: transform 0.4s ease; }
.contact-faq-item.open .contact-faq-q i { transform: rotate(45deg); }
.contact-faq-item.open .contact-faq-q span { color: var(--primary-orange); }
.contact-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.contact-faq-item.open .contact-faq-a { max-height: 300px; padding: 0 24px 20px; }
.contact-faq-a p { font-size: 14px; color: #666; line-height: 1.7; }
.contact-faq-a a { color: var(--primary-orange); font-weight: 600; text-decoration: none; }

/* CTA Banner */
.contact-cta { position: relative; padding: 80px 0; overflow: hidden; }
.contact-cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); z-index: 0; }
.contact-cta-bg::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(244,121,32,0.15) 0%, transparent 70%); border-radius: 50%; }
.contact-cta .container { position: relative; z-index: 1; }
.contact-cta-content { text-align: center; max-width: 650px; margin: 0 auto; }
.contact-cta-content h2 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.contact-cta-content h2 span { color: var(--primary-orange); }
.contact-cta-content p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.contact-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border: 2px solid rgba(255,255,255,0.25); border-radius: 50px; font-size: 15px; font-weight: 600; color: #fff; text-decoration: none; transition: all 0.3s ease; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ========== CONTACT PAGE RESPONSIVE ========== */
@media screen and (max-width: 1024px) {
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-offices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
    .contact-hero { min-height: 350px; padding: 120px 0 60px; }
    .contact-hero-title .title-line { font-size: 42px; }
    .contact-hero-desc { font-size: 15px; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-info h2, .contact-offices-header h2, .contact-faq-header h2, .contact-cta-content h2 { font-size: 30px; }
    .contact-offices-grid { grid-template-columns: 1fr; }
    .contact-map-wrapper iframe { height: 350px; }
    .contact-map-overlay-card { position: relative; top: 0; left: 0; padding: 20px; }
    .contact-map-card { max-width: 100%; box-shadow: none; border: 1px solid #eee; }
    .form-row { grid-template-columns: 1fr; }
}
@media screen and (max-width: 576px) {
    .contact-hero-title .title-line { font-size: 36px; }
    .contact-cta-btns { flex-direction: column; }
    .contact-cta-btns a { width: 100%; justify-content: center; }
}