/* ==========================================================================
   SD BILGISAYAR TECHNOLOGY - MODERN CORPORATE DESIGN SYSTEM
   PHP 7.2+ MVC Web Architecture
   Palette: Cyan (#00b4d8, #00c2cb, #00e5ff), Deep Navy (#0a192f, #0f172a, #1e293b), 
            Accent Blue (#0077b6), White/Light Slate (#f8fafc)
   ========================================================================== */

:root {
    --primary: #00b4d8;
    --primary-hover: #0096c7;
    --primary-dark: #0077b6;
    --accent: #00e5ff;
    --cyan-glow: rgba(0, 229, 255, 0.25);
    
    --navy-900: #070d18;
    --navy-800: #0a192f;
    --navy-700: #0f172a;
    --navy-600: #1e293b;
    --navy-500: #334155;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --border-dark: #1e293b;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 14px 30px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 25px rgba(0, 180, 216, 0.35);

    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.3;
}

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

a:hover {
    color: var(--primary);
}

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

ul {
    list-style: none;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

[class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.col-half { flex: 0 0 50%; max-width: 50%; }
.col-full { flex: 0 0 100%; max-width: 100%; }

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-cyan { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--navy-800); }
.py-4 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-5 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; }
.d-block { display: block; }
.d-none-mobile { display: inline-flex; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--navy-900);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-sahibinden {
    background-color: #fee600;
    border: 1px solid #e2cc00;
    height: 48px;
    min-height: 48px;
    padding: 0 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(254, 230, 0, 0.3);
    transition: all var(--transition-normal);
}

.btn-sahibinden:hover {
    background-color: #ffd600;
    border-color: #d6be00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 230, 0, 0.5);
}

.btn-sahibinden img,
.btn-sahibinden .sahibinden-btn-logo {
    height: 22px;
    max-height: 22px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
}

.btn-lg {
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-header {
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

/* TOPBAR */
.topbar {
    background-color: var(--navy-800);
    color: var(--text-light);
    font-size: 0.84rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #cbd5e1;
}

.topbar-item i {
    color: var(--accent);
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.topbar-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.topbar-whatsapp-btn:hover {
    background: #25d366;
    color: #fff;
}

.topbar-admin-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
}
.topbar-admin-link:hover {
    color: var(--accent);
}

/* HEADER & NAVBAR */
.main-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

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

/* Desktop Navigation */
/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-800);
    padding: 0.5rem 0.2rem;
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

.nav-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.has-dropdown:hover .nav-arrow,
.has-dropdown.is-open .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown & Mega Menu */
.has-mega-menu {
    position: relative !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    margin-top: -1px;
    left: 50%;
    transform: translateX(-35%) translateY(4px);
    width: 740px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
    overflow: visible;
}

/* Invisible bridge so cursor never loses hover when moving down */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    height: 35px;
    background: transparent;
    z-index: 999;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu.is-open .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-35%) translateY(0) !important;
}

.mega-menu-inner {
    display: block;
    background: #ffffff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

/* Services Grid */
.mega-menu-services {
    padding: 1.2rem 1.4rem;
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.mega-menu-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-view-all {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.mega-menu-view-all:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.mega-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem 0.75rem;
}

.mega-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.mega-service-item:hover {
    background: #f8fafc;
    border-color: rgba(2, 132, 199, 0.15);
    transform: translateX(3px);
}

.mega-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.mega-service-item:hover .mega-item-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.mega-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-800);
    line-height: 1.25;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-service-item:hover .mega-item-title {
    color: var(--primary);
}

/* Fallback Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 0.75rem 0.5rem;
    display: none;
    flex-direction: column;
    z-index: 1000;
    animation: fadeInDown 0.2s ease;
}

.has-dropdown:not(.has-mega-menu):hover .dropdown-menu {
    display: flex;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--navy-800);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: var(--primary-dark);
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.dropdown-item strong {
    display: block;
    font-size: 0.88rem;
    line-height: 1.2;
}

.dropdown-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* MOBILE DRAWER SUBMENU ACCORDION */
.mobile-nav-item.has-mobile-submenu {
    position: relative;
}

.mobile-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding: 0.4rem 0;
    transition: var(--transition);
}

.mobile-link-wrap .mobile-link {
    flex: 1;
    cursor: pointer;
}

.mobile-link-wrap:hover .mobile-link,
.mobile-link-wrap.active .mobile-link {
    color: var(--accent);
}

.mobile-submenu-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 0.78rem;
    transition: all 0.25s ease;
    margin-right: 0.3rem;
}

.mobile-link-wrap:hover .mobile-submenu-arrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.mobile-link-wrap.active .mobile-submenu-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy-900);
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0.4rem 0 0.5rem 0.6rem;
    margin: 0.3rem 0 0.5rem 0.6rem;
    display: none;
    border-left: 2px solid rgba(0, 180, 216, 0.4);
    animation: fadeIn 0.2s ease;
}

.mobile-submenu.open {
    display: block;
}

.mobile-sublink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-sublink i {
    color: var(--accent);
    width: 20px;
    text-align: center;
    font-size: 0.92rem;
}

.mobile-sublink:hover,
.mobile-sublink:active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.mobile-sublink-all {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.3rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    padding-bottom: 0.55rem;
}

.mobile-sublink-all i {
    color: var(--accent);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy-800);
    border-radius: 2px;
}

/* MOBILE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--navy-900);
    color: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
}

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

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.close-drawer-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 1.5rem 1.2rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-list li {
    margin-bottom: 0.9rem;
}

.mobile-link {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    padding: 0.4rem 0;
}

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

.mobile-drawer-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-address-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, #0d274c 100%);
    color: #fff;
    padding: 5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.25;
    pointer-events: none;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: -80px;
    left: 10%;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
}

.hero-visual {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.35);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.15);
}

/* HERO VISUAL CARD */
.hero-card-main {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--shadow-glow);
    backdrop-filter: blur(12px);
    position: relative;
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.2rem;
}

.tech-dots {
    display: flex;
    gap: 6px;
}

.tech-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.tech-dots span:nth-child(2) { background: #f59e0b; }
.tech-dots span:nth-child(3) { background: #10b981; }

.tech-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-service-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.tech-service-highlight:hover {
    background: rgba(0, 180, 216, 0.12);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateX(4px);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.tech-service-highlight h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.tech-service-highlight p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

.tech-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82rem;
}

.location-tag {
    color: var(--accent);
}

.btn-sm-link {
    color: #fff;
    font-weight: 600;
}

.btn-sm-link:hover {
    color: var(--accent);
}

/* SECTION HEADERS */
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--navy-800);
    margin-bottom: 0.75rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* HIGHLIGHT BANNER: IT SUPPORT */
.section-highlight-it {
    padding: 4.5rem 0 2.5rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.highlight-box {
    background: linear-gradient(135deg, var(--navy-800) 0%, #0d2b45 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 180, 216, 0.25);
    color: #fff;
}

.highlight-text {
    flex: 1.4;
}

.badge-accent {
    display: inline-block;
    background: rgba(0, 229, 255, 0.2);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.highlight-text h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.highlight-text p {
    color: #94a3b8;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

.highlight-points {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.highlight-points i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.highlight-action {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.call-direct {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

/* SERVICES GRID (9 ITEMS) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.12);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--primary);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy-800);
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card-link:hover {
    color: var(--primary);
    gap: 0.7rem;
}

/* WHY US SECTION */
.why-us-wrapper {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.why-us-content {
    flex: 1.2;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #e0f2fe;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-row h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-row p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.why-us-box-right {
    flex: 0.8;
}

.guarantee-badge-box {
    background: linear-gradient(135deg, var(--navy-800) 0%, #0d274c 100%);
    color: #fff;
    padding: 3rem 2.2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 180, 216, 0.3);
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-badge-box h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.guarantee-badge-box p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-card-mini {
    background: rgba(255,255,255,0.06);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-card-mini span {
    display: block;
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 0.3rem;
}

.phone-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.contact-card-mini small {
    display: block;
    color: #94a3b8;
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

/* PRODUCTS GRID & CARDS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.8rem;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.product-img-wrap {
    height: 200px;
    position: relative;
    background: #0a192f;
    overflow: hidden;
}

.product-img-wrap a,
.product-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

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

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(4px);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.product-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: var(--navy-800);
}

.product-title a:hover {
    color: var(--primary);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.9rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-800);
}

.btn-product-buy {
    font-size: 0.82rem;
    font-weight: 600;
    color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid #25d366;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-product-buy:hover {
    background: #25d366;
    color: #fff;
}

/* CATEGORY FILTERS */
.category-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.5rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-800);
    transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
    background: var(--navy-800);
    color: var(--accent);
    border-color: var(--navy-800);
}

/* BLOG GRID & CARDS */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.blog-img-wrap {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
}

.blog-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.blog-title a {
    color: var(--navy-800);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.read-more-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more-link:hover {
    gap: 0.5rem;
    color: var(--primary);
}

/* PARTNER LOGO CAROUSEL */
.partners-carousel-wrap {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0 3rem;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.partners-carousel-wrap.is-dragging {
    cursor: grabbing;
}

.partners-carousel-wrap img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.partners-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.partner-logo-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem 2.2rem;
    height: 96px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.partner-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
    border-color: var(--primary);
}

.partner-logo-item img {
    max-height: 52px;
    max-width: 170px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-item:hover img {
    transform: scale(1.05);
}

.section-divider-subtle {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 30%, var(--border-color) 70%, transparent 100%);
    margin: 3.5rem 0;
}

/* REVIEWS SLIDER CAROUSEL */
.reviews-slider-wrapper {
    position: relative;
    padding: 0 45px;
    margin-top: 2.5rem;
}

.reviews-slider-track {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px 20px;
}

.reviews-slider-track::-webkit-scrollbar {
    display: none;
}

.reviews-slide-item {
    flex: 0 0 calc(33.333% - 1.2rem);
    min-width: 280px;
    display: flex;
}

.reviews-slide-item .testimonial-card {
    width: 100%;
    margin: 0;
}

@media (max-width: 1024px) {
    .reviews-slide-item {
        flex: 0 0 calc(50% - 0.9rem);
    }
}

@media (max-width: 768px) {
    .reviews-slider-wrapper {
        padding: 0 35px;
    }
    .reviews-slide-item {
        flex: 0 0 100%;
        min-width: 240px;
    }
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}

.slider-nav-btn.prev-btn {
    left: 0;
}

.slider-nav-btn.next-btn {
    right: 0;
}

/* Dark mode variant in home page */
.bg-dark .slider-nav-btn {
    background: var(--navy-800);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.bg-dark .slider-nav-btn:hover {
    background: var(--primary);
    color: #fff;
}

.slider-dots-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary);
}

.bg-dark .slider-dot {
    background: rgba(255, 255, 255, 0.2);
}

.bg-dark .slider-dot.active {
    background: var(--accent);
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1.1rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.15);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--navy-800);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Dark Background Variant */
.bg-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.bg-dark .testimonial-card:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.bg-dark .testimonial-text {
    color: #f1f5f9;
}

.bg-dark .testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-dark .author-avatar {
    background: rgba(0, 229, 255, 0.2);
    color: var(--accent);
}

.bg-dark .testimonial-author strong {
    color: #ffffff;
}

.bg-dark .testimonial-author span {
    color: var(--accent);
}

/* FAST ACTION CTA BANNER */
.section-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--navy-800) 100%);
    padding: 4rem 0;
    color: #fff;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1.3;
}

.cta-text h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.cta-text p {
    color: #e0f2fe;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
}

.section-cta-banner .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.section-cta-banner .btn-outline:hover {
    color: var(--primary-dark) !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section-cta-banner .btn-outline i {
    color: #ffffff !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.section-cta-banner .btn-outline:hover i {
    color: var(--primary-dark) !important;
}

/* FOOTER */
.site-footer {
    background: var(--navy-900);
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-top {
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer-logo {
    height: 60px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 1.3rem;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.footer-text {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

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

.footer-accordion-icon {
    display: none;
}

.footer-col-content {
    display: block;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

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

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
}

.footer-contact-item span, .footer-contact-item a {
    color: #cbd5e1;
    font-size: 0.88rem;
}

.footer-bottom {
    padding: 1.4rem 0;
    background: #050a12;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge-tag {
    font-size: 0.78rem;
    color: var(--accent);
}

/* FLOATING LIVE SUPPORT POPUP WIDGET */
.contact-fab-wrap {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Main Trigger Button */
.contact-fab-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.4rem 0.75rem 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.contact-fab-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
    background: #20ba5a;
}

.fab-icon-group {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wa-main, .icon-close-main {
    font-size: 1.5rem;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-close-main {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.fab-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
}

.fab-pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: fabPulse 2.2s infinite;
    pointer-events: none;
}

@keyframes fabPulse {
    0% { transform: scale(0.96); opacity: 0.8; }
    60% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(0.96); opacity: 0; }
}

/* Active Trigger State */
.contact-fab-wrap.open .contact-fab-trigger {
    background: var(--navy-800);
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.5);
}

.contact-fab-wrap.open .icon-wa-main {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.contact-fab-wrap.open .icon-close-main {
    opacity: 1;
    transform: rotate(0) scale(1);
    color: #fff;
}

.contact-fab-wrap.open .fab-pulse-ring {
    display: none;
}

/* UPWARD OPENING POPUP CARD */
.contact-popup-card {
    position: absolute;
    bottom: calc(100% + 16px);
    right: 0;
    width: 340px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(0, 180, 216, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 10000;
}

.contact-fab-wrap.open .contact-popup-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.popup-card-header {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #fff;
    padding: 1.4rem 1.4rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.popup-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.live-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 10px #25d366;
    animation: dotPulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.85); opacity: 0.5; }
}

.popup-header-info h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.popup-header-info p {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

.popup-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #cbd5e1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Card Body Channels */
.popup-card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: #f8fafc;
}

.popup-channel-btn {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.popup-channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.channel-wa:hover {
    border-color: #25d366;
}

.channel-phone:hover {
    border-color: var(--primary);
}

.channel-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.icon-wa {
    background: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.icon-phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
}

.channel-text {
    flex-grow: 1;
}

.channel-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.channel-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.channel-arrow {
    color: #cbd5e1;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.popup-channel-btn:hover .channel-arrow {
    transform: translateX(3px);
    color: var(--navy-800);
}

.popup-card-footer {
    padding: 0.75rem 1.2rem;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.popup-card-footer i {
    color: var(--primary);
    margin-right: 0.3rem;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--navy-800);
    color: #fff;
    border: 1px solid var(--border-dark);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    transition: var(--transition);
}

.back-to-top.active {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary);
}

/* INNER PAGES STYLING */
.page-header {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #fff;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-header-content {
    text-align: center;
}

.page-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.breadcrumb-trail {
    font-size: 0.88rem;
    color: #94a3b8;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

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

/* CONTACT PAGE STYLES */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.contact-info-card {
    display: flex;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.4rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #e0f2fe;
    color: var(--primary-dark);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-card p, .contact-info-card a {
    color: var(--navy-800);
    font-size: 0.95rem;
}

.highlight-link {
    font-weight: 700;
    color: var(--primary-dark) !important;
}

.contact-form-wrapper {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.form-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.site-form .form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: #fff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.site-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--navy-800);
}

.responsive-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.maps-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ALERTS */
.alert {
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* SERVICE DETAIL LAYOUT */
.service-detail-layout, .blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
}

.service-detail-card, .article-single {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-lead-box {
    background: #f1f5f9;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.05rem;
    color: var(--navy-800);
    margin-bottom: 1.8rem;
}

.service-rich-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.highlight-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.check-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.check-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy-800);
}

.check-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-action-cta {
    background: linear-gradient(135deg, var(--navy-800) 0%, #0c2b48 100%);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-flex h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.cta-flex p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
}

/* SIDEBAR WIDGETS */
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.8rem;
}

.sidebar-widget-title {
    font-size: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 1rem;
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.sidebar-service-list li {
    margin-bottom: 0.5rem;
}

.sidebar-service-list a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    border-radius: var(--radius-sm);
    color: var(--navy-800);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-service-list a:hover, .sidebar-service-list li.active a {
    background: #f1f5f9;
    color: var(--primary);
}

.arrow-right {
    margin-left: auto;
    font-size: 0.75rem;
}

.contact-widget-dark {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #fff;
    border-color: rgba(0, 180, 216, 0.3);
    text-align: center;
}

.widget-icon-head {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-widget-dark h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.contact-widget-dark p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.sidebar-address-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #94a3b8;
}

/* PRODUCT DETAIL LAYOUT */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

/* PRODUCT GALLERY CAROUSEL & LIGHTBOX */
.product-gallery-viewport {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    touch-action: pan-y;
}

.product-gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
    padding: 1.2rem;
    background: #ffffff;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-main-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-main-img {
    transform: scale(1.02);
}

.gallery-zoom-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    z-index: 6;
}

.gallery-zoom-badge:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.gallery-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    z-index: 6;
}

.gallery-arrow-btn.prev-btn {
    left: 0.75rem;
}

.gallery-arrow-btn.next-btn {
    right: 0.75rem;
}

.gallery-arrow-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.gallery-counter-pill {
    position: absolute;
    bottom: 0.85rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    z-index: 6;
}

.product-thumbnails-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.4rem 0.2rem;
    scrollbar-width: thin;
}

.thumb-item {
    flex: 0 0 76px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    background: #ffffff;
    padding: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.thumb-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.35);
    transform: translateY(-2px);
}

.thumb-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* LIGHTBOX MODAL */
.product-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.lightbox-dialog {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    padding: 0.75rem;
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close-btn {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: scale(1.1);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-nav-btn.prev-btn {
    left: -70px;
}

.lightbox-nav-btn.next-btn {
    right: -70px;
}

.lightbox-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-counter {
    margin-top: 0.75rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lightbox-nav-btn.prev-btn {
        left: 8px;
    }
    .lightbox-nav-btn.next-btn {
        right: 8px;
    }
    .lightbox-close-btn {
        top: -42px;
        right: 8px;
    }
    .lightbox-img {
        max-width: 94vw;
        max-height: 75vh;
        padding: 0.4rem;
    }
}

.product-detail-badge {
    display: inline-block;
    background: #e0f2fe;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.6rem;
}

.product-detail-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-detail-price-box {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-tax-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-detail-desc {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-detail-desc h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.product-perks-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
}

/* BLOG LISTING & SINGLE ARTICLE */
.blog-list-card {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.blog-list-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.blog-list-media {
    width: 240px;
    flex-shrink: 0;
}

.blog-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-tags {
    display: flex;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.meta-tag-cat {
    color: var(--primary);
    font-weight: 600;
}

.blog-list-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.blog-list-title a {
    color: var(--navy-800);
}

.blog-list-title a:hover {
    color: var(--primary);
}

.blog-list-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.btn-read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.recent-post-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: center;
}

.recent-post-thumb {
    width: 65px;
    height: 55px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-800);
    display: block;
    line-height: 1.3;
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.article-featured-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 420px;
    box-shadow: var(--shadow-sm);
}

.article-featured-img img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

.article-lead-box {
    background: #f1f5f9;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.1rem;
    color: var(--navy-800);
    margin-bottom: 2rem;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #334155;
}

.article-body h2, .article-body h3, .article-body h4 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--navy-800);
}

.article-body p {
    margin-bottom: 1.2rem;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }

.author-bio-card {
    display: flex;
    gap: 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    align-items: center;
}

.author-logo img {
    width: 90px;
    height: auto;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.author-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ABOUT PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-badge-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.about-badge-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.about-badge-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.about-badge-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-stat-card {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: #fff;
}

.stat-badge-glow {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.stat-big {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.about-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #cbd5e1;
}

.about-cta-box {
    background: rgba(255,255,255,0.06);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-cta-box p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mv-card {
    background: #fff;
    padding: 2.5rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--primary-dark);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* PARTNERSHIP BOX */
.partnership-box {
    background: linear-gradient(135deg, var(--navy-800) 0%, #0d274c 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: #fff;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.partnership-text h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.partnership-text p {
    color: #94a3b8;
    margin: 0;
    max-width: 650px;
}

.partnership-action {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* KEYFRAMES */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .topbar { display: none !important; }
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header-action .btn-header { display: none !important; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { width: 100%; max-width: 550px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .service-detail-layout, .blog-layout, .product-detail-layout, .contact-grid, .about-grid {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .highlight-box { flex-direction: column; text-align: center; }
    .highlight-points { align-items: center; }
    .why-us-wrapper { flex-direction: column; gap: 3rem; }
    .why-us-content, .why-us-box-right { width: 100%; flex: none; }
    .why-us-box-right { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .d-none-mobile { display: none !important; }
    .hero-cta-group {
        gap: 0.75rem;
    }
    .hero-cta-group .btn {
        flex: 1 1 200px;
        max-width: 320px;
    }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .stat-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 0.6rem; }

    /* MOBILE FOOTER ACCORDION (CLOSED BY DEFAULT) */
    .footer-accordion-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 0.2rem;
    }

    .footer-accordion-col .footer-title {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding: 0.85rem 0.2rem;
        user-select: none;
        font-size: 1.05rem;
        transition: color 0.2s ease;
    }

    .footer-accordion-col .footer-title:hover {
        color: var(--accent);
    }

    .footer-accordion-col .footer-title::after {
        display: none !important;
    }

    .footer-accordion-icon {
        display: inline-flex !important;
        font-size: 0.85rem;
        color: #94a3b8;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    }

    .footer-accordion-col.is-open .footer-accordion-icon {
        transform: rotate(180deg);
        color: var(--accent);
    }

    .footer-accordion-col .footer-col-content {
        display: none;
        padding: 0.4rem 0.2rem 1.1rem;
    }

    .footer-accordion-col.is-open .footer-col-content {
        display: block;
        animation: footerFadeDown 0.28s ease;
    }

    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .blog-list-card { flex-direction: column; }
    .blog-list-media { width: 100%; height: 180px; }
    .form-row { flex-direction: column; gap: 0; }
    .highlight-checklist { grid-template-columns: 1fr; }
    .about-badges-grid { grid-template-columns: 1fr; }
    .partnership-box { flex-direction: column; text-align: center; }
    .partnership-action { flex-direction: column; width: 100%; }
    .cta-banner-content { flex-direction: column; text-align: center; }
    .cta-actions { width: 100%; flex-direction: column; }

    /* WHY US RESPONSIVE */
    .why-us-wrapper { flex-direction: column; gap: 2rem; }
    .why-us-content, .why-us-box-right { width: 100%; max-width: 100%; }
    .features-list { margin-top: 1.5rem; gap: 1.1rem; }
    .feature-row { gap: 0.9rem; }
    .feature-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.15rem; }
    .feature-row h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
    .feature-row p { font-size: 0.88rem; line-height: 1.5; }
    .guarantee-badge-box { padding: 2.2rem 1.4rem; border-radius: var(--radius-md); }
    .guarantee-icon { width: 65px; height: 65px; font-size: 1.8rem; margin-bottom: 1.2rem; }
    .guarantee-badge-box h3 { font-size: 1.35rem; }
    .guarantee-badge-box p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .contact-card-mini { padding: 1rem 0.8rem; }
    .phone-link { font-size: 1.25rem; }

    /* FEATURED PRODUCTS 2-COLUMN RESPONSIVE GRID */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    .product-card { border-radius: var(--radius-sm); }
    .product-img-wrap { height: 140px; }
    .product-category-tag { top: 6px; left: 6px; font-size: 0.65rem; padding: 0.15rem 0.45rem; }
    .product-body { padding: 0.75rem 0.65rem; }
    .product-title {
        font-size: 0.88rem;
        margin-bottom: 0.35rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.3em;
        line-height: 1.25;
    }
    .product-desc {
        font-size: 0.76rem;
        margin-bottom: 0.65rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.35;
    }
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding-top: 0.6rem;
    }
    .product-price { font-size: 0.98rem; text-align: left; }
    .btn-product-buy {
        width: 100%;
        justify-content: center;
        padding: 0.45rem 0.4rem;
        font-size: 0.76rem;
        white-space: nowrap;
    }
    .section-header-flex { margin-bottom: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-cta-group .btn {
        width: 100%;
        max-width: 100%;
    }
    .products-grid {
        gap: 0.55rem !important;
    }
    .product-img-wrap {
        height: 125px;
    }
    .product-body {
        padding: 0.6rem 0.5rem;
    }
    .product-title {
        font-size: 0.82rem;
    }
    .product-desc {
        display: none;
    }
    .product-price {
        font-size: 0.92rem;
    }
    .btn-product-buy {
        font-size: 0.72rem;
        padding: 0.38rem 0.3rem;
    }
}

@keyframes footerFadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   PAGINATION STYLES (Clean & Lightweight)
   ========================================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2.5rem;
}

.pagination-nav {
    display: inline-block;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-800);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pagination-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #f8fafc;
    transform: translateY(-1px);
}

.pagination-item.active .pagination-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.25);
    cursor: default;
}

.pagination-item.disabled .pagination-link {
    color: #94a3b8;
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

.pagination-item.dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 42px;
    color: #94a3b8;
    font-weight: 700;
}

.pagination-prev, .pagination-next {
    gap: 0.4rem;
    font-size: 0.88rem;
}
