/* ==========================================================================
   KYC Yazılım - Ultra-Premium Web Tasarım Landing Page Stylesheet
   Theme: Light Modern Glassmorphism & High Contrast Typography
   ========================================================================== */

:root {
    --wt-primary: #4f46e5;
    --wt-primary-hover: #4338ca;
    --wt-secondary: #7c3aed;
    --wt-accent: #06b6d4;
    --wt-accent-glow: rgba(6, 182, 212, 0.25);
    
    --wt-dark: #0f172a;
    --wt-heading: #1e293b;
    --wt-body: #475569;
    --wt-muted: #64748b;
    
    --wt-bg-light: #f8fafc;
    --wt-bg-white: #ffffff;
    --wt-card-bg: rgba(255, 255, 255, 0.88);
    --wt-card-border: rgba(226, 232, 240, 0.8);
    --wt-card-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.07);
    --wt-card-shadow-hover: 0 30px 60px -12px rgba(79, 70, 229, 0.16);

    --wt-gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
    --wt-gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --wt-gradient-text: linear-gradient(135deg, #1e293b 0%, #4f46e5 100%);
    --wt-gradient-badge: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    
    --wt-font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --wt-font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Reset & Scope Base */
.wt-page {
    font-family: var(--wt-font-main);
    color: var(--wt-body);
    background-color: var(--wt-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.wt-page h1, .wt-page h2, .wt-page h3, .wt-page h4, .wt-page h5, .wt-page h6 {
    font-family: var(--wt-font-heading);
    color: var(--wt-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Ambient Background Mesh */
.wt-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wt-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: blobPulse 12s infinite alternate ease-in-out;
}

.wt-blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(79, 70, 229, 0.05) 70%);
}

.wt-blob-2 {
    top: 25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(59, 130, 246, 0.05) 70%);
}

.wt-blob-3 {
    bottom: 10%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, rgba(124, 58, 237, 0.03) 70%);
}

@keyframes blobPulse {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-20px, 20px); }
    100% { transform: scale(0.95) translate(20px, -10px); }
}

/* Container & Sections */
.wt-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.wt-section-sm {
    padding: 60px 0;
}

/* Badges & Pill Components */
.wt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--wt-gradient-badge);
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--wt-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.08);
}

.wt-badge .wt-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--wt-primary);
    box-shadow: 0 0 10px var(--wt-primary);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* Section Header */
.wt-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.wt-section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 16px;
    margin-bottom: 20px;
}

.wt-section-title span.wt-gradient-text {
    background: var(--wt-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wt-section-subtitle {
    font-size: 18px;
    color: var(--wt-body);
    line-height: 1.7;
}

/* Buttons */
.wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    cursor: pointer;
    border: none;
}

.wt-btn-primary {
    background: var(--wt-gradient-primary);
    color: #ffffff !important;
    box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.4);
}

.wt-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px -5px rgba(79, 70, 229, 0.55);
    color: #ffffff !important;
}

.wt-btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--wt-heading) !important;
    border: 1.5px solid rgba(203, 213, 225, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.wt-btn-outline:hover {
    background: #ffffff;
    border-color: var(--wt-primary);
    color: var(--wt-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.12);
}

/* Glassmorphism Card Style */
.wt-glass-card {
    background: var(--wt-card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--wt-card-border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--wt-card-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wt-glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--wt-card-shadow-hover);
}

/* HERO SECTION */
.wt-hero-section {
    padding: 160px 0 100px;
    position: relative;
}

.wt-hero-content {
    padding-right: 20px;
}

.wt-hero-title {
    font-size: 56px;
    line-height: 1.15;
    margin: 24px 0;
    letter-spacing: -0.03em;
}

.wt-hero-desc {
    font-size: 19px;
    color: var(--wt-body);
    margin-bottom: 40px;
    line-height: 1.7;
}

.wt-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

/* Stats Counter Grid */
.wt-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.wt-stat-item .wt-stat-number {
    font-family: var(--wt-font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--wt-dark);
    line-height: 1;
}

.wt-stat-item .wt-stat-number span {
    color: var(--wt-primary);
}

.wt-stat-item .wt-stat-label {
    font-size: 13px;
    color: var(--wt-muted);
    font-weight: 600;
    margin-top: 6px;
}

/* Hero Device Mockup */
.wt-hero-mockup-wrap {
    position: relative;
}

.wt-laptop-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 35px 80px -20px rgba(15, 23, 42, 0.22);
    border: 8px solid #ffffff;
    background: #ffffff;
    animation: floatHero 8s infinite ease-in-out;
}

.wt-laptop-frame img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

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

/* Floating Glass Overlay Cards on Hero */
.wt-floating-card-1 {
    position: absolute;
    bottom: -25px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: floatHero 6s infinite ease-in-out 1s;
}

.wt-floating-card-2 {
    position: absolute;
    top: 40px;
    right: -25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: floatHero 7s infinite ease-in-out 0.5s;
}

.wt-icon-box-sm {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--wt-gradient-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wt-primary);
    font-size: 20px;
}

/* SERVICES / WHAT WE DO SECTION */
.wt-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.wt-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wt-service-card .wt-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--wt-gradient-badge);
    color: var(--wt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.wt-service-card:hover .wt-service-icon {
    background: var(--wt-gradient-primary);
    color: #ffffff;
    transform: scale(1.08);
}

.wt-service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.wt-service-card p {
    font-size: 15px;
    color: var(--wt-body);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Mini Simulated UI Preview Box inside Service Cards */
.wt-ui-preview-box {
    margin-top: auto;
    background: var(--wt-bg-light);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

/* 1. Code Terminal Simulation */
.wt-code-sim {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #0f172a;
}
.wt-code-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.wt-code-tag { color: #4f46e5; font-weight: bold; }
.wt-code-attr { color: #06b6d4; }
.wt-code-val { color: #059669; }

/* 2. Live Chart Bar Simulation */
.wt-chart-sim {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 65px;
    padding-top: 10px;
}
.wt-chart-bar {
    flex: 1;
    background: var(--wt-gradient-primary);
    border-radius: 6px 6px 0 0;
    transition: height 0.8s ease;
    animation: barGrow 3s ease-in-out infinite alternate;
}
@keyframes barGrow {
    0% { transform: scaleY(0.6); }
    100% { transform: scaleY(1); }
}

/* INFINITE MARQUEE CAROUSEL SHOWCASE SECTION */
.wt-marquee-section {
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 70px 0 80px;
    overflow: hidden;
    position: relative;
}

.wt-marquee-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.wt-marquee-container:active {
    cursor: grabbing;
}

.wt-marquee-wrapper {
    display: inline-flex;
    width: max-content;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wt-marquee-wrapper.dragging {
    transition: none !important;
}

.wt-marquee-track {
    display: flex;
    gap: 24px;
    padding: 10px 12px;
}

.wt-component-card {
    min-width: 320px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wt-component-card:hover {
    border-color: var(--wt-primary);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.12);
    transform: translateY(-4px);
}

.wt-component-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.wt-component-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--wt-dark);
}

.wt-component-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--wt-primary);
}

/* Dynamic Interactive Component Previews */
.wt-comp-demo-1 {
    display: flex;
    gap: 10px;
}
.wt-demo-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wt-demo-btn-glow {
    background: var(--wt-gradient-primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    animation: glowPulse 2s infinite alternate;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 8px rgba(79, 70, 229, 0.4); }
    100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.8); }
}

.wt-comp-demo-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.9);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}
.wt-toggle-switch {
    width: 44px;
    height: 24px;
    background: var(--wt-primary);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}
.wt-toggle-switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    right: 3px;
    transition: all 0.3s ease;
}

/* SECTOR SHOWCASE SECTION */
.wt-sector-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.wt-tab-btn {
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--wt-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wt-tab-btn.active, .wt-tab-btn:hover {
    background: var(--wt-gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.wt-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wt-sector-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.wt-sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.wt-sector-thumb {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #f8fafc;
    display: block;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
}

.wt-sector-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    transition: transform 0.5s ease;
}

.wt-sector-card:hover .wt-sector-thumb img {
    transform: scale(1.05);
}

.wt-sector-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--wt-primary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
    z-index: 2;
    letter-spacing: 0.02em;
}

.wt-sector-body {
    padding: 26px;
}

.wt-sector-body h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.wt-sector-body p {
    font-size: 14px;
    color: var(--wt-body);
    margin-bottom: 18px;
}

.wt-sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wt-sector-feat-tag {
    font-size: 12px;
    font-weight: 600;
    background: var(--wt-bg-light);
    color: var(--wt-primary);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

/* PROCESS SECTION (5 STEPS) */
.wt-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.wt-process-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 20px;
    position: relative;
    transition: all 0.35s ease;
}

.wt-process-card:hover {
    transform: translateY(-6px);
    border-color: var(--wt-primary);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.12);
}

.wt-process-step {
    font-family: var(--wt-font-heading);
    font-size: 36px;
    font-weight: 800;
    background: var(--wt-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}

.wt-process-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.wt-process-card p {
    font-size: 13px;
    color: var(--wt-body);
    line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.wt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wt-testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.wt-stars {
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 16px;
}

.wt-quote-text {
    font-size: 15px;
    color: var(--wt-heading);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.wt-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wt-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--wt-gradient-badge);
    color: var(--wt-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wt-author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--wt-dark);
    margin: 0;
}

.wt-author-role {
    font-size: 13px;
    color: var(--wt-muted);
    margin: 0;
}

/* FAQ ACCORDION SECTION */
.wt-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.wt-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wt-faq-item:hover {
    border-color: var(--wt-primary);
}

.wt-faq-question {
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 700;
    color: var(--wt-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wt-faq-icon {
    font-size: 20px;
    color: var(--wt-primary);
    transition: transform 0.3s ease;
}

.wt-faq-answer {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--wt-body);
    line-height: 1.7;
    display: none;
}

.wt-faq-item.active .wt-faq-answer {
    display: block;
}

.wt-faq-item.active .wt-faq-icon {
    transform: rotate(180deg);
}

/* BOTTOM CTA BANNER */
.wt-cta-banner {
    background: var(--wt-gradient-primary);
    border-radius: 32px;
    padding: 70px 50px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px -10px rgba(79, 70, 229, 0.4);
}

.wt-cta-banner h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 18px;
}

.wt-cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 36px;
}

.wt-cta-banner .wt-btn-light {
    background: #ffffff;
    color: var(--wt-primary) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.wt-cta-banner .wt-btn-light:hover {
    background: #f8fafc;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1199px) {
    .wt-hero-title { font-size: 44px; }
    .wt-process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .wt-hero-title { font-size: 38px; }
    .wt-hero-content { padding-right: 0; margin-bottom: 50px; text-align: center; }
    .wt-hero-btns { justify-content: center; }
    .wt-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .wt-services-grid { grid-template-columns: 1fr; }
    .wt-sector-grid { grid-template-columns: repeat(2, 1fr); }
    .wt-sector-thumb {
        height: auto !important;
        aspect-ratio: 4 / 3;
    }
    .wt-sector-thumb img {
        object-fit: contain !important;
        object-position: center !important;
    }
    .wt-testimonials-grid { grid-template-columns: 1fr; }
    .wt-process-grid { grid-template-columns: repeat(2, 1fr); }
    .wt-floating-card-1, .wt-floating-card-2 { display: none; }
}

@media (max-width: 767px) {
    .wt-hero-title { font-size: 32px; }
    .wt-section-title { font-size: 30px; }
    .wt-section { padding: 60px 0; }
    .wt-sector-grid { grid-template-columns: 1fr; }
    .wt-process-grid { grid-template-columns: 1fr; }
    .wt-cta-banner { padding: 40px 24px; }
    .wt-cta-banner h2 { font-size: 28px; }
}

/* Hero Intro Center Text Responsiveness */
.wt-hero-intro-title {
    font-size: 48px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
}

.wt-hero-intro-subtitle {
    font-size: 13px !important;
    letter-spacing: 0.2em !important;
    margin-top: 16px !important;
}

@media (max-width: 767px) {
    .wt-hero-intro-title {
        font-size: 22px !important;
        letter-spacing: -0.01em !important;
    }
    .wt-hero-intro-subtitle {
        font-size: 10px !important;
        letter-spacing: 0.1em !important;
        margin-top: 6px !important;
    }
}

@media (max-width: 480px) {
    .wt-hero-intro-title {
        font-size: 20px !important;
    }
    .wt-hero-intro-subtitle {
        font-size: 9.5px !important;
    }
}

/* Responsive reCAPTCHA Component for Mobile */
.wt-recaptcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 12px;
    min-height: 78px;
    overflow: visible;
}

.wt-recaptcha-wrapper .g-recaptcha {
    display: inline-block;
    transform-origin: center top;
    -webkit-transform-origin: center top;
}

@media (max-width: 380px) {
    .wt-recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
        -webkit-transform: scale(0.85);
    }
    .wt-recaptcha-wrapper {
        min-height: 68px;
    }
}

@media (max-width: 330px) {
    .wt-recaptcha-wrapper .g-recaptcha {
        transform: scale(0.76);
        -webkit-transform: scale(0.76);
    }
    .wt-recaptcha-wrapper {
        min-height: 60px;
    }
}

/* Success Modal Popup Styles */
.wt-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wt-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wt-modal-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 40px 32px 32px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    transform: scale(0.9) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wt-modal-overlay.active .wt-modal-card {
    transform: scale(1) translateY(0);
}

.wt-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wt-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.wt-modal-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.12) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.25);
}

.wt-modal-title {
    font-family: var(--wt-font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.wt-modal-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 26px;
}

.wt-modal-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
}

/* Inline SVG icons replace the full Line Awesome icon-font download. */
.wt-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.wt-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wt-icon-spin {
    animation: wt-icon-spin 1s linear infinite;
}

@keyframes wt-icon-spin {
    to { transform: rotate(360deg); }
}
