*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { font-family: var(--font-body); font-size: var(--fs-body); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; background: var(--white); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--secondary); }
a { color: var(--primary-dark); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

/* TOP BAR */
.top-bar { background: var(--secondary-dark); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--primary); font-size: 0.75rem; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.top-bar-right a:hover { color: var(--primary); }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.lang-link { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem !important; letter-spacing: 0.5px; }
.lang-link.active { color: var(--primary) !important; }

/* HEADER / NAVBAR */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all 0.4s ease; }
.navbar { padding: 14px 0; background: transparent; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); box-shadow: 0 1px 15px rgba(0,0,0,0.06); padding: 8px 0; }
.navbar.scrolled + .top-bar, .navbar.scrolled ~ .top-bar { display: none; }
.navbar-brand img { height: 46px !important; width: auto !important; transition: var(--transition-base); }
.logo-light { display: block; }
.logo-dark { display: none; }
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark { display: block; }
.nav-link { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.3px; text-transform: uppercase; color: var(--white) !important; padding: 10px 14px !important; transition: var(--transition-base); }
.navbar.scrolled .nav-link { color: var(--secondary) !important; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.dropdown-toggle::after { font-size: 0.6rem; vertical-align: 0.15em; margin-left: 5px; }
.dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-radius: 8px; padding: 8px 0; margin-top: 0; min-width: 230px; animation: ddFade 0.2s ease; }
@media (min-width: 992px) { .nav-item.dropdown { position: relative; } .nav-item.dropdown .dropdown-menu { top: calc(100% - 2px) !important; margin-top: 0 !important; padding-top: 10px; border-top: 3px solid var(--primary); } }
@keyframes ddFade { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-item { padding: 9px 18px; font-weight: 500; font-size: 0.88rem; color: var(--text-dark); transition: all 0.2s ease; }
.dropdown-item i { color: var(--primary); opacity: 0.6; font-size: 0.85rem; }
.dropdown-item:hover { background: var(--off-white); color: var(--primary-dark); padding-left: 22px; }
.dropdown-item:hover i { opacity: 1; }

/* HERO SLIDER */
.hero-slider-section { position: relative; }
.hero-slide { min-height: 100vh; background-size: cover; background-position: center; position: relative; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.3) 100%); }
.hero-slide-content { color: #ffffff; padding-top: 40px; }
.hero-slide-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; color: #ffffff; text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.3); }
.hero-slide-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; color: #ffffff !important; text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.3); }
.hero-slide-content p { font-size: 1.05rem; color: rgba(255,255,255,0.95); max-width: 520px; line-height: 1.7; margin-bottom: 25px; }
.hero-slide-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-pagination .swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,0.5); opacity: 1; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--primary); width: 30px; border-radius: 6px; }
.hero-next, .hero-prev { color: var(--white) !important; }
.hero-next::after, .hero-prev::after { font-size: 1.2rem !important; }

/* ABOUT STRIP */
.about-strip { background: var(--primary); padding: 0; margin-top: -1px; }
.about-strip-item { display: flex; align-items: center; gap: 15px; padding: 22px 25px; color: var(--dark); border-right: 1px solid rgba(0,0,0,0.1); }
.about-strip-item:last-child { border-right: none; }
.about-strip-item i { font-size: 1.8rem; opacity: 0.85; }
.about-strip-item strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.about-strip-item span { font-size: 0.8rem; opacity: 0.85; }

/* OVERLINE TITLE */
.overline-title { display: inline-block; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }

/* SECTION TITLES */
.section-padding { padding: var(--section-padding) 0; }
.section-title { font-size: var(--fs-h2); position: relative; display: inline-block; margin-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 45px; height: 3px; background: var(--primary); border-radius: 2px; }
.section-subtitle { color: var(--text-muted); max-width: 580px; margin: 15px auto 0; }

/* ABOUT SECTION */
.about-image-grid { position: relative; padding-right: 30px; padding-bottom: 30px; }
.about-img-main { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 350px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 50%; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--white); }
.about-img-secondary img { width: 100%; height: 180px; object-fit: cover; }
.about-experience-badge { position: absolute; top: 20px; right: 0; background: var(--primary); color: var(--dark); padding: 18px 22px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-lg); }
.about-exp-number { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-exp-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; margin-top: 3px; }
.about-content .lead-text { font-size: 1.05rem; color: var(--text-dark); font-weight: 500; }
.about-feat { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--secondary); }
.about-feat i { color: var(--primary); font-size: 1.1rem; }

/* SERVICE CARDS V2 */
.service-card-v2 { display: block; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: all 0.35s ease; text-decoration: none; color: inherit; height: 100%; }
.service-card-v2:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); color: inherit; }
.svc-img { position: relative; height: 220px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card-v2:hover .svc-img img { transform: scale(1.08); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%); }
.svc-icon-float { position: absolute; bottom: -22px; left: 25px; width: 50px; height: 50px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(244,207,0,0.4); z-index: 2; }
.svc-icon-float i { color: var(--dark); font-size: 1.2rem; }
.svc-body { padding: 35px 25px 25px; }
.svc-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.svc-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }
.svc-more { color: var(--primary-dark); font-weight: 600; font-size: 0.85rem; transition: var(--transition-base); }
.service-card-v2:hover .svc-more { color: var(--primary); }

/* PRODUCT CARDS V2 */
.product-card-v2 { position: relative; border-radius: 12px; overflow: hidden; height: 320px; cursor: default; }
.product-card-v2.product-card-sm { height: 240px; }
.product-card-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card-v2:hover img { transform: scale(1.06); }
.product-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%); display: flex; align-items: flex-end; padding: 25px; }
.product-card-overlay h4 { color: var(--white); font-size: 1.15rem; font-weight: 700; margin: 0; }

/* STATS V2 */
.stats-section-v2 { position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.stats-v2-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(79,80,82,0.93) 0%, rgba(26,26,30,0.95) 100%); }
.stat-v2 { color: var(--white); padding: 20px 10px; }
.stat-v2-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.stat-v2 small { font-size: 1rem; font-weight: 600; opacity: 0.8; }
.stat-v2 p { font-size: 0.8rem; opacity: 0.7; margin-top: 5px; margin-bottom: 0; }

/* CTA V2 */
.cta-v2 { padding: 60px 0; background: var(--primary); }
.cta-v2-inner { background: none; }
.cta-v2-inner h3 { color: var(--dark); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.cta-v2-inner p { color: rgba(0,0,0,0.7); margin-bottom: 0; }
.cta-v2 .btn-light { color: var(--dark); font-weight: 700; }
.cta-v2 .btn-light:hover { background: var(--white); transform: translateY(-2px); }
.cta-v2 .btn-outline-light { border-color: rgba(0,0,0,0.35); color: var(--dark); }
.cta-v2 .btn-outline-light:hover { background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.5); color: var(--dark); }

/* REFERENCE */
.reference-item { background: var(--white); border-radius: 8px; padding: 20px; display: flex; align-items: center; justify-content: center; height: 80px; box-shadow: 0 1px 8px rgba(0,0,0,0.04); border: 1px solid var(--light-gray); }
.reference-item img { max-height: 38px; max-width: 100%; filter: grayscale(100%); opacity: 0.5; transition: var(--transition-base); }
.reference-item:hover img { filter: grayscale(0%); opacity: 1; }

/* BREADCRUMB */
.breadcrumb-section { position: relative; padding: 140px 0 50px; background-size: cover; background-position: center; min-height: 260px; display: flex; align-items: center; }
.breadcrumb-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(79,80,82,0.88) 0%, rgba(26,26,30,0.92) 100%); }
.breadcrumb-section .container { position: relative; z-index: 2; }
.breadcrumb-title { color: var(--white); font-size: 2rem; font-weight: 800; }
.breadcrumb-section .breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-section .breadcrumb-item, .breadcrumb-section .breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.breadcrumb-section .breadcrumb-item.active { color: var(--primary); }
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* SIDEBAR */
.sidebar-widget { background: var(--white); border-radius: 12px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); padding: 25px; }
.widget-title { font-size: 1rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.sidebar-menu { list-style: none; padding: 0; margin: 0; }
.sidebar-menu li { margin-bottom: 3px; }
.sidebar-menu li a { display: flex; align-items: center; padding: 10px 14px; border-radius: 8px; color: var(--text-dark); font-size: 0.9rem; transition: var(--transition-base); }
.sidebar-menu li a:hover, .sidebar-menu li.active a { background: var(--off-white); color: var(--primary-dark); }
.sidebar-menu li a i { margin-right: 8px; color: var(--primary); opacity: 0.6; }
.contact-info-widget p { margin-bottom: 8px; color: var(--text-muted); font-size: 0.88rem; }
.contact-info-widget i { margin-right: 8px; color: var(--primary); }

/* FOOTER */
.footer { background: linear-gradient(180deg, #2d2d30 0%, #1a1a1e 100%); color: var(--white); }
.footer-main { padding: 55px 0 35px; }
.footer-logo { height: 45px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }
.footer-title { font-size: 1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; color: var(--white); font-weight: 700; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition-base); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-contact li i { color: var(--primary); flex-shrink: 0; margin-top: 3px; font-size: 0.85rem; }
.footer-contact li a { color: rgba(255,255,255,0.6); }
.footer-contact li a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition-base); }
.footer-social a:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 15px 0; font-size: 0.8rem; }
.footer-bottom p { color: rgba(255,255,255,0.45); margin: 0; }

/* WHATSAPP & BACK TO TOP */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 56px; height: 56px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.35); z-index: 999; transition: var(--transition-base); }
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.back-to-top { position: fixed; bottom: 90px; right: 25px; width: 42px; height: 42px; background: var(--secondary); color: var(--white); border: none; border-radius: 8px; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 998; transition: var(--transition-base); font-size: 0.9rem; }
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }

/* BUTTONS */
.btn { font-family: var(--font-heading); font-weight: 600; padding: 11px 26px; border-radius: 8px; transition: all 0.3s ease; font-size: 0.9rem; }
.btn-lg { padding: 13px 32px; font-size: 0.95rem; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(244,207,0,0.3); }
.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary-dark); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

/* POLICY LIST */
.policy-list { list-style: none; padding: 0; }
.policy-list li { padding: 12px 0; border-bottom: 1px solid var(--light-gray); }
.policy-list li:last-child { border-bottom: none; }

/* FEATURE BOX */
.feature-box { padding: 25px; border-radius: 12px; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: var(--transition-base); border: 1px solid var(--light-gray); }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-color: var(--primary); }
.feature-icon { margin-bottom: 15px; }
.feature-icon i { font-size: 2.2rem; color: var(--primary); }

/* NAV PILLS */
.nav-pills .nav-link { color: var(--secondary); border: 1px solid var(--light-gray); margin: 3px; border-radius: 8px; font-size: 0.88rem; }
.nav-pills .nav-link.active { background: var(--primary); border-color: var(--primary); color: var(--dark); }

/* OLD SERVICE CARDS (keep for inner pages) */
.service-card { display: block; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: var(--transition-base); text-decoration: none; color: inherit; height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); color: inherit; }
.service-card.featured { border: 2px solid var(--accent-red); position: relative; }
.service-badge { position: absolute; top: 12px; right: 12px; background: var(--accent-red); color: var(--white); padding: 4px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; z-index: 2; }
.service-image { position: relative; height: 200px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-image img { transform: scale(1.08); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%); }
.service-content { padding: 22px; }
.service-icon { width: 52px; height: 52px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-icon i { font-size: 1.3rem; color: var(--dark); }
.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; line-height: 1.6; }
.service-link { color: var(--primary-dark); font-weight: 600; font-size: 0.82rem; }

/* PARALLAX */
.parallax-section { position: relative; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; padding: var(--section-padding) 0; }
.parallax-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
