/* Google Map Page Styles */

/* Common Utilities */
.gmap-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.bg-light-blue {
    background-color: #f8fbff;
}

.text-blue {
    color: #0d6efd;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.text-gray {
    color: #4a5568;
}

.btn-glow {
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.4);
}

.rounded-image {
    border-radius: 20px;
    width: 100%;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.shadow-md {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hero Section */
.gmap-hero {
    padding: 120px 0 100px;
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
}

.gmap-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(13, 110, 253, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.gmap-hero .container {
    position: relative;
    z-index: 2;
}

.gmap-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.badge-light-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #e6f0ff;
    border-radius: 50px;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border: 1px solid rgba(13, 110, 253, 0.2);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
}

.badge-light-blue::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    box-shadow: 0 0 10px #0d6efd;
    animation: pulseGlowBadge 2s infinite;
}

@keyframes pulseGlowBadge {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

.gmap-hero__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #0b1c3b;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gmap-hero__desc {
    font-size: 18px;
    color: #4a5568;
    max-width: 90%;
    line-height: 1.7;
}

/* Hero Visual Composition */
.gmap-hero__visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gmap-hero__glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.gmap-mockup {
    width: 360px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gmap-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(13, 110, 253, 0.15);
}

.gmap-mockup__header {
    background: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid #edf2f7;
}

.gmap-mockup__search {
    background: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    color: #a0aec0;
    font-size: 13px;
    border: 1px solid #e2e8f0;
}

.gmap-mockup__search .mic {
    margin-left: auto;
    color: #0d6efd;
}

.gmap-mockup__map-area {
    height: 180px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(to right, #cbd5e1 1px, transparent 1px),
        linear-gradient(to bottom, #cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: #f1f5f9;
}

.gmap-mockup__map-area::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 20px;
    background: #fff;
    transform: rotate(-25deg);
    top: 60px;
    left: -50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.gmap-mockup__map-area::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 15px;
    background: #fff;
    transform: rotate(45deg);
    top: 40px;
    left: -20%;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.gmap-pin {
    position: absolute;
    z-index: 5;
}

.center-pin {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ea4335;
    font-size: 32px;
    filter: drop-shadow(0 5px 5px rgba(234, 67, 53, 0.4));
}

.pin-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(234, 67, 53, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes ping {
    75%, 100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.pin-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    margin-bottom: 8px;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.small-pin {
    color: #0d6efd;
    font-size: 12px;
}
.small-pin.p1 { top: 30%; left: 20%; }
.small-pin.p2 { top: 70%; left: 75%; color: #fbbc04; }
.small-pin.p3 { top: 20%; left: 80%; color: #34a853; }

.gmap-mockup__card {
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    margin-top: -15px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
}

.gmap-mockup__card .card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.gmap-mockup__card .card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}

.gmap-mockup__card .card-rating span:first-child {
    font-weight: 700;
    color: #1a1a1a;
}

.gmap-mockup__card .stars {
    color: #fbbc04;
    display: flex;
    gap: 2px;
}

.gmap-mockup__card .reviews {
    color: #718096;
}

.gmap-mockup__card .card-info {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gmap-mockup__card .card-info i {
    color: #34a853;
}

.gmap-mockup__card .card-actions {
    display: flex;
    gap: 10px;
}

.gmap-mockup__card .action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    padding: 10px 0;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #0d6efd;
    cursor: pointer;
    transition: all 0.2s;
}

.gmap-mockup__card .action-btn i {
    font-size: 16px;
}

.gmap-mockup__card .action-btn.primary {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.gmap-mockup__card .action-btn:hover {
    background: #e6f0ff;
}
.gmap-mockup__card .action-btn.primary:hover {
    background: #0b5ed7;
}

/* Floating Badges */
.gmap-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.gmap-float-badge.float-up {
    top: 50px;
    right: 0;
    animation: floatUp 4s ease-in-out infinite;
}

.gmap-float-badge.float-down {
    bottom: 50px;
    left: -20px;
    animation: floatDown 5s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.bg-green { background: #10b981; }
.bg-blue { background: #0d6efd; }

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content strong {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.badge-content span {
    font-size: 11px;
    color: #718096;
    font-weight: 500;
}

.gmap-consult-bar {
    text-align: center;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.gmap-consult-bar__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.gmap-consult-bar__form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 8px 8px 8px 30px;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border: 1px solid #e6f0ff;
}

.gmap-consult-bar__form .form-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.gmap-consult-bar__form .form-input-group:first-child {
    flex: 1.5;
    position: relative;
    padding-right: 20px;
}

.gmap-consult-bar__form .form-input-group:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background: #e2e8f0;
}

.gmap-consult-bar__form .form-input-group i {
    color: #4a5568;
    font-size: 18px;
}

.gmap-consult-bar__form .form-input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #1a1a1a;
    background: transparent;
    padding: 10px 0;
}

.gmap-consult-bar__form .form-input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #1a1a1a;
    background: transparent;
    padding: 10px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.gmap-consult-bar__form .form-input-group select:invalid {
    color: #a0aec0;
}

.gmap-consult-bar__form .form-input-group select option {
    color: #1a1a1a;
    background: #fff;
}

.gmap-consult-bar__form .form-input-group input::placeholder {
    color: #a0aec0;
}

.gmap-consult-bar__form .btn-primary {
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}


/* Overview Section Updates */
.gmap-overview {
    padding: 100px 0;
}

.overview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: #0d6efd;
}

.overview-text .lead {
    font-size: 16px;
    line-height: 1.8;
}

/* Modern List */
.overview-list-modern {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.overview-list-modern li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-list-modern li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.08);
    border-color: #cce0ff;
}

.overview-list-modern .icon-box {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.overview-list-modern .list-content h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.overview-list-modern .list-content p {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

/* Visual Dashboard Mockup */
.overview-visual-col {
    position: relative;
}

.gmap-overview-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.overview-dash-card {
    width: 380px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.4s ease;
}
.overview-dash-card:hover {
    transform: translateY(-10px);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dash-header .traffic-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.dash-header .traffic-badge {
    background: #e6ffed;
    color: #10b981;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dash-chart {
    height: 180px;
    margin-bottom: 30px;
    position: relative;
}

.dash-chart::before {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #edf2f7;
    z-index: 0;
}

.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 25px;
    position: relative;
    z-index: 1;
}

.bar-chart .bar {
    width: 30px;
    background: #e2e8f0;
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease;
}

.bar-chart .bar.active {
    background: #0d6efd;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.bar-chart .bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #a0aec0;
    font-weight: 600;
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dash-stats .stat-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-stats .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bg-blue-light { background: #e6f0ff; }
.bg-green-light { background: #e6ffed; }

.dash-stats .info {
    display: flex;
    flex-direction: column;
}

.dash-stats .info span {
    font-size: 12px;
    color: #718096;
}

.dash-stats .info strong {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.overview-float-map {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px 15px 15px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.5);
    animation: floatUp 5s ease-in-out infinite alternate;
}

.map-marker {
    position: relative;
    width: 45px;
    height: 45px;
    background: #ea4335;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.map-marker .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(234, 67, 53, 0.4);
    border-radius: 50%;
    animation: ping 2s infinite;
}

.map-info {
    display: flex;
    flex-direction: column;
}

.map-info strong {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
}

.map-info span {
    font-size: 12px;
    color: #718096;
}

/* Premium Service Cards */
.gmap-services {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card.gmap-card-fx {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(13, 110, 253, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.service-card.gmap-card-fx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02) 0%, rgba(13, 110, 253, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-bg-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0) 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
    transform: scale(1);
}

.service-card.gmap-card-fx:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.3);
}

.service-card.gmap-card-fx:hover::before {
    opacity: 1;
}

.service-card.gmap-card-fx:hover .card-bg-shape {
    transform: scale(2.5);
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0) 70%);
}

.service-card.gmap-card-fx .service-card__icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #0d6efd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.service-card.gmap-card-fx .service-card__icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 2px dashed rgba(13, 110, 253, 0.3);
    animation: rotateDash 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes rotateDash {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card.gmap-card-fx:hover .service-card__icon {
    transform: scale(1.1) translateY(-5px);
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.25);
}

.service-card.gmap-card-fx:hover .service-card__icon::after {
    opacity: 1;
}

.service-card.gmap-card-fx h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.service-card.gmap-card-fx:hover h3 {
    color: #0d6efd;
}

.service-card.gmap-card-fx p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card.gmap-card-fx .card-action {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.gmap-card-fx:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}

.service-card.gmap-card-fx .card-action a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 10px 25px;
    background: #f0f7ff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-card.gmap-card-fx .card-action a:hover {
    background: #0d6efd;
    color: #fff;
    gap: 12px;
}

/* Benefits Grid Modern */
.gmap-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 110, 253, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.3);
}

.benefit-card-modern:hover::before {
    opacity: 1;
}

.benefit-card-modern .icon-box {
    width: 60px;
    height: 60px;
    background: #e6f0ff;
    color: #0d6efd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.benefit-card-modern:hover .icon-box {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card-modern .card-content h4 {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.benefit-card-modern .card-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Row */
.benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-pill-fx {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 25px 12px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 10px 20px rgba(13, 110, 253, 0.05), 
        inset 0 0 0 1px rgba(255,255,255,1), 
        inset 0 0 0 2px rgba(13, 110, 253, 0.05);
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.benefit-pill-fx::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.benefit-pill-fx:hover::before {
    left: 200%;
}

.benefit-pill-fx:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
    background: #0d6efd;
    color: #fff;
}

.benefit-pill-fx .icon-wrapper {
    width: 38px;
    height: 38px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.benefit-pill-fx:hover .icon-wrapper {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Implementation Grid */
.impl-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.impl-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.impl-item-fx {
    background: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.impl-item-fx::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #0d6efd;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.impl-item-fx:hover::before,
.impl-item-fx.active::before {
    transform: scaleY(1);
}

.impl-item-fx:hover,
.impl-item-fx.active {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
    background: #f8fbff;
    border-color: rgba(13, 110, 253, 0.3);
}

.impl-item-fx.active {
    border-color: rgba(13, 110, 253, 0.6);
}

.impl-item-fx .icon-box {
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    color: #0d6efd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.impl-item-fx:hover .icon-box,
.impl-item-fx.active .icon-box {
    background: #0d6efd;
    color: #fff;
    transform: rotate(10deg);
}

/* Visual Terminal Mockup */
.impl-visual-mockup {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-top: 30px;
    border: 1px solid #1e293b;
    font-family: 'Consolas', monospace;
}

.mockup-header {
    background: #1e293b;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #334155;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-header .dot.red { background: #ff5f56; }
.mockup-header .dot.yellow { background: #ffbd2e; }
.mockup-header .dot.green { background: #27c93f; }

.mockup-header .title {
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.mockup-body {
    padding: 20px;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.8;
}

.terminal-line.indent {
    padding-left: 15px;
    color: #94a3b8;
}

.blink {
    animation: blinker 1s linear infinite;
    background: #0d6efd;
    color: transparent;
}
@keyframes blinker {
    50% { opacity: 0; }
}

.progress-bar-container {
    height: 6px;
    background: #334155;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #0d6efd;
    width: 0%;
    box-shadow: 0 0 10px #0d6efd;
    transition: width 1s ease-out;
}

.progress-text {
    font-size: 11px;
    color: #64748b;
    text-align: right;
}

.mockup-body {
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.mockup-code-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.mockup-graphic-side {
    flex: 0.8;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(13, 110, 253, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.anim-scene-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Scene 0: Map Info */
.scene-map .pin { font-size: 50px; color: #ea4335; animation: bouncePin 1.5s infinite; position: relative; z-index: 2; }
.scene-map .ping { position: absolute; bottom: -5px; left: 50%; width: 30px; height: 10px; background: rgba(234, 67, 53, 0.3); border-radius: 50%; transform: translateX(-50%); animation: pingShadow 1.5s infinite; z-index: 1; }
@keyframes bouncePin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes pingShadow { 0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; } 50% { transform: translateX(-50%) scale(0.5); opacity: 0.2; } }

/* Scene 1: PR */
.scene-pr .doc { font-size: 45px; color: #3b82f6; animation: floatDoc 2s infinite; }
.scene-pr .l-wrap { position: absolute; right: 20px; display: flex; flex-direction: column; gap: 8px; }
.scene-pr .l { height: 4px; background: #3b82f6; border-radius: 4px; animation: slideLine 2s infinite; opacity: 0; }
.scene-pr .l1 { width: 40px; animation-delay: 0s; }
.scene-pr .l2 { width: 30px; animation-delay: 0.3s; }
@keyframes floatDoc { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slideLine { 0% { transform: translateX(20px); opacity: 0; } 50% { transform: translateX(0); opacity: 1; } 100% { opacity: 0; } }

/* Scene 2: Schema */
.scene-schema .node { position: absolute; width: 30px; height: 30px; background: #3b82f6; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; animation: pulseNode 2s infinite alternate; }
.scene-schema .n1 { top: 20px; left: 30px; }
.scene-schema .n2 { bottom: 20px; right: 30px; }
.scene-schema .link { position: absolute; width: 60px; height: 2px; background: #3b82f6; transform: rotate(45deg); opacity: 0.5; }
@keyframes pulseNode { to { box-shadow: 0 0 15px rgba(59, 130, 246, 0.6); transform: scale(1.1); } }

/* Scene 3: Entity */
.scene-entity .brain { font-size: 50px; color: #8b5cf6; animation: glowBrain 2s infinite alternate; }
.scene-entity .orbit { position: absolute; width: 100px; height: 100px; border: 1px dashed rgba(139, 92, 246, 0.5); border-radius: 50%; animation: spinOrbit 6s linear infinite; }
.scene-entity .orbit i { position: absolute; top: -10px; left: 40px; color: #8b5cf6; background: #0f172a; padding: 2px; }
@keyframes glowBrain { to { text-shadow: 0 0 20px rgba(139, 92, 246, 0.6); transform: scale(1.05); } }
@keyframes spinOrbit { to { transform: rotate(360deg); } }

/* Scene 4: Img SEO */
.scene-img .pic { font-size: 50px; color: #10b981; }
.scene-img .scan { position: absolute; width: 60px; height: 3px; background: #10b981; box-shadow: 0 0 10px #10b981; animation: scanImage 2s infinite alternate; }
@keyframes scanImage { 0% { top: 30px; } 100% { top: 120px; } }

/* Scene 5: Backlink */
.scene-backlink .pin { font-size: 40px; color: #3b82f6; z-index: 2; }
.scene-backlink .ar { position: absolute; color: #10b981; font-size: 20px; animation: flyArrow 2s infinite; opacity: 0; }
.scene-backlink .a1 { top: 20px; left: 20px; transform: rotate(45deg); }
.scene-backlink .a2 { bottom: 20px; right: 20px; transform: rotate(-135deg); animation-delay: 1s; }
@keyframes flyArrow { 0% { opacity: 0; transform: translate(-20px, -20px); } 50% { opacity: 1; transform: translate(0, 0); } 100% { opacity: 0; } }

/* Scene 6: Embed */
.scene-embed .win { width: 100px; height: 70px; background: #1e293b; border-radius: 6px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #334155; }
.scene-embed .head { height: 15px; background: #0f172a; display: flex; gap: 3px; align-items: center; padding: 0 5px; }
.scene-embed .head span { width: 5px; height: 5px; background: #64748b; border-radius: 50%; }
.scene-embed .b { flex: 1; display: flex; align-items: center; justify-content: center; color: #3b82f6; font-size: 25px; animation: popWindow 2s infinite; }
@keyframes popWindow { 0%, 100% { transform: scale(0.9); } 50% { transform: scale(1.1); } }

/* Scene 7: Stars */
.scene-stars i { color: #f59e0b; font-size: 20px; margin: 0 2px; animation: popStar 1s infinite alternate; }
.scene-stars i:nth-child(2) { animation-delay: 0.2s; } .scene-stars i:nth-child(3) { animation-delay: 0.4s; }
@keyframes popStar { to { transform: scale(1.3); filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8)); } }

/* Scene 8: Satellite */
.scene-sat .earth { font-size: 50px; color: #3b82f6; }
.scene-sat .orb { position: absolute; width: 100px; height: 100px; animation: spinOrbit 4s linear infinite; }
.scene-sat .orb i { position: absolute; top: -10px; left: 40px; font-size: 20px; color: #94a3b8; }

/* Scene 9: Report */
.scene-report .chart { display: flex; align-items: flex-end; gap: 8px; height: 60px; border-bottom: 2px solid #334155; }
.scene-report .bar { width: 15px; background: #3b82f6; border-radius: 2px 2px 0 0; animation: growBar 2s infinite ease-out; transform-origin: bottom; }
.scene-report .b1 { height: 40%; } .scene-report .b2 { height: 70%; animation-delay: 0.3s; } .scene-report .b3 { height: 100%; background: #10b981; animation-delay: 0.6s; }
@keyframes growBar { 0% { transform: scaleY(0); } 100% { transform: scaleY(1); } }

/* ROI Stats Modern Bento */
.gmap-roi-modern {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.gmap-roi-modern::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.gmap-roi-modern::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.gmap-roi-modern .container {
    position: relative;
    z-index: 1;
}

.roi-modern-header .section-subtitle {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(13, 110, 253, 0.2);
    font-weight: 800;
    letter-spacing: 2px;
}
.roi-modern-header .section-subtitle::before {
    display: none;
}

.roi-modern-header .section-title {
    color: #1a1a1a;
}

.roi-modern-header .header-desc {
    color: #4a5568;
    font-size: 16px;
}

.roi-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 24px;
}

.roi-bento-card {
    border-radius: 28px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(13, 110, 253, 0.08);
    cursor: default;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.roi-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.2);
}

.roi-bento-card.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.roi-bento-card.card-medium {
    grid-column: span 1;
    grid-row: span 1;
}

/* Colors & Styles */
.gradient-blue {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.2);
}

.gradient-dark {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(13, 110, 253, 0.1);
}

.dark-glass {
    background: #ffffff;
}

.light-glass {
    background: #ffffff;
}

.roi-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-large .roi-content {
    justify-content: flex-start;
}
.card-large .roi-data {
    margin-top: auto;
}

.card-large .roi-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 0;
}

.roi-icon {
    width: 45px;
    height: 45px;
    background: #f0f7ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0d6efd;
    margin-bottom: 15px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.gradient-blue .roi-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.text-green { color: #10b981; }
.text-gold { color: #f59e0b; }
.text-blue { color: #0d6efd; }
.text-success { color: #10b981; }

.roi-data h3 {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 5px;
    line-height: 1;
    letter-spacing: -1px;
}

.gradient-blue .roi-data h3 {
    color: #fff;
}

.card-large .roi-data h3 {
    font-size: 64px;
}

.roi-data .unit {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    margin-left: 2px;
}

.gradient-blue .roi-data .unit {
    color: rgba(255, 255, 255, 0.8);
}

.card-large .roi-data .unit {
    font-size: 36px;
}

.roi-data p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gradient-blue .roi-data p {
    color: rgba(255, 255, 255, 0.9);
}

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 60%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 1;
}

.gradient-blue .card-glow {
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
}

/* ROI Visual Animations */
.roi-visual {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.wave-chart {
    width: 150px;
    height: 80px;
    position: relative;
}
.wave-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 50" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="4" stroke-linecap="round" d="M0 40 L 20 20 L 40 30 L 60 10 L 80 25 L 100 5" /></svg>') no-repeat center bottom;
    background-size: contain;
}
.wave-chart::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    top: 5px;
    right: 0;
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
    animation: pingDot 2s infinite;
}

@keyframes pingDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.pulse-rings {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-rings .ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: ringPulse 2.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pulse-rings .ring:nth-child(2) { animation-delay: 0.5s; }
.pulse-rings .ring:nth-child(3) { animation-delay: 1s; }

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.rank-bars {
    position: absolute;
    top: 35px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 35px;
}

.r-bar {
    width: 10px;
    background: #e2e8f0;
    border-radius: 3px;
}
.r-bar.b1 { height: 40%; }
.r-bar.b2 { height: 70%; }
.r-bar.b3 { height: 100%; background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); animation: barGlow 2s infinite alternate; }
@keyframes barGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.pie-chart-anim {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#0d6efd 0% 70%, #e2e8f0 70% 100%);
    position: relative;
    transform: rotate(-45deg);
    box-shadow: inset 0 0 0 20px #fff, 0 10px 20px rgba(13, 110, 253, 0.1);
}
.pie-chart-anim::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.arrow-path {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 40px;
}
.arrow-path svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 10;
    animation: dashAnim 2s linear infinite;
}
@keyframes dashAnim {
    to { stroke-dashoffset: -20; }
}

.shield-anim {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 6px 6px 22px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 18px;
    animation: shieldFloat 3s infinite ease-in-out;
}
@keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
    .roi-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(180px, auto);
    }
}

@media (max-width: 768px) {
    .roi-bento-grid {
        grid-template-columns: 1fr;
    }
    .roi-bento-card.card-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
    .roi-bento-card {
        min-height: 180px;
    }
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 40px;
    right: 40px;
    height: 1px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 31px; /* 35px center - 4px radius */
    left: 40px;
    width: 10px;
    height: 10px;
    background: #0d6efd;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px #0d6efd;
    animation: moveProcessDot 4s linear infinite;
}

@keyframes moveProcessDot {
    0% { left: 40px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 40px); opacity: 0; }
}

.proc-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 0 0 18%;
    max-width: 18%;
    cursor: pointer;
}

.proc-icon {
    width: 70px;
    height: 70px;
    background: #e6f0ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 0 0 10px #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.proc-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid #0d6efd;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.proc-step:hover .proc-icon {
    transform: translateY(-10px) scale(1.1);
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3), 0 0 0 10px rgba(13, 110, 253, 0.1);
}

.proc-step:hover .proc-icon::before {
    animation: pulseRingStep 1.5s infinite;
    opacity: 1;
}

@keyframes pulseRingStep {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.proc-step h4 {
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.proc-step:hover h4 {
    color: #0d6efd;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
    transition: all 0.3s ease;
}

.pricing-card .btn-outline:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.pricing-card.highlighted {
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
}

.pricing-card:hover, 
.pricing-card.highlighted:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2), 0 0 20px rgba(13, 110, 253, 0.1);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card__title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-card__price {
    font-size: 32px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 5px;
}

.pricing-card__note {
    font-size: 13px;
    color: #718096;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card__price span {
    font-size: 14px;
    font-weight: 500;
    color: #718096;
}

.pricing-card.highlighted .pricing-card__price {
    color: #0d6efd;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-card__features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card-modern {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testi-card-modern::before {
    content: '\f10d'; /* FontAwesome Quote Left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 100px;
    color: #f8fafc;
    z-index: 0;
    transition: all 0.4s ease;
}

.testi-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.testi-card-modern:hover::before {
    color: #e6f0ff;
    transform: rotate(10deg) scale(1.1);
}

.testi-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 4px;
}

.testi-text {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
    flex-grow: 1;
}

.testi-author-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-avatar.bg-blue { background: linear-gradient(135deg, #0d6efd, #0dcaf0); }
.author-avatar.bg-green { background: linear-gradient(135deg, #10b981, #34d399); }
.author-avatar.bg-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.author-info strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

.author-info span {
    font-size: 13px;
    color: #64748b;
}

.testi-icon-watermark {
    margin-left: auto;
    font-size: 24px;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.testi-card-modern:hover .testi-icon-watermark {
    color: #0d6efd;
}

/* CTA Layout */
.cta-box-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    overflow: hidden;
    margin: 20px auto 0;
    max-width: 950px;
}

.cta-left {
    background: #0d6efd;
    padding: 40px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.cta-contact-group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
}

.cta-contact-item i {
    font-size: 20px;
    opacity: 0.9;
}

.cta-right {
    padding: 40px 50px;
}

.gmap-cta-form .form-control {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
}

.gmap-cta-form .wpcf7-submit {
    margin: 20px auto 0;
    display: block;
    min-width: 200px;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .gmap-hero__inner, .overview-inner, .impl-inner, .cta-box-layout {
        grid-template-columns: 1fr;
    }
    .services-grid, .pricing-grid, .testi-grid {
        grid-template-columns: 1fr;
    }
    .roi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    .process-steps::before {
        left: 35px;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        border-top: none;
        border-left: 2px dashed #cbd5e1;
    }
    .process-steps::after {
        left: 30.5px;
        top: 0;
        animation: moveProcessDotVertical 4s linear infinite;
    }
    @keyframes moveProcessDotVertical {
        0% { top: 0; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }
    .proc-step {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 30px;
    }
    .proc-icon {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    .pricing-card.highlighted {
        padding: 40px 30px;
        transform: none;
    }
    .pricing-card:hover {
        transform: none;
    }
}
@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .impl-items-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hero Mobile Optimization */
    .gmap-hero {
        padding: 80px 0 50px;
    }
    .gmap-hero__title {
        font-size: 32px;
    }
    .gmap-hero__desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 15px;
    }
    .gmap-hero__visual {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .gmap-mockup {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        transform: none; /* Reset transform on mobile to prevent overflow */
    }
    .gmap-mockup:hover {
        transform: translateY(-5px);
    }
    .gmap-mockup__card .action-btn {
        font-size: 10px;
        padding: 8px 0;
        gap: 4px;
    }
    .gmap-mockup__card .action-btn i {
        font-size: 14px;
    }
    .gmap-mockup__card .card-info {
        font-size: 11px;
    }
    .gmap-float-badge {
        display: none; /* Hide floating badges on mobile to prevent clutter and overflow */
    }
    
    /* Overview Dashboard Mobile */
    .overview-dash-card {
        width: 100%;
        max-width: 320px;
        padding: 20px;
    }
    .gmap-overview-visual {
        height: auto;
        padding: 40px 0;
    }
    .overview-float-map {
        display: none;
    }
    
    /* Implementation Mockup Mobile */
    .mockup-body {
        flex-direction: column;
    }
    .mockup-graphic-side {
        min-height: 120px;
    }
    
    /* Section Subtitle Mobile */
    .section-subtitle {
        padding-left: 0;
        display: block;
        text-align: center;
    }
    .section-subtitle::before {
        display: none;
    }
    .overview-text .section-title {
        display: block;
        text-align: center;
    }
    .overview-text .lead {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .overview-list-modern .list-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .gmap-hero__glow-bg {
        width: 250px;
        height: 250px;
    }
}

/* CF7 Wrapper Fix for Inline Forms */
.form-input-group .wpcf7-form-control-wrap {
    display: block;
    flex-grow: 1;
    width: 100%;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    text-overflow: ellipsis;
}

/* ============================================
   Ranking Storyline Section
   ============================================ */
.gmap-ranking-storyline {
    background-color: #fafbfc;
}

.storyline-header {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.storyline-title {
    font-size: 32px;
    font-weight: 800;
    color: #0b1c3b;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.storyline-desc {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 0;
}

.storyline-chart-wrapper {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.storyline-chart {
    display: flex;
    width: 100%;
    position: relative;
    padding-left: 40px;
}

.y-axis {
    position: absolute;
    left: 0;
    top: -10px;
    bottom: 30px;
    width: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    color: #718096;
    padding-right: 10px;
}

.y-label {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.chart-area {
    flex: 1;
    position: relative;
    height: 350px;
    border-left: 1px solid #cbd5e1;
    border-bottom: 2px solid #1a1a1a;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.grid-line {
    width: 100%;
    height: 1px;
    background-color: #f1f5f9;
}

.line-chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: visible;
}

.chart-animated-line {
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
}

.chart-animated-line.animate {
    animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-animated-dot {
    opacity: 0;
    r: 0;
    transform-origin: center;
}

.chart-animated-dot.animate {
    animation: popDot 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: var(--delay);
}

@keyframes popDot {
    0% {
        opacity: 0;
        r: 0;
    }
    100% {
        opacity: 1;
        r: 6px;
    }
}

.x-axis {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    display: flex;
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.x-axis span {
    position: absolute;
    transform: translateX(-50%);
}
.x-axis span:nth-child(1) { left: 5%; }
.x-axis span:nth-child(2) { left: 27.5%; }
.x-axis span:nth-child(3) { left: 50%; }
.x-axis span:nth-child(4) { left: 72.5%; }
.x-axis span:nth-child(5) { left: 95%; }

.storyline-stages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.stage-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(11, 28, 59, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    transition: background 0.3s ease;
}

.stage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 28, 59, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.stage-item:hover::before {
    background: #3b82f6;
}

.stage-time {
    font-size: 11px;
    font-weight: 700;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stage-item:hover .stage-time {
    background: #3b82f6;
    color: #fff;
}

.stage-rank {
    font-size: 22px;
    font-weight: 900;
    color: #0b1c3b;
    margin-bottom: 8px;
}

.stage-kw {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .storyline-stages {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stage-item {
        padding: 20px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }
    .stage-item::before {
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
    }
    .stage-time {
        margin-bottom: 0;
    }
    .stage-rank {
        margin-bottom: 0;
        font-size: 18px;
    }
    .stage-kw {
        display: none; /* Hide keyword on very small screens to keep it clean, or keep it */
    }
    .x-axis {
        font-size: 10px;
    }
    .chart-area {
        height: 250px;
    }
    .storyline-chart {
        padding-left: 30px;
    }
    .y-axis {
        width: 30px;
    }
}


