:root {
    --electric-blue: #0ea5e9;
    --sunset-orange: #f97316;
    --deep-purple: #7c3aed;
    --lime-green: #1650cc;
    --hot-pink: #f73a00;
    --charcoal: #18181b;
    --off-white: #fafaf9;
}

.hero {
    background: linear-gradient(135deg, #0a1929 0%, #1e3a8a 50%, #0a1929 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Network Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    background-size: 80px 80px, 80px 80px, 600px 600px, 600px 600px, 800px 800px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    z-index: 0;
    opacity: 0.6;
}

/* Diagonal Accent Shape */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    transform: rotate(-15deg);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.hero-background {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 32px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: white;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--hot-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 24px 32px !important;
    border-radius: 20px !important;
    min-width: 140px !important;
    text-align: center !important;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: var(--sunset-orange) !important;
    display: block !important;
    margin-bottom: 8px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.stat-label {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--hot-pink) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero::before {
        right: -50%;
    }
}

.about {
    background: var(--off-white) !important;
    padding: 120px 0 !important;
    position: relative;
}

.about::before,
.about::after {
    display: none !important;
}

.about .section-badge {
    background: var(--electric-blue) !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.about .section-title {
    color: var(--charcoal) !important;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 24px 0;
    letter-spacing: -1px;
}

.about .section-description {
    color: #52525b !important;
    font-size: 1.25rem;
    line-height: 1.8;
}

.about .tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.about .tab-btn {
    background: white !important;
    color: var(--charcoal) !important;
    border: 2px solid #e4e4e7 !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.about .tab-btn.active {
    background: var(--electric-blue) !important;
    color: white !important;
    border-color: var(--electric-blue) !important;
    transform: scale(1.05);
}

.about .tab-card {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about .tab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--electric-blue), var(--deep-purple), var(--hot-pink));
}

.about .tab-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-purple) 100%) !important;
    border-radius: 30px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
    transform: rotate(-5deg);
}

.about .tab-card h3 {
    color: var(--charcoal);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
}

.about .tab-card p {
    color: #52525b;
    font-size: 1.25rem;
    line-height: 1.9;
    text-align: center;
}

.about .mission-list {
    max-width: 800px;
    margin: 0 auto;
}

.about .mission-list li {
    color: #52525b;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 24px;
    padding-left: 50px;
    position: relative;
}

.about .mission-list i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--electric-blue);
    font-size: 1.75rem;
}

.services {
    background: white;
    padding: 120px 0;
    position: relative;
}

.services .section-badge {
    background: var(--sunset-orange);
}

.services .section-title {
    color: var(--charcoal);
    font-size: 3.5rem;
    font-weight: 900;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(247, 58, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--sunset-orange);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
    transform: translateY(-12px);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--hot-pink) 100%) !important;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 32px;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.35);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-card p {
    color: #52525b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Packages - Floating Cards
   =================================== */
.packages {
    background: linear-gradient(180deg, var(--charcoal) 0%, #27272a 100%) !important;
    padding: 120px 0 !important;
    position: relative;
}

.packages::after {
    display: none !important;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    background-size: 80px 80px, 80px 80px, 600px 600px, 600px 600px, 800px 800px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages .section-badge {
    background: var(--lime-green) !important;
    color: var(--charcoal) !important;
}

.packages .section-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 900;
}

.packages .section-description {
    color: #a1a1aa !important;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 32px !important;
    max-width: 200%;
    width: 100%;
    padding: 0 var(--spacing-md);
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }


}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr !important;
    }
}

.package-card {
    width: 100%;
    background: #27272a;
    border: 2px solid #3f3f46;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    display: none !important;
}

.package-card:hover {
    transform: translateY(-16px) rotate(-2deg);
    border-color: var(--electric-blue);
    box-shadow: 0 40px 100px rgba(14, 165, 233, 0.3);
}

.package-card.featured {
    border-color: var(--sunset-orange);
    transform: scale(1);
    background: #18181b;
}

.package-card.featured:hover {
    transform: translateY(-16px) rotate(-2deg);
}

.package-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--sunset-orange) !important;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transform: none !important;
    animation: none !important;
}

.package-header {
    background: transparent !important;
    padding: 60px 40px 40px !important;
    border-bottom: 2px solid #3f3f46;
}

.package-header::before {
    display: none !important;
}

.package-header h3 {
    color: white !important;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.package-speed {
    margin: 32px 0;
}

.speed-number {
    font-size: 6rem !important;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
}

.speed-unit {
    font-size: 1.5rem;
    color: #a1a1aa;
    font-weight: 700;
    margin-top: 8px;
}

.speed-bar {
    height: 10px;
    background: #3f3f46;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 32px;
}

.speed-fill {
    background: linear-gradient(90deg, var(--electric-blue), var(--deep-purple));
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.package-body {
    padding: 40px !important;
    background: transparent;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #3f3f46 0%, #27272a 100%);
    border-radius: 24px;
    border: 2px solid #52525b;
}

.currency {
    color: #a1a1aa;
    font-size: 1.125rem;
    font-weight: 700;
}

.amount {
    color: white !important;
    font-size: 3.5rem !important;
    font-weight: 900;
    display: block;
    margin: 12px 0;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.period {
    color: #a1a1aa;
    font-size: 1rem;
    font-weight: 600;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tag {
    background: #3f3f46 !important;
    color: #e4e4e7 !important;
    border: 1px solid #52525b;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-features {
    margin-bottom: auto;
    padding-bottom: 32px;
}

.package-features li {
    color: #d4d4d8 !important;
    padding: 14px 0;
    border-bottom: 1px solid #3f3f46;
    font-size: 1rem;
    font-weight: 500;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--lime-green) !important;
    margin-right: 12px;
    font-size: 1.125rem;
}

.btn-package {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-purple) 100%) !important;
    color: white !important;
    border: none;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    margin-top: auto;
}

.btn-package::before {
    display: none !important;
}

.btn-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5);
}

/* ===================================
   Tutorial - Network Pattern Background
   =================================== */
.tutorial {
    background: linear-gradient(135deg, #0a1929 0%, #1e293b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Network Pattern Background */
.tutorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
}

/* Animated Network Nodes */
.tutorial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.tutorial .container {
    position: relative;
    z-index: 1;
}

.tutorial .section-badge {
    background: var(--sunset-orange);
}

.tutorial .section-title {
    color: white !important;
}

.tutorial .section-description {
    color: #cbd5e1 !important;
}

.tutorial-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 0%, rgba(249, 115, 22, 0.05) 100%);
    transform: rotate(-15deg);
    transition: all 0.4s ease;
}

.step-card:hover::before {
    transform: rotate(-15deg) scale(1.2);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.4);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--hot-pink) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 32px;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    position: relative;
    z-index: 1;
    transform: rotate(-5deg);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.step-content p {
    color: #52525b;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* ===================================
   Why Us - Bold Grid
   =================================== */
.why-us {
    background: white !important;
    padding: 120px 0;
}

.why-us::before {
    display: none !important;
}

.why-us .section-badge {
    background: var(--lime-green);
    color: var(--charcoal);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: linear-gradient(135deg, #fafaf9 0%, #f4f4f5 100%);
    border: none;
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--lime-green), var(--electric-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--electric-blue) 100%) !important;
    border-radius: 24px;
    margin: 0 auto 32px;
    box-shadow: 0 15px 40px rgba(132, 204, 22, 0.3);
    transform: rotate(5deg);
}

.why-card h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.why-card p {
    color: #52525b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: auto;
}

/* ===================================
   Contact
   =================================== */
.contact {
    background: var(--off-white);
}

.contact .section-badge {
    background: var(--hot-pink);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .about .tab-card {
        width: 100%;
        padding: 48px 32px;
    }

    .packages-grid,
    .services-grid,
    .tutorial-steps,
    .why-grid {
        width: 100%;
        grid-template-columns: 1fr !important;
    }


    .package-card.featured {
        width: 100%;
        transform: scale(1);
    }

    .amount {
        font-size: 2.5rem !important;
    }
}

/* Remove scroll indicator */
/* Remove scroll indicator */
.scroll-indicator {
    display: none !important;
}

/* ===================================
   Global Scrollbar Hiding
   =================================== */
/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html,
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ===================================
   Enterprise Strip + Map Picker
   =================================== */
.enterprise-strip {
    background: #0b1329;
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.enterprise-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 12px;
}

.enterprise-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 14px;
}

.enterprise-pill i {
    color: #fb923c;
}

.map-picker-panel {
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    background: #f8fbff;
    padding: 12px;
}

.map-picker-toolbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    margin-bottom: 10px;
}

.map-picker-toolbar input {
    width: 100%;
}

.map-search-btn,
.map-current-btn {
    border: none;
    border-radius: 10px;
    padding: 0 14px;
    font-weight: 700;
    color: #fff;
}

.map-search-btn {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.map-current-btn {
    background: linear-gradient(135deg, #0f766e, #0d9488);
}

.map-search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.registration-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: 1px solid #dbeafe;
}

.map-picked-text {
    margin-top: 10px;
    font-size: 13px;
    color: #1e3a8a;
    font-weight: 600;
}

.contact-note-card {
    /* align-items ditangani oleh .info-card dan override mobile */
}

.contact-links-card {
    /* align-items ditangani oleh .info-card dan override mobile */
}

.contact-map-links {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.contact-map-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #0b3a75;
    background: #e8f0ff;
    border: 1px solid #c6dcff;
    transition: transform .18s ease, background .18s ease;
}

.contact-map-links a:hover {
    transform: translateY(-1px);
    background: #dbeafe;
}

@media (max-width: 768px) {
    .enterprise-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-picker-toolbar {
        grid-template-columns: 1fr;
    }

    .contact-info .info-card,
    .contact-info .contact-note-card {
        align-items: center;
        text-align: center;
    }

    .contact-info .info-card > div:not(.info-icon) {
        width: 100%;
        text-align: center;
    }

    .contact-info .info-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info .contact-note-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px;
    }

    .contact-info .contact-note-card > div:not(.info-icon) {
        width: 100%;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .contact-info .contact-note-card .info-icon {
        margin: 0 auto !important;
        align-self: center !important;
    }

    .contact-info .contact-note-card .info-icon i {
        display: block;
        line-height: 1;
    }

    .contact-info .contact-note-card h4,
    .contact-info .contact-note-card p,
    .contact-info .service-hours-card h4,
    .contact-info .service-hours-card p,
    .contact-info .service-commitment-card h4,
    .contact-info .service-commitment-card p {
        width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-info .contact-note-card .info-icon + div {
        padding-left: 0 !important;
    }
}