@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --gradient: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
    --light: #f8fafc;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #94a3b8;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    padding-top: 110px;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--secondary); }

body { padding-top: 76px; }

/* Navbar */
.navbar {
    top: 0;
    padding: 10px 0;
    background: rgba(10, 14, 23, 0.7);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar.scrolled {
    top: 0;
    padding: 8px 0;
    background: rgba(10, 14, 23, 0.96);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
    border-bottom-color: rgba(255,255,255,0.08);
}
.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar .brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}
.navbar .navbar-nav {
    gap: 2px;
}
.navbar .nav-link {
    color: rgba(255,255,255,0.6) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 14px !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar .nav-link i {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.04);
}
.navbar .nav-link:hover i {
    opacity: 1;
    color: var(--accent);
}
.navbar .nav-link.active {
    color: #fff !important;
    background: rgba(37,99,235,0.1);
}
.navbar .nav-link.active i {
    opacity: 1;
    color: var(--primary);
}
.navbar .nav-link.btn-nav {
    background: var(--gradient);
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 24px !important;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.3);
    gap: 8px;
}
.navbar .nav-link.btn-nav i {
    opacity: 1;
    color: #fff;
}
.navbar .nav-link.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.dropdown-menu {
    background: rgba(12, 16, 28, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    margin-top: 10px !important;
    min-width: 200px;
}
.mega-menu {
    min-width: 420px;
    padding: 16px;
}
.mega-grid {
    display: flex;
    gap: 12px;
}
.mega-col {
    flex: 1;
    min-width: 0;
}
.mega-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 8px;
    padding-top: 8px;
}
.mega-footer .dropdown-item {
    font-weight: 600;
    color: var(--accent);
}
.mega-col h6 {
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 10px 8px;
    margin: 0;
    font-weight: 600;
}
.dropdown-item {
    color: rgba(255,255,255,0.7);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dropdown-item i {
    width: 18px;
    color: var(--primary);
    opacity: 0.7;
    font-size: 0.85rem;
}
.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.12);
    color: #fff;
    transform: translateX(4px);
}
.dropdown-item:hover i {
    opacity: 1;
}
.nav-item.dropdown {
    display: inline-flex;
    align-items: center;
}
.nav-item.dropdown > .nav-link {
    padding-right: 0 !important;
}
.nav-item.dropdown > .nav-link.dropdown-toggle {
    padding-left: 4px !important;
    width: auto;
    min-width: 20px;
}
.nav-item.dropdown > .nav-link.dropdown-toggle::after {
    margin-left: 0;
}
.dropdown-toggle::after {
    vertical-align: middle;
    opacity: 0.5;
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}
.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Hamburger */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}
.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; width: 70%; }
.hamburger span:nth-child(3) { top: 16px; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 8px; transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0; width: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    top: 8px; transform: rotate(-45deg);
}
.navbar-toggler {
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Mobile nav */
@media (max-width: 991px) {
    body { padding-top: 68px; }
    .navbar .navbar-collapse {
        background: rgba(10,14,23,0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 12px;
        margin-top: 10px;
        border: 1px solid rgba(255,255,255,0.06);
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }
    .navbar .navbar-nav { gap: 0; }
    .navbar .nav-link { padding: 12px 16px !important; border-radius: 10px; }
    .navbar .nav-link.btn-nav { margin-left: 0 !important; margin-top: 6px; justify-content: center; }
    .mega-menu { min-width: auto; }
    .mega-grid { flex-direction: column; gap: 0; }
    .mega-col h6 { padding-top: 12px; }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--secondary);
    overflow: hidden;
    padding: 80px 0;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
    border-radius: 50%;
}
.hero .hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero .hero-img {
    text-align: center;
}
.hero .hero-img img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.network-visual {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.globe-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: spinRound 12s linear infinite;
}
.ring-2 { width: 240px; height: 240px; animation-duration: 18s; animation-direction: reverse; border-color: rgba(6, 182, 212, 0.25); }
.ring-3 { width: 120px; height: 120px; animation-duration: 8s; border-color: rgba(255,255,255,0.15); }
@keyframes spinRound {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.7);
    animation: pulseNode 2s ease-in-out infinite;
}
.node-tl { top: 30px; left: 30px; animation-delay: 0s; background: #2563eb; box-shadow: 0 0 12px rgba(37,99,235,0.7); }
.node-tr { top: 30px; right: 30px; animation-delay: 0.5s; }
.node-bl { bottom: 30px; left: 30px; animation-delay: 1s; background: #2563eb; box-shadow: 0 0 12px rgba(37,99,235,0.7); }
.node-br { bottom: 30px; right: 30px; animation-delay: 0.3s; }
.node-c { animation-delay: 0.8s; width: 18px; height: 18px; background: #f59e0b; box-shadow: 0 0 20px rgba(245,158,11,0.8); }
@keyframes pulseNode {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}
.pulse-dot {
    position: absolute;
    border-radius: 50%;
    background: #06b6d4;
    width: 6px;
    height: 6px;
    animation: pulseRing 3s ease-out infinite;
}
.dot-1 { top: 80px; left: 70px; animation-delay: 0s; }
.dot-2 { bottom: 90px; right: 80px; animation-delay: 1.2s; }
.dot-3 { top: 50%; left: 70%; animation-delay: 0.6s; }
@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(6,182,212,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(6,182,212,0); }
    100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); }
}
.conn-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
    animation: dashMove 3s linear infinite;
}
.line-1 { width: 120px; top: 90px; left: 50px; transform: rotate(-15deg); }
.line-2 { width: 100px; bottom: 90px; right: 50px; transform: rotate(20deg); animation-delay: 0.8s; }
.line-3 { width: 140px; top: 60%; left: 20%; transform: rotate(-40deg); animation-delay: 1.5s; }
.line-4 { width: 80px; top: 30%; right: 25%; transform: rotate(55deg); animation-delay: 0.4s; }
.line-5 { width: 160px; top: 45%; left: 10%; transform: rotate(-10deg); animation-duration: 4s; }
@keyframes dashMove {
    0% { opacity: 0; transform-origin: left; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Hero Carousel */
.hero-carousel {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}
.hero-carousel .carousel-inner {
    height: 85vh;
    min-height: 500px;
}
.hero-carousel .carousel-item {
    height: 85vh;
    min-height: 500px;
    background: var(--secondary);
    position: relative;
}
.hero-carousel .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.8) 100%);
    z-index: 0;
    pointer-events: none;
}
.hero-carousel .slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.hero-carousel .slide-content .row {
    width: 100%;
}
.hero-carousel h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-carousel h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.hero-carousel p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.hero-carousel .carousel-indicators {
    bottom: 40px;
    z-index: 5;
}
.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    opacity: 1;
}
.hero-carousel .carousel-indicators button.active {
    background: var(--primary);
    border-color: var(--primary);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    z-index: 5;
}

/* Buttons */
.btn-primary-custom {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    color: #fff;
}
.btn-outline-custom {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.section-title .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light);
}
.about-section .about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-section .about-img img { width: 100%; }
.about-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.about-section .stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.about-section .stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-section .stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}
.clients-section {
    background: var(--light);
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    padding: 20px 0;
}
.client-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 150px;
    padding: 16px 12px;
    transition: all 0.3s;
    border-radius: 12px;
}
.client-logo-wrap:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
}
.client-logo-wrap a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.client-logo-wrap img {
    height: 65px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.3s;
    border-radius: 8px;
    opacity: 0.85;
}
.client-logo-wrap:hover img {
    opacity: 1;
    transform: scale(1.1);
}
.client-name-only {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
}
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Services */
.services-section {
    background: #fff;
}
.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}
.product-img-wrap .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .product-img {
    transform: scale(1.08);
}
.product-card .product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-price {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}
.service-card .read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Pricing */
.pricing-section {
    background: var(--light);
}
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(37,99,235,0.15);
    transform: scale(1.03);
}
.pricing-card.featured .popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-10px); }
.pricing-card .price-header {
    text-align: center;
    margin-bottom: 30px;
}
.pricing-card .price-header h4 { font-size: 1.3rem; }
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}
.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
}
.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.pricing-card ul li i { color: var(--primary); font-size: 0.9rem; }

/* Contact */
.contact-section {
    background: #fff;
}
.contact-card {
    background: var(--secondary);
    border-radius: 20px;
    color: #fff;
    padding: 40px;
}
.contact-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-card .contact-item i {
    width: 44px;
    height: 44px;
    background: rgba(37,99,235,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-card .contact-item p { margin: 0; color: var(--text-light); }
.contact-form .form-control {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}
.cta-section .btn-outline-custom {
    border-color: rgba(255,255,255,0.5);
}
.cta-section .btn-outline-custom:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}
.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer p { font-size: 0.95rem; line-height: 1.7; }
.footer .social-links { margin-top: 16px; }
.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    margin-right: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.footer .social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.footer-contact li i {
    width: 20px;
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; }

/* Page Header */
.page-header {
    background: var(--secondary);
    padding: 120px 0 60px;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}
.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 12px auto 0;
}
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
}
.breadcrumb-custom a { color: var(--text-light); text-decoration: none; }
.breadcrumb-custom span { color: var(--primary); }

/* Service Detail */
.service-detail-header {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-list li i { color: var(--primary); }

/* Forms */
.form-section {
    padding: 80px 0;
    background: var(--light);
}
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.form-card h3 { margin-bottom: 24px; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--secondary); }
.form-control, .form-select {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* Alerts */
.alert {
    border-radius: 12px;
    padding: 16px 20px;
    border: none;
}
.alert-success { background: #dcfce7; color: #166534; }
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-info { background: #dbeafe; color: #1e40af; }

/* Partners page */
.partners-section {
    padding: 80px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}
.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.benefit-item .icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #fff;
}
.benefit-item h4 { margin-bottom: 12px; }
.benefit-item p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* Responsive */
@media (max-width: 991px) {
    .hero h1, .hero-carousel h1 { font-size: 2.5rem; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .about-section .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: auto;
        min-height: 70vh;
    }
    .hero-carousel .slide-content {
        min-height: 70vh;
        padding: 80px 0 60px;
    }
    .hero h1, .hero-carousel h1 { font-size: 1.8rem; }
    .hero-carousel p { font-size: 1rem; }
    .hero { min-height: auto; padding: 60px 0; }
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .about-section .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Table styles */
.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table-custom th {
    background: var(--light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    padding: 14px 16px;
    border-bottom: 2px solid #e2e8f0;
}
.table-custom td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.table-custom tr:hover td { background: #f8fafc; }

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #dbeafe; color: #1e40af; }
.badge-in-progress { background: #e0e7ff; color: #3730a3; }
.badge-completed { background: #dcfce7; color: #166534; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-paid { background: #dcfce7; color: #166534; }
.badge-sent { background: #dbeafe; color: #1e40af; }
.badge-draft { background: #f1f5f9; color: #475569; }
.badge-overdue { background: #fee2e2; color: #991b1b; }
.badge-active { background: #dcfce7; color: #166534; }
.badge-inactive { background: #f1f5f9; color: #475569; }
.badge-suspended { background: #fee2e2; color: #991b1b; }
.badge-approved { background: #dbeafe; color: #1e40af; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-urgent { background: #fee2e2; color: #991b1b; }
.badge-high { background: #fef3c7; color: #92400e; }
.badge-medium { background: #dbeafe; color: #1e40af; }
.badge-low { background: #f1f5f9; color: #475569; }

/* Globe Counter */
.globe-counter {
    text-align: center;
}
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 14px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(10,14,23,0.6);
    border: 1px solid rgba(255,255,255,0.06);
}
.world-map-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    background:
        repeating-linear-gradient(0deg, rgba(37,99,235,0.04) 0px, rgba(37,99,235,0.04) 1px, transparent 1px, transparent 12.5%),
        repeating-linear-gradient(90deg, rgba(37,99,235,0.04) 0px, rgba(37,99,235,0.04) 1px, transparent 1px, transparent 12.5%),
        radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.08) 0%, rgba(6,182,212,0.03) 40%, transparent 70%);
}
.map-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(6,182,212,0.7);
    transform: translate(-50%, -50%);
    animation: mapDotPulse 3s ease-in-out infinite;
}
@keyframes mapDotPulse {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 4px rgba(6,182,212,0.4); }
    50% { opacity: 1; box-shadow: 0 0 12px rgba(6,182,212,0.9); }
}
.counter-overlay {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(10,14,23,0.7);
    backdrop-filter: blur(6px);
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}
.counter-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.counter-label {
    display: block;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-top: -2px;
}
.counter-stats {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.cs-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 48px;
    text-align: center;
}
.cs-num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.cs-lbl {
    display: block;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    margin-top: 1px;
}
