/* CONTRAST-FIXED VERSION - WCAG AA Compliant */

/* ==================================================
   GEO PAGE - BODY SECTIONS CSS
   Sage Titans - Generative Engine Optimization
   ================================================== */

/* GLOBAL SECTION HEADER */
.geo-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.geo-section-header h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}

.geo-section-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ==================================================
   AI PLATFORMS SECTION - DARK GLASS MORPHISM
   ================================================== */

.ai-platforms-section {
    padding: 80px 0;
    background: #fff;
}

.ai-platforms-main-heading {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    color: #111;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 16px;
}

.ai-platforms-intro {
    line-height: 1.65;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #666;
    text-align: center;
    font-size: 16px;
}

/* Two-Column Grid */
.ai-platforms-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    margin-top: 60px;
}

/* LEFT COLUMN - Content with SVG Icons */
.ai-platforms-content {
    padding-right: 20px;
}

.ai-platforms-heading {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ai-platforms-overview {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
}

.platform-description {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.platform-description:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.platform-description h4 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-svg-icon {
    flex-shrink: 0;
}

.platform-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* RIGHT COLUMN - Dark Glass Morphism Box */
/* ==================================================
   GLASS BOX WITH SLIDE-IN STATS ON HOVER
   ================================================== */

.ai-platforms-section {
    padding: 80px 0;
    background: #fff;
}

.ai-platforms-main-heading {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    color: #111;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 16px;
}

.ai-platforms-intro {
    line-height: 1.65;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #666;
    text-align: center;
    font-size: 16px;
}

/* Two-Column Grid */
.ai-platforms-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    margin-top: 60px;
}

/* LEFT COLUMN - Content with SVG Icons */
.ai-platforms-content {
    padding-right: 20px;
}

.ai-platforms-heading {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ai-platforms-overview {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
}

.platform-description {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.platform-description:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.platform-description h4 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-svg-icon {
    flex-shrink: 0;
}

.platform-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* RIGHT COLUMN - Dark Glass Morphism Box */
.ai-platforms-glass-box {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.glass-box-inner {
    background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 100%);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Platform Item - Default State with CENTERED alignment */
.glass-platform-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;  /* ✅ CENTERED (was flex-start) */
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Hover State */
.glass-platform-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
    padding-bottom: 20px;
    align-items: flex-start;  /* Align to top when stats appear */
}

/* Icon Circle */
.glass-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Platform Info Container */
.glass-platform-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Platform Name */
.glass-platform-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    display: block;
}

/* Stats Container - Hidden by Default */
.glass-platform-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show Stats on Hover */
.glass-platform-item:hover .glass-platform-stats {
    max-height: 60px;
    opacity: 1;
    margin-top: 4px;
}

/* Individual Stat Items */
.stat-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    display: block;
}

.stat-item:first-child {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Icon Colors - ChatGPT */
.glass-icon-chatgpt {
    background: rgba(16, 163, 127, 0.15);
    color: #34d399;
    border: 2px solid rgba(16, 163, 127, 0.3);
}

.glass-platform-item:hover .glass-icon-chatgpt {
    background: rgba(16, 163, 127, 0.25);
    border-color: rgba(16, 163, 127, 0.5);
    box-shadow: 0 0 20px rgba(16, 163, 127, 0.3);
}

/* Icon Colors - Perplexity */
.glass-icon-perplexity {
    background: rgba(14, 165, 233, 0.15);
    color: #60a5fa;
    border: 2px solid rgba(14, 165, 233, 0.3);
}

.glass-platform-item:hover .glass-icon-perplexity {
    background: rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

/* Icon Colors - Claude */
.glass-icon-claude {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.glass-platform-item:hover .glass-icon-claude {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Icon Colors - Gemini */
.glass-icon-gemini {
    background: rgba(66, 133, 244, 0.15);
    color: #fff;
    border: 2px solid rgba(66, 133, 244, 0.3);
}

.glass-platform-item:hover .glass-icon-gemini {
    background: rgba(66, 133, 244, 0.25);
    border-color: rgba(66, 133, 244, 0.5);
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

/* Icon Colors - Bing */
.glass-icon-bing {
    background: rgba(0, 120, 212, 0.15);
    color: #60a5fa;
    border: 2px solid rgba(0, 120, 212, 0.3);
}

.glass-platform-item:hover .glass-icon-bing {
    background: rgba(0, 120, 212, 0.25);
    border-color: rgba(0, 120, 212, 0.5);
    box-shadow: 0 0 20px rgba(0, 120, 212, 0.3);
}

/* Icon Colors - SearchGPT */
.glass-icon-searchgpt {
    background: rgba(102, 102, 102, 0.15);
    color: #9ca3af;
    border: 2px solid rgba(102, 102, 102, 0.3);
}

.glass-platform-item:hover .glass-icon-searchgpt {
    background: rgba(102, 102, 102, 0.25);
    border-color: rgba(102, 102, 102, 0.5);
    box-shadow: 0 0 20px rgba(102, 102, 102, 0.3);
}

/* ========================================
   RESPONSIVE - OPTION A
   ======================================== */

/* Tablet - Stack vertically, glass box comes FIRST */
@media (max-width: 992px) {
    .ai-platforms-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    /* Glass box appears ABOVE content */
    .ai-platforms-glass-box {
        position: static;
        order: 1;  /* Glass box first */
    }
    
    .ai-platforms-content {
        padding-right: 0;
        order: 2;  /* Content second */
    }
    
    /* 2-column grid for platforms */
    .glass-box-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Mobile - Glass box above, 2 columns, stats always visible */
@media (max-width: 640px) {
    .ai-platforms-intro {
        margin-bottom: 30px;
    }
    
    .ai-platforms-grid {
        gap: 30px;
    }
    
    /* Keep 2-column grid on mobile */
    .glass-box-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 20px;
        gap: 10px;
    }
    
    /* Always show stats on mobile (no hover needed) */
    .glass-platform-stats {
        max-height: 60px;
        opacity: 1;
        margin-top: 4px;
    }
    
    .glass-platform-item {
        padding: 12px;
        padding-bottom: 16px;
        align-items: flex-start;  /* Always top-aligned when stats visible */
    }
    
    .platform-description {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .glass-platform-name {
        font-size: 13px;
    }
    
    .stat-item {
        font-size: 10px;
    }
    
    .glass-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .glass-icon-circle svg {
        width: 22px;
        height: 22px;
    }
    
    .glass-platform-item {
        gap: 12px;
    }
}


/* HOW AI SEARCH WORKS */
.geo-how-it-works {
    padding: 80px 0;
    background: #f9fafb;
}

.geo-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.geo-how-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.geo-how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #0369a1;
}

.geo-how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.geo-how-icon--traditional {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.geo-how-icon--ai {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.geo-how-icon--why {
    background: rgba(196, 255, 13, 0.1);
    color: #9dcc0b;
}

.geo-how-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.geo-how-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.geo-how-card p strong {
    color: #111;
    font-weight: 600;
}

@media (max-width: 992px) {
    .geo-how-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* GEO SERVICES OFFERINGS */
.geo-services {
    padding: 80px 0;
    background: #fff;
}

.geo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.geo-service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.geo-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #0369a1;
}

/* Solid blue background */
.geo-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.geo-service-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.geo-service-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.geo-service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.geo-service-features span {
    font-size: 14px;
    color: #0369a1;
    padding-left: 20px;
    position: relative;
}

.geo-service-features span:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0369a1;
    font-weight: 700;
}

@media (max-width: 992px) {
    .geo-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .geo-services-grid {
        grid-template-columns: 1fr;
    }
}

/* GEO PROCESS (TIMELINE) */
.geo-process {
    padding: 80px 0;
    background: #fff;
}

.geo-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 50px;
    position: relative;
}

.geo-process-timeline:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #c4ff0d 0%, #0ea5e9 100%);
    z-index: 0;
}

.geo-process-step {
    position: relative;
    z-index: 1;
}

/* White circle with blue border and blue number */
.geo-process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #0284c7;
    margin: 0 auto 20px;
}

.geo-process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-align: center;
}

.geo-process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

@media (max-width: 992px) {
    .geo-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .geo-process-timeline:before {
        display: none;
    }
}

@media (max-width: 640px) {
    .geo-process-timeline {
        grid-template-columns: 1fr;
    }
}

/* BEFORE/AFTER RESULTS */
.geo-results {
    padding: 80px 0;
    background: #f9fafb;
}

.geo-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.geo-result-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.geo-result-card--before {
    border-color: #dc2626;
}

.geo-result-card--after {
    border-color: #0284c7;
    background: linear-gradient(135deg, rgba(13, 199, 255, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}

.geo-result-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.geo-result-card--before .geo-result-badge {
    background: rgba(220, 38, 38, 0.15);
    color: #991b1b;
}

.geo-result-card--after .geo-result-badge {
    background: linear-gradient(135deg, #020c1b 0%, #0a1628 100%);
    color: #fff;
}

.geo-result-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
}

.geo-result-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.geo-result-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.geo-result-metric:last-child {
    border-bottom: none;
}

.geo-result-metric span:first-child {
    font-size: 14px;
    color: #666;
}

.geo-result-metric span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.geo-result-card--after .geo-result-metric span:last-child {
    color: #00498e;
}

@media (max-width: 768px) {
    .geo-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* GEO VS SEO COMPARISON TABLE */
.geo-comparison {
    padding: 80px 0;
    background: #fff;
}

.geo-comparison-table {
    max-width: 1000px;
    margin: 50px auto 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.geo-comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.geo-comparison-table thead {
    background: linear-gradient(135deg, #020c1b 0%, #041427 100%);
}

.geo-comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.geo-comparison-table th:first-child {
    width: 30%;
}

.geo-comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.geo-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.geo-comparison-table tbody tr:hover {
    background: #f9fafb;
}

.geo-comparison-table td:first-child {
    font-weight: 600;
    color: #111;
}

@media (max-width: 768px) {
    .geo-comparison-table {
        overflow-x: auto;
    }
    
    .geo-comparison-table table {
        min-width: 600px;
    }
}

/* ══════ CTA BAND ════════════════════════════════════════════ */
.cro-cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg,#020c1b 0%,#1a3a6e 40%,#020c1b 100%); border-radius: 24px; padding: 64px 56px; margin-bottom: 80px; border: 1px solid rgba(41,171,226,0.2); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.cro-cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle,rgba(41,171,226,0.15) 0%,transparent 65%); pointer-events: none; }
.cro-cta-band::after { content: ''; position: absolute; bottom: 28px; left: 56px; width: 80px; height: 3px; background: linear-gradient(90deg,#253a8f,#29abe2,#caef45); border-radius: 3px; }
.cro-cta-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #caef45; margin-bottom: 12px; display: block; }
.cro-cta-band h2 { font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 700; color: #fff; line-height: 1.3; margin: 0 0 20px; }
.cro-cta-band h2 span { color: #caef45; }
.cro-cta-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.cro-cta-stat-val { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.cro-cta-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); }
.cro-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; min-width: 200px; position: relative; z-index: 1; }
.cro-cta-btn { display: flex; align-items: center; justify-content: center; width: 100%; background: #caef45; color: #0a1628; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 50px; text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap; }
.cro-cta-btn:hover { background: #b8e020; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(202,239,69,0.4); color: #0a1628; text-decoration: none; }
.cro-cta-note { font-size: 11px; color: rgba(255,255,255,0.55); text-align: center; }

@media (max-width: 992px) {
    .cro-cta-band {
        grid-template-columns: 1fr;
        padding: 48px 40px;
        gap: 32px;
    }
    
    .cro-cta-btns {
        width: 100%;
    }
    
    .cro-cta-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .cro-cta-band {
        padding: 40px 24px;
    }
    
    .cro-cta-stats {
        gap: 20px;
    }
    
    .cro-cta-band h2 {
        font-size: 1.5rem;
    }
}

/* FAQ SECTION */
.geo-faq {
    padding: 80px 0;
    background: #f9fafb;
}

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

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

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

.geo-faq-question {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.geo-faq-question:after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: #0284c7;
    transition: transform 0.3s ease;
}

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

.geo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.geo-faq-item.active .geo-faq-answer {
    max-height: 500px;
}

.geo-faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* RESPONSIVE UTILITIES */
@media (max-width: 768px) {
    .geo-section-header h2 {
        font-size: 28px;
    }
    
    .geo-section-header p {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STRATEGIC CTAs - Professional & Conversion-Optimized
   ═══════════════════════════════════════════════════════════════ */
/* Services CTA */
.geo-services-cta {
    position: relative;
    overflow: hidden;
    background: #052f6b;
    border-radius: 16px;
    padding: 48px 56px;
    margin: 60px auto;
    max-width: 1320px;
    width: calc(100% - 40px);
}

/* Decorative Shapes */
.geo-services-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
}

.geo-services-shape-one {
    width: 180px;
    height: 180px;
    background: #1976f3;
    top: -70px;
    left: 240px;
}

.geo-services-shape-two {
    width: 140px;
    height: 140px;
    background: #f4d35e;
    bottom: -65px;
    left: 120px;
}

.geo-services-shape-three {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    top: 50px;
    right: 120px;
}

/* Layout */
.geo-services-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    flex-wrap: wrap;
}

/* Left Box */
.geo-services-left {
    flex: 0 0 320px;
}

.geo-services-stat-box {
    background: #1457b2;
    border-radius: 16px;
    padding: 42px 36px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

.geo-services-stat-label {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.geo-services-stat-number {
    color: #ffe177;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.geo-services-stat-text {
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

/* Right Content */
.geo-services-right {
    flex: 1;
    min-width: 320px;
}

.geo-services-title {
    color: #ffffff;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 22px;
    letter-spacing: -1px;
}

.geo-services-desc {
    color: rgba(255,255,255,0.9);
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 760px;
}

/* Form */
.geo-services-form {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border-radius: 10px;
    max-width: 760px;
    flex-wrap: wrap;
}

.geo-services-input {
    flex: 1;
    min-width: 260px;
    height: 74px;
    border: none;
    outline: none;
    padding: 20px 26px;  /* ← ADDED vertical padding (20px) */
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;  /* ← CRITICAL - This was missing */
    line-height: 1.4;
}

.geo-services-input::placeholder {
    color: #94a3b8;
}

.geo-services-btn {
    height: 74px;
    border: none;
    background: #1976f3;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 0 36px;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;  /* ← Add this too */
    transition: background 0.2s ease;
}

.geo-services-btn:hover {
    background: #1565d8;
}

/* Responsive */
@media (max-width: 1200px) {
    .geo-services-cta {
        padding: 40px 32px;
        margin: 40px auto;
    }
    
    .geo-services-card {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .geo-services-cta {
        padding: 36px 24px;
        width: calc(100% - 30px);
        margin: 40px auto;
    }
    
    .geo-services-card {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    
    .geo-services-left {
        flex: 1;
        width: 100%;
    }
    
    .geo-services-stat-box {
        padding: 36px 28px;
    }
    
    .geo-services-stat-number {
        font-size: 64px;
    }
    
    .geo-services-stat-text {
        font-size: 16px;
    }
    
    .geo-services-right {
        width: 100%;
        min-width: 0;
    }
    
    .geo-services-title {
        font-size: 32px;
    }
    
    .geo-services-desc {
        font-size: 18px;
        margin-bottom: 28px;
    }
    
    .geo-services-form {
        flex-direction: column;
        border-radius: 0;
        gap: 14px;
    }
    
    .geo-services-input {
        width: 100%;
        min-width: 0;
        height: 72px;
        font-size: 18px;
        padding: 0 24px;
        border-radius: 10px;
    }
    
    .geo-services-btn {
        width: 100%;
        height: 72px;
        font-size: 19px;
        padding: 0 28px;
        border-radius: 10px;
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .geo-services-cta {
        padding: 32px 20px;
        border-radius: 12px;
    }
    
    .geo-services-shape-one {
        width: 120px;
        height: 120px;
        top: -50px;
        left: 160px;
    }
    
    .geo-services-shape-two {
        width: 100px;
        height: 100px;
        bottom: -45px;
        left: 80px;
    }
    
    .geo-services-shape-three {
        width: 70px;
        height: 70px;
        top: 40px;
        right: 80px;
    }
    
    .geo-services-stat-box {
        padding: 32px 24px;
    }
    
    .geo-services-stat-number {
        font-size: 56px;
    }
    
    .geo-services-stat-text {
        font-size: 15px;
    }
    
    .geo-services-title {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .geo-services-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .geo-services-form {
        gap: 14px;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
     .geo-services-input {
        width: 100%;
        max-width: 500px;
        height: 64px;
        font-size: 17px;
        padding: 18px 20px;  /* ← Vertical padding */
    }
    
       .geo-services-btn {
        width: 100%;
        max-width: 500px;
        height: 64px;
        font-size: 18px;
        padding: 0 24px;
    }
}


@media (max-width: 480px) {
    .geo-services-cta {
        padding: 24px 16px;
        margin: 30px auto;
        border-radius: 8px;
    }
    
    .geo-services-card {
        gap: 24px;
    }
    
    .geo-services-shape-one {
        width: 90px;
        height: 90px;
        top: -35px;
        left: 100px;
    }
    
    .geo-services-shape-two {
        width: 70px;
        height: 70px;
        bottom: -30px;
        left: 50px;
    }
    
    .geo-services-shape-three {
        width: 50px;
        height: 50px;
        top: 30px;
        right: 50px;
    }
    
    .geo-services-stat-box {
        padding: 28px 20px;
    }
    
    .geo-services-stat-label {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .geo-services-stat-number {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .geo-services-stat-text {
        font-size: 14px;
    }
    
    .geo-services-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    
    .geo-services-desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .geo-services-form {
        max-width: 100%;
        margin: 0 auto;
    }
    
   
    .geo-services-input {
        max-width: 100%;
        height: 60px;
        font-size: 16px;
        padding: 16px 20px;  /* ← Vertical padding */
    }
    
    .geo-services-btn {
        max-width: 100%;
        height: 60px;
        font-size: 17px;
        font-weight: 700;
        padding: 0 24px;
    }
}


/* ───────────────────────────────────────────────────────────────
   CTA #1 - Services section
   ─────────────────────────────────────────────────────────────── */

.geo-mini-cta-wrap {
    margin: 48px auto;
    text-align: center;
}

.geo-mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #020c1b 0%, #0a1f3d 100%);
    border-left: 4px solid #0ea5e9;
    border-radius: 12px;
    flex-wrap: wrap;
}

.geo-mini-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.mini-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #020c1b ;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.mini-cta-btn:hover {
    transform: translateY(-2px);
    background: #0ea5e9;
    color: #000;
    box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}

/* Contain CTA Box on Mobile */
@media (max-width: 768px) {
    .geo-mini-cta-wrap {
        padding: 0 15px;
        margin: 32px auto;
    }
    
    .geo-mini-cta {
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        text-align: center;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .geo-mini-cta-text {
        font-size: 15px;
        width: 100%;
    }
    
    .mini-cta-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .geo-mini-cta-wrap {
        padding: 0 15px;
    }
    
    .geo-mini-cta {
        padding: 16px 20px;
        border-left-width: 3px;
    }
    
    .geo-mini-cta-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .mini-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* ───────────────────────────────────────────────────────────────
   CTA #3 - BUTTON CTA (After FAQs)
   ─────────────────────────────────────────────────────────────── */

.button-cta-wrapper {
    margin: 64px 0;
    padding: 0;
}

.button-cta-inner {
    text-align: center;
    padding: 48px 40px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.button-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #c4ff0d 100%);
}

.button-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.button-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
    position: relative;
    overflow: hidden;
}

.button-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button-cta-btn:hover::before {
    left: 100%;
}

.button-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
    color: #fff;
    text-decoration: none;
}

.button-cta-subtext {
    font-size: 14px;
    color: #64748b;
    margin: 16px 0 0 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .button-cta-wrapper {
        margin: 48px 0;
    }
    
    .button-cta-inner {
        padding: 32px 24px;
    }
    
    .button-cta-text {
        font-size: 16px;
    }
    
    .button-cta-btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .button-cta-subtext {
        font-size: 13px;
    }
}
