/* ========================================
   GEO Service Page Styles
   ======================================== */

/* Fix: Override style.css .transy opacity to ensure content is visible */
.transy {
    opacity: 1 !important;
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
}

/* Common Section Title */
.geo-section-title {
    text-align: center;
    padding: 80px 0 50px;
}

.geo-section-title h3 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.geo-section-title h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #e60012;
    margin: 15px auto 0;
}

.geo-section-title p {
    font-size: 16px;
    color: #666;
}

/* ========================================
   Hero Banner
   ======================================== */
.geo-banner {
    width: 100%;
    min-height: 600px;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
}

.geo-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.geo-banner-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.geo-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.geo-banner-text {
    flex: 1;
    max-width: 600px;
}

.geo-banner-text h1 {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.geo-banner-subtitle {
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 25px;
    font-weight: 500;
}

.geo-banner-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.geo-banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #e60012 0%, #ff4757 100%);
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
}

.geo-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.4);
    color: #fff;
}

.geo-banner-btn i {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 10px;
    vertical-align: middle;
}

/* Visual Ring Animation */
.geo-banner-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.geo-visual-ring {
    position: relative;
    width: 350px;
    height: 350px;
}

.geo-visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.4);
    z-index: 10;
}

.geo-visual-center span {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.geo-visual-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.geo-visual-orbit.orbit-2 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
    border-color: rgba(124, 58, 237, 0.2);
    animation-duration: 15s;
    animation-direction: reverse;
}

.geo-visual-orbit.orbit-3 {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    border-color: rgba(0, 212, 255, 0.15);
    animation-duration: 12s;
}

.geo-visual-orbit.orbit-4 {
    width: 340px;
    height: 340px;
    margin: -170px 0 0 -170px;
    border-color: rgba(124, 58, 237, 0.15);
    animation-duration: 25s;
    animation-direction: reverse;
}

.geo-visual-orbit.orbit-5 {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    border-color: rgba(0, 212, 255, 0.1);
    animation-duration: 30s;
}

.geo-node {
    position: absolute;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.orbit-1 .geo-node { top: -15px; left: 50%; transform: translateX(-50%); }
.orbit-2 .geo-node { bottom: -15px; left: 50%; transform: translateX(-50%); }
.orbit-3 .geo-node { top: 50%; right: -20px; transform: translateY(-50%); }
.orbit-4 .geo-node { top: 50%; left: -20px; transform: translateY(-50%); }
.orbit-5 .geo-node { top: 30%; right: 10%; }

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   GEO Intro Section
   ======================================== */
.geo-intro {
    background: #f8f9fa;
    padding: 0 0 60px;
}

.geo-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.geo-intro-text {
    flex: 1;
}

.geo-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.geo-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.geo-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.geo-intro-list {
    margin-top: 30px;
}

.geo-intro-list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    list-style: none;
}

.geo-intro-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
}

.geo-intro-list li i:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 6px;
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.geo-intro-chart {
    flex: 1;
    max-width: 500px;
}

.geo-chart-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.geo-chart-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.geo-chart-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.geo-chart-title {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.geo-chart-body {
    position: relative;
}

.geo-chart-line {
    width: 100%;
    height: 200px;
}

.geo-chart-line svg {
    width: 100%;
    height: 100%;
}

.geo-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.geo-chart-labels span {
    font-size: 13px;
    color: #999;
}

/* ========================================
   Search Habits Section
   ======================================== */
.geo-habits {
    background: #fff;
    padding-bottom: 80px;
}

.geo-habits-content {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.geo-habit-card {
    flex: 1;
    max-width: 380px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.geo-habit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}

.geo-habit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-habit-globe {
    width: 40px;
    height: 40px;
    border: 3px solid #00d4ff;
    border-radius: 50%;
    position: relative;
}

.geo-habit-globe:before,
.geo-habit-globe:after {
    content: '';
    position: absolute;
    border: 2px solid #00d4ff;
    border-radius: 50%;
}

.geo-habit-globe:before {
    width: 50px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: none;
    border-right: none;
}

.geo-habit-globe:after {
    width: 20px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: none;
    border-bottom: none;
}

.geo-habit-phone {
    width: 30px;
    height: 50px;
    border: 3px solid #e60012;
    border-radius: 6px;
    position: relative;
}

.geo-habit-phone:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 3px;
    background: #e60012;
    border-radius: 2px;
}

.geo-habit-ai {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 10px;
    position: relative;
}

.geo-habit-ai:after {
    content: 'AI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.geo-habit-card h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.geo-habit-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.geo-platform {
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
}

.geo-habit-card:hover .geo-platform {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #fff;
}

.geo-habit-card > p {
    font-size: 14px;
    color: #888;
}

/* ========================================
   Why GEO Section
   ======================================== */
.geo-why {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding-bottom: 80px;
}

.geo-why .geo-section-title h3,
.geo-why .geo-section-title p {
    color: #fff;
}

.geo-why .geo-section-title h3:after {
    background: #00d4ff;
}

.geo-why-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.geo-why-card {
    flex: 1;
    max-width: 360px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.geo-why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.geo-why-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.geo-why-card:hover:before {
    transform: scaleX(1);
}

.geo-why-num {
    font-size: 48px;
    font-weight: bold;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: Arial, sans-serif;
}

.geo-why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.geo-why-icon svg {
    width: 100%;
    height: 100%;
}

.geo-why-card h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.geo-why-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* ========================================
   Service Core Section
   ======================================== */
.geo-core {
    background: #f8f9fa;
    padding-bottom: 80px;
}

.geo-core-content {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.geo-core-item {
    flex: 1;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.geo-core-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.geo-core-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.geo-core-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e60012 0%, #ff4757 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.geo-core-header h4 {
    font-size: 22px;
    color: #1a1a2e;
    font-weight: bold;
}

.geo-core-list {
    padding: 0;
}

.geo-core-list li {
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
    list-style: none;
}

.geo-core-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
}

/* ========================================
   Advantages Section
   ======================================== */
.geo-advantages {
    background: #fff;
    padding-bottom: 80px;
}

.geo-adv-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.geo-adv-text {
    flex: 1;
}

.geo-adv-text h3 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.geo-adv-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.geo-adv-list {
    padding: 0;
}

.geo-adv-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    list-style: none;
}

.geo-adv-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    margin-right: 18px;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.geo-adv-check:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 9px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.geo-adv-list li div strong {
    display: block;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.geo-adv-list li div p {
    font-size: 14px;
    color: #888;
}

.geo-adv-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
}

.geo-adv-phone {
    position: relative;
    width: 280px;
    height: 520px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.geo-phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.geo-phone-header {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
}

.geo-phone-header span {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.geo-phone-header span:first-child {
    width: 60px;
    height: 6px;
    border-radius: 3px;
}

.geo-phone-chat {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.geo-chat-item {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.geo-chat-ai {
    align-self: flex-start;
}

.geo-chat-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.geo-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
}

.geo-chat-ai .geo-chat-avatar {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
}

.geo-chat-user .geo-chat-avatar {
    background: #e60012;
}

.geo-chat-bubble {
    max-width: 200px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-all;
}

.geo-chat-ai .geo-chat-bubble {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border-bottom-left-radius: 4px;
}

.geo-chat-user .geo-chat-bubble {
    background: #e60012;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.geo-phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
    border-radius: 35px;
    pointer-events: none;
}

/* ========================================
   Process Section
   ======================================== */
.geo-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    padding-bottom: 100px;
}

.geo-process-timeline {
    position: relative;
    padding: 40px 0;
}

.geo-process-line {
    position: absolute;
    top: 85px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 3px;
}

.geo-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.geo-step {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.geo-step-num {
    font-size: 14px;
    color: #00d4ff;
    font-weight: bold;
    margin-bottom: 20px;
}

.geo-step-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #00d4ff;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.geo-step:hover .geo-step-dot {
    background: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1.2);
}

.geo-step h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.geo-step p {
    font-size: 14px;
    color: #888;
}

/* ========================================
   Testimonials Section
   ======================================== */
.geo-testimonials {
    background: #fff;
    padding-bottom: 80px;
}

.geo-testimonials-content {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.geo-testi-card {
    flex: 1;
    max-width: 380px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.geo-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.geo-testi-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.geo-testi-stars span {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.geo-testi-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.geo-testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.geo-testi-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.geo-testi-info strong {
    display: block;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.geo-testi-info span {
    font-size: 13px;
    color: #888;
}

/* ========================================
   News Section
   ======================================== */
.geo-news {
    background: #f8f9fa;
    padding-bottom: 80px;
}

.geo-news-content {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.geo-news-card {
    flex: 1;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.geo-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.geo-news-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.geo-news-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.geo-news-card:hover .geo-news-placeholder {
    transform: scale(1.1);
}

.geo-news-img1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.geo-news-img2 {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.geo-news-img3 {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
}

.geo-news-info {
    padding: 25px 30px 30px;
}

.geo-news-date {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.geo-news-info h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: bold;
}

.geo-news-info > p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.geo-news-more {
    font-size: 14px;
    color: #e60012;
    font-weight: 500;
    transition: all 0.3s ease;
}

.geo-news-more:hover {
    color: #ff4757;
}

.geo-news-more i {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid currentColor;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-left: 5px;
    vertical-align: middle;
}

/* ========================================
   FAQ Section
   ======================================== */
.geo-faq {
    background: #fff;
    padding-bottom: 80px;
}

.geo-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.geo-faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.geo-faq-item:hover {
    border-color: #ddd;
}

.geo-faq-item.active {
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.1);
}

.geo-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.geo-faq-question span {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.geo-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.geo-faq-icon:before,
.geo-faq-icon:after {
    content: '';
    position: absolute;
    background: #888;
    transition: all 0.3s ease;
}

.geo-faq-icon:before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geo-faq-icon:after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geo-faq-item.active .geo-faq-icon {
    transform: rotate(45deg);
}

.geo-faq-item.active .geo-faq-icon:before,
.geo-faq-item.active .geo-faq-icon:after {
    background: #00d4ff;
}

.geo-faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.geo-faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.geo-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.geo-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.geo-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.geo-cta-content h3 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.geo-cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.geo-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #e60012 0%, #ff4757 100%);
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.3);
}

.geo-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(230, 0, 18, 0.4);
    color: #fff;
}

.geo-cta-btn i {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 7px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 12px;
    vertical-align: middle;
}

/* ========================================
   Responsive Design
   ======================================== */
@media screen and (max-width: 1200px) {
    .geo-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 3%;
    }

    .geo-banner-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .geo-banner-text h1 {
        font-size: 36px;
    }

    .geo-banner-subtitle {
        font-size: 20px;
    }

    .geo-banner-visual {
        max-width: 100%;
    }

    .geo-visual-ring {
        width: 280px;
        height: 280px;
    }

    .geo-visual-center {
        width: 80px;
        height: 80px;
    }

    .geo-visual-center span {
        font-size: 22px;
    }

    .geo-visual-orbit {
        width: 220px;
        height: 220px;
        margin: -110px 0 0 -110px;
    }

    .geo-visual-orbit.orbit-2 {
        width: 170px;
        height: 170px;
        margin: -85px 0 0 -85px;
    }

    .geo-visual-orbit.orbit-3 {
        width: 130px;
        height: 130px;
        margin: -65px 0 0 -65px;
    }

    .geo-visual-orbit.orbit-4 {
        width: 260px;
        height: 260px;
        margin: -130px 0 0 -130px;
    }

    .geo-visual-orbit.orbit-5 {
        width: 300px;
        height: 300px;
        margin: -150px 0 0 -150px;
    }

    .geo-intro-content {
        flex-direction: column;
        gap: 40px;
    }

    .geo-intro-chart {
        max-width: 100%;
    }

    .geo-habits-content,
    .geo-why-cards,
    .geo-core-content,
    .geo-testimonials-content,
    .geo-news-content {
        flex-wrap: wrap;
    }

    .geo-habit-card,
    .geo-why-card,
    .geo-core-item,
    .geo-testi-card,
    .geo-news-card {
        max-width: 100%;
        flex: 0 0 calc(50% - 15px);
    }

    .geo-adv-content {
        flex-direction: column;
    }

    .geo-adv-visual {
        max-width: 100%;
    }

    .geo-process-line {
        display: none;
    }

    .geo-process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .geo-step {
        flex: 0 0 calc(33.33% - 20px);
        max-width: none;
    }

    .geo-section-title {
        padding: 50px 0 30px;
    }

    .geo-section-title h3 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .geo-banner {
        min-height: auto;
        margin-top: 60px;
    }

    .geo-banner-text h1 {
        font-size: 28px;
    }

    .geo-banner-subtitle {
        font-size: 18px;
    }

    .geo-banner-desc {
        font-size: 14px;
    }

    .geo-banner-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .geo-visual-ring {
        width: 240px;
        height: 240px;
    }

    .geo-visual-center {
        width: 70px;
        height: 70px;
    }

    .geo-visual-center span {
        font-size: 18px;
    }

    .geo-visual-orbit {
        width: 180px;
        height: 180px;
        margin: -90px 0 0 -90px;
    }

    .geo-visual-orbit.orbit-2 {
        width: 140px;
        height: 140px;
        margin: -70px 0 0 -70px;
    }

    .geo-visual-orbit.orbit-3 {
        width: 100px;
        height: 100px;
        margin: -50px 0 0 -50px;
    }

    .geo-visual-orbit.orbit-4 {
        width: 210px;
        height: 210px;
        margin: -105px 0 0 -105px;
    }

    .geo-visual-orbit.orbit-5 {
        width: 240px;
        height: 240px;
        margin: -120px 0 0 -120px;
    }

    .geo-node {
        font-size: 10px;
        padding: 4px 10px;
    }

    .geo-title {
        font-size: 32px;
    }

    .geo-habit-card,
    .geo-why-card,
    .geo-core-item,
    .geo-testi-card,
    .geo-news-card {
        flex: 0 0 100%;
    }

    .geo-step {
        flex: 0 0 calc(50% - 15px);
    }

    .geo-faq-question {
        padding: 18px 20px;
    }

    .geo-faq-question span {
        font-size: 14px;
    }

    .geo-faq-answer {
        padding: 0 20px 20px;
    }

    .geo-cta-content h3 {
        font-size: 26px;
    }

    .geo-cta-content p {
        font-size: 15px;
    }

    .geo-cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .geo-adv-phone {
        width: 240px;
        height: 440px;
    }

    .geo-section-title h3 {
        font-size: 24px;
    }

    .geo-why-card,
    .geo-core-item,
    .geo-habit-card {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .geo-step {
        flex: 0 0 100%;
    }

    .geo-visual-ring {
        width: 200px;
        height: 200px;
    }

    .geo-visual-orbit {
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
    }

    .geo-visual-orbit.orbit-2 {
        width: 110px;
        height: 110px;
        margin: -55px 0 0 -55px;
    }

    .geo-visual-orbit.orbit-3 {
        width: 80px;
        height: 80px;
        margin: -40px 0 0 -40px;
    }

    .geo-visual-orbit.orbit-4 {
        width: 170px;
        height: 170px;
        margin: -85px 0 0 -85px;
    }

    .geo-visual-orbit.orbit-5 {
        width: 190px;
        height: 190px;
        margin: -95px 0 0 -95px;
    }
}

/* Header fix for w1660 wrapper - REMOVED */

/* Ensure transy animations work */
@media screen and (min-width: 1200px) {
    .geo-section-title.transy {
        transform: translateY(80px);
    }

    .geo-section-title.tranShow {
        transform: translateY(0);
    }
}
