/*
 Theme Name:   WebTrus Child
 Theme URI:    https://webtrus.com
 Description:  WebTrus Child Theme - Professional Digital Agency
 Author:       WebTrus
 Template:     astra
 Version:      3.0.0
 Text Domain:  webtrus-child
*/

/* CSS Variables */
:root {
    --wt-primary: #2563EB;
    --wt-primary-dark: #1D4ED8;
    --wt-primary-light: #3B82F6;
    --wt-accent: #06B6D4;
    --wt-dark: #0F172A;
    --wt-dark-soft: #1E293B;
    --wt-text: #0F172A;
    --wt-text-secondary: #475569;
    --wt-text-light: #94A3B8;
    --wt-bg: #FFFFFF;
    --wt-bg-soft: #F8FAFC;
    --wt-bg-muted: #F1F5F9;
    --wt-border: #E2E8F0;
    --wt-border-light: #F1F5F9;
    --wt-success: #10B981;
    --wt-warning: #F59E0B;
    --wt-purple: #8B5CF6;
    --wt-gradient: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --wt-radius: 10px;
    --wt-radius-lg: 16px;
    --wt-radius-xl: 20px;
    --wt-shadow: 0 1px 3px rgba(0,0,0,0.05);
    --wt-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07);
    --wt-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08);
    --wt-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08);
    --wt-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--wt-font); background: var(--wt-bg); color: var(--wt-text); line-height: 1.6; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
a { color: var(--wt-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wt-primary-dark); }
img { max-width: 100%; height: auto; }

/* Container */
.wt-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Top Bar */
.wt-top-bar { background: var(--wt-dark); padding: 8px 0; font-size: 13px; position: relative; z-index: 1001; }
.wt-top-bar-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wt-top-bar-left, .wt-top-bar-right { display: flex; align-items: center; gap: 20px; }
.wt-top-link { color: #CBD5E1; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.wt-top-link:hover { color: #FFFFFF; }
.wt-top-link i { font-size: 12px; }
.wt-top-social { color: #94A3B8; text-decoration: none; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; }
.wt-top-social:hover { color: #FFFFFF; background: rgba(255,255,255,0.1); }
.wt-top-divider { color: #475569; }

/* Header */
.wt-header { position: fixed; top: 37px; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--wt-border-light); transition: all 0.3s ease; }
.wt-header.scrolled { box-shadow: var(--wt-shadow); top: 0; }
.wt-header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

/* Logo */
.wt-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 22px; font-weight: 800; color: var(--wt-text); }
.wt-logo-icon { width: 40px; height: 40px; background: var(--wt-gradient); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 18px; }
.wt-logo img { height: 42px; width: auto; }

/* Navigation */
.wt-nav { display: flex; align-items: center; gap: 4px; }
.wt-nav-link { padding: 10px 16px; color: var(--wt-text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 8px; transition: all 0.2s; }
.wt-nav-link:hover, .wt-nav-link.active { color: var(--wt-text); background: var(--wt-bg-muted); }

/* Dropdown */
.wt-nav-dropdown { position: relative; }
.wt-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); width: 580px; background: white; border: 1px solid var(--wt-border); border-radius: 16px; padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: all 0.25s; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.wt-nav-dropdown:hover .wt-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(12px); }
.wt-dropdown-item { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.wt-dropdown-item:hover { background: var(--wt-bg-muted); }
.wt-dropdown-icon { width: 42px; height: 42px; background: var(--wt-bg-muted); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--wt-primary); flex-shrink: 0; transition: all 0.2s; }
.wt-dropdown-item:hover .wt-dropdown-icon { background: var(--wt-primary); color: white; }
.wt-dropdown-text h4 { font-size: 14px; font-weight: 600; color: var(--wt-text); margin: 0; }
.wt-dropdown-text p { font-size: 12px; color: var(--wt-text-light); margin: 0; }

/* Header Actions */
.wt-header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile */
.wt-mobile-menu-btn { display: none; width: 44px; height: 44px; background: var(--wt-bg-muted); border: none; border-radius: 10px; align-items: center; justify-content: center; color: var(--wt-text); font-size: 20px; cursor: pointer; }
.wt-mobile-menu { position: fixed; top: 0; right: 0; width: 320px; height: 100%; background: white; z-index: 10000; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1); }
.wt-mobile-menu.active { transform: translateX(0); }
.wt-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--wt-border); }
.wt-mobile-close { width: 40px; height: 40px; background: var(--wt-bg-muted); border: none; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--wt-text); font-size: 18px; cursor: pointer; }
.wt-mobile-nav { padding: 24px; }
.wt-mobile-link { display: block; padding: 14px 0; color: var(--wt-text); text-decoration: none; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--wt-border-light); }
.wt-mobile-link:hover { color: var(--wt-primary); }
.wt-mobile-actions { display: flex; gap: 12px; margin-top: 24px; }
.wt-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.3s; }
.wt-mobile-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
    .wt-nav, .wt-header-actions { display: none; }
    .wt-mobile-menu-btn { display: flex; }
    .wt-top-bar-left { display: none; }
}

/* Buttons */
.wt-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--wt-radius); font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-family: var(--wt-font); }
.wt-btn-primary { background: var(--wt-primary); color: white; }
.wt-btn-primary:hover { background: var(--wt-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); color: white; }
.wt-btn-outline { background: transparent; color: var(--wt-text); border: 1px solid var(--wt-border); }
.wt-btn-outline:hover { border-color: var(--wt-text); background: var(--wt-bg-muted); }
.wt-btn-white { background: white; color: var(--primary); }
.wt-btn-white:hover { background: var(--wt-bg-soft); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.wt-btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.wt-btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.wt-btn-lg { padding: 16px 32px; font-size: 16px; }

/* Hero */
.wt-hero { padding: 160px 0 100px; background: linear-gradient(180deg, var(--wt-bg-soft) 0%, var(--wt-bg) 100%); position: relative; overflow: hidden; }
.wt-hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%); border-radius: 50%; }
.wt-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.wt-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(37,99,235,0.08); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--wt-primary); margin-bottom: 24px; }
.wt-dot { width: 8px; height: 8px; background: var(--wt-success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.wt-hero h1 { font-size: 54px; font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px; }
.wt-hero h1 span { background: var(--wt-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wt-hero-desc { font-size: 17px; color: var(--wt-text-secondary); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.wt-hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; }
.wt-hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--wt-border); }
.wt-hero-stat h3 { font-size: 32px; font-weight: 800; color: var(--wt-text); }
.wt-hero-stat p { font-size: 13px; color: var(--wt-text-light); }
.wt-hero-image { width: 100%; height: 480px; background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%); border-radius: 24px; overflow: hidden; position: relative; }
.wt-hero-image-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--wt-primary); gap: 12px; opacity: 0.5; }
.wt-hero-image-placeholder i { font-size: 64px; }
.wt-floating-card { position: absolute; background: white; border-radius: 16px; padding: 16px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid var(--wt-border-light); display: flex; align-items: center; gap: 12px; }
.wt-floating-card-1 { top: 40px; left: -30px; animation: float 5s ease-in-out infinite; }
.wt-floating-card-2 { bottom: 80px; right: -20px; animation: float 5s ease-in-out infinite 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.wt-floating-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--wt-success), #059669); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.wt-floating-text h4 { font-size: 13px; font-weight: 600; color: var(--wt-text); }
.wt-floating-text p { font-size: 12px; color: var(--wt-text-light); }

@media (max-width: 1024px) {
    .wt-hero-content { grid-template-columns: 1fr; gap: 40px; }
    .wt-hero h1 { font-size: 40px; }
    .wt-hero-visual { display: none; }
}

/* Divider */
.wt-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--wt-border), transparent); }

/* Clients */
.wt-clients { padding: 48px 0; background: var(--wt-bg); }
.wt-clients-label { text-align: center; font-size: 13px; font-weight: 500; color: var(--wt-text-light); margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1px; }
.wt-clients-logos { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.wt-client-logo-placeholder { padding: 12px 24px; background: var(--wt-bg-muted); border-radius: 8px; color: var(--wt-text-light); font-size: 14px; font-weight: 600; }

/* Sections */
.wt-section { padding: 120px 0; }
.wt-section-header { text-align: center; margin-bottom: 64px; }
.wt-section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; color: var(--wt-primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; justify-content: center; }
.wt-section-label::before, .wt-section-label::after { content: ''; width: 20px; height: 1px; background: var(--wt-primary); opacity: 0.4; }
.wt-section-title { font-size: 42px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.wt-section-desc { font-size: 16px; color: var(--wt-text-secondary); max-width: 560px; margin: 0 auto; }

/* Services Grid */
.wt-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wt-service-card { background: var(--wt-bg); border: 1px solid var(--wt-border); border-radius: 20px; padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.wt-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--wt-gradient); transform: scaleX(0); transition: transform 0.3s; }
.wt-service-card:hover { border-color: transparent; box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-4px); color: inherit; }
.wt-service-card:hover::before { transform: scaleX(1); }
.wt-service-icon { width: 56px; height: 56px; background: var(--wt-bg-muted); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s; }
.wt-service-icon i { font-size: 24px; color: var(--wt-primary); }
.wt-service-card:hover .wt-service-icon { background: var(--wt-primary); }
.wt-service-card:hover .wt-service-icon i { color: white; }
.wt-service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.wt-service-card p { font-size: 14px; color: var(--wt-text-secondary); line-height: 1.6; margin-bottom: 16px; }
.wt-service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--wt-primary); }
.wt-service-card:hover .wt-service-link { gap: 10px; }

@media (max-width: 1024px) { .wt-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .wt-services-grid { grid-template-columns: 1fr; } }

/* Stats Banner */
.wt-stats-banner { padding: 80px 0; background: var(--wt-dark); color: white; position: relative; overflow: hidden; }
.wt-stats-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.wt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 2; }
.wt-stat-item { text-align: center; padding: 32px 16px; position: relative; }
.wt-stat-item::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.wt-stat-item:last-child::after { display: none; }
.wt-stat-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: var(--wt-accent); }
.wt-stat-number { font-size: 48px; font-weight: 800; margin-bottom: 4px; }
.wt-stat-label { font-size: 14px; color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) { .wt-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .wt-stat-item::after { display: none; } }

/* About Section */
.wt-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wt-about-image { width: 100%; height: 400px; background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%); border-radius: 24px; overflow: hidden; }
.wt-about-image-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--wt-primary); gap: 12px; opacity: 0.5; }
.wt-about-image-placeholder i { font-size: 48px; }
.wt-about-text p { font-size: 16px; color: var(--wt-text-secondary); margin-bottom: 16px; }
.wt-about-features { list-style: none; padding: 0; margin: 24px 0; }
.wt-about-features li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--wt-text-secondary); }
.wt-about-features i { color: var(--wt-success); }

@media (max-width: 1024px) { .wt-about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Work Grid */
.wt-work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wt-work-card { background: var(--wt-bg); border: 1px solid var(--wt-border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.wt-work-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.wt-work-image { height: 240px; background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%); overflow: hidden; }
.wt-work-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--wt-primary); font-size: 48px; opacity: 0.5; }
.wt-work-info { padding: 24px; }
.wt-work-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.wt-work-info p { font-size: 14px; color: var(--wt-text-light); }

@media (max-width: 768px) { .wt-work-grid { grid-template-columns: 1fr; } }

/* Process */
.wt-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.wt-process-step { text-align: center; padding: 24px; position: relative; }
.wt-process-number { width: 48px; height: 48px; background: var(--wt-bg-muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 16px; font-weight: 800; color: var(--wt-primary); }
.wt-process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.wt-process-step p { font-size: 13px; color: var(--wt-text-secondary); }

@media (max-width: 1024px) { .wt-process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .wt-process-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.wt-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wt-testimonial-card { background: var(--wt-bg); border: 1px solid var(--wt-border); border-radius: 20px; padding: 32px; }
.wt-testimonial-stars { color: #F59E0B; margin-bottom: 16px; font-size: 14px; }
.wt-testimonial-card p { font-size: 15px; color: var(--wt-text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.wt-testimonial-author { display: flex; align-items: center; gap: 12px; }
.wt-testimonial-avatar { width: 44px; height: 44px; background: var(--wt-bg-muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--wt-primary); }
.wt-testimonial-author h5 { font-size: 14px; font-weight: 600; margin: 0; }
.wt-testimonial-author span { font-size: 12px; color: var(--wt-text-light); }

@media (max-width: 1024px) { .wt-testimonials-grid { grid-template-columns: 1fr; } }

/* Contact */
.wt-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.wt-contact-items { margin-top: 32px; }
.wt-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.wt-contact-icon { width: 48px; height: 48px; background: var(--wt-bg-muted); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--wt-primary); font-size: 18px; flex-shrink: 0; }
.wt-contact-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.wt-contact-item p { font-size: 14px; color: var(--wt-text-secondary); }

/* Form */
.wt-contact-form { background: var(--wt-bg); border: 1px solid var(--wt-border); border-radius: 20px; padding: 40px; }
.wt-contact-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.wt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wt-form-group { margin-bottom: 20px; }
.wt-form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--wt-text); margin-bottom: 6px; }
.wt-form-group input, .wt-form-group select, .wt-form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--wt-border); border-radius: var(--wt-radius); font-size: 14px; font-family: var(--wt-font); transition: all 0.2s; background: var(--wt-bg); }
.wt-form-group input:focus, .wt-form-group select:focus, .wt-form-group textarea:focus { outline: none; border-color: var(--wt-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

@media (max-width: 1024px) { .wt-contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .wt-form-row { grid-template-columns: 1fr; } }

/* CTA Section */
.wt-cta-section { padding: 80px 0; background: var(--wt-gradient); position: relative; overflow: hidden; }
.wt-cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.wt-cta-content { text-align: center; position: relative; z-index: 2; }
.wt-cta-content h2 { font-size: 36px; font-weight: 800; color: white; margin-bottom: 16px; }
.wt-cta-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.wt-cta-actions { display: flex; gap: 16px; justify-content: center; }

/* Footer */
.wt-footer { background: var(--wt-dark); color: white; padding: 80px 0 0; }
.wt-footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.wt-footer-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: white; text-decoration: none; margin-bottom: 16px; }
.wt-footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.wt-footer-social { display: flex; gap: 12px; }
.wt-footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.wt-footer-social a:hover { background: var(--wt-primary); color: white; }
.wt-footer-links h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: white; }
.wt-footer-links ul { list-style: none; padding: 0; }
.wt-footer-links li { margin-bottom: 10px; }
.wt-footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.wt-footer-links a:hover { color: white; }
.wt-footer-newsletter h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: white; }
.wt-footer-newsletter p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.wt-newsletter-input-group { display: flex; gap: 8px; }
.wt-newsletter-input-group input { flex: 1; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--wt-radius); background: rgba(255,255,255,0.1); color: white; font-size: 14px; }
.wt-newsletter-input-group input::placeholder { color: rgba(255,255,255,0.5); }
.wt-newsletter-input-group input:focus { outline: none; border-color: var(--wt-primary); }
.wt-newsletter-input-group button { padding: 12px 20px; }
.wt-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.wt-footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.5); }
.wt-footer-bottom-right { display: flex; gap: 24px; }
.wt-footer-bottom-right a { color: rgba(255,255,255,0.5); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.wt-footer-bottom-right a:hover { color: white; }

@media (max-width: 1024px) { .wt-footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .wt-footer-main { grid-template-columns: 1fr; } .wt-footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* Page Hero */
.wt-page-hero { padding: 160px 0 80px; background: linear-gradient(180deg, var(--wt-bg-soft) 0%, var(--wt-bg) 100%); text-align: center; }
.wt-page-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.wt-page-hero p { font-size: 18px; color: var(--wt-text-secondary); max-width: 600px; margin: 0 auto; }

/* Service Detail */
.wt-service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wt-service-detail-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.wt-service-detail-content > p { font-size: 16px; color: var(--wt-text-secondary); margin-bottom: 24px; }
.wt-service-features { margin-top: 24px; }
.wt-service-feature { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 15px; color: var(--wt-text-secondary); }
.wt-service-feature i { color: var(--wt-success); }
.wt-service-detail-image { width: 100%; height: 400px; background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%); border-radius: 24px; overflow: hidden; }

@media (max-width: 1024px) { .wt-service-detail-grid { grid-template-columns: 1fr; } }

/* Mission Grid */
.wt-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.wt-mission-card { background: white; border: 1px solid var(--wt-border); border-radius: 20px; padding: 40px; }
.wt-mission-icon { width: 56px; height: 56px; background: var(--wt-bg-muted); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--wt-primary); margin-bottom: 20px; }
.wt-mission-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.wt-mission-card p { font-size: 15px; color: var(--wt-text-secondary); line-height: 1.7; }

/* Values */
.wt-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wt-value-card { text-align: center; padding: 32px 20px; }
.wt-value-number { font-size: 48px; font-weight: 800; color: var(--wt-bg-muted); margin-bottom: 16px; }
.wt-value-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wt-value-card p { font-size: 14px; color: var(--wt-text-secondary); }

@media (max-width: 1024px) { .wt-values-grid { grid-template-columns: repeat(2, 1fr); } }

/* Team */
.wt-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wt-team-card { text-align: center; background: white; border: 1px solid var(--wt-border); border-radius: 20px; padding: 32px; }
.wt-team-avatar { width: 100px; height: 100px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden; }
.wt-team-avatar-placeholder { width: 100%; height: 100%; background: var(--wt-bg-muted); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--wt-text-light); }
.wt-team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.wt-team-card p { font-size: 14px; color: var(--wt-text-light); }

@media (max-width: 1024px) { .wt-team-grid { grid-template-columns: repeat(2, 1fr); } }

/* Pricing */
.wt-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wt-pricing-card { background: white; border: 1px solid var(--wt-border); border-radius: 20px; padding: 40px; text-align: center; position: relative; }
.wt-pricing-featured { border-color: var(--wt-primary); box-shadow: 0 20px 40px rgba(37,99,235,0.15); transform: scale(1.05); }
.wt-pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--wt-primary); color: white; padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.wt-pricing-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wt-price { font-size: 40px; font-weight: 800; color: var(--wt-text); margin-bottom: 24px; }
.wt-pricing-card ul { list-style: none; padding: 0; margin-bottom: 24px; text-align: left; }
.wt-pricing-card li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--wt-text-secondary); }
.wt-pricing-card li i { color: var(--wt-success); }

@media (max-width: 1024px) { .wt-pricing-grid { grid-template-columns: 1fr; } .wt-pricing-featured { transform: none; } }

/* Map */
.wt-map-section { padding: 0 0 120px; }
.wt-map-placeholder { height: 400px; background: var(--wt-bg-muted); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--wt-text-light); gap: 12px; }
.wt-map-placeholder i { font-size: 48px; }

/* Newsletter Success */
.wt-newsletter-success { position: fixed; bottom: 24px; right: 24px; background: var(--wt-success); color: white; padding: 16px 24px; border-radius: 12px; box-shadow: 0 10px 30px rgba(16,185,129,0.3); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; z-index: 10001; }
.wt-newsletter-success.active { opacity: 1; visibility: visible; transform: translateY(0); }
.wt-newsletter-success-content { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }

/* WhatsApp Float */
.wt-whatsapp-float { position: fixed; bottom: 24px; left: 24px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 9999; box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: all 0.3s; text-decoration: none; }
.wt-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); color: white; }

/* Back to Top */
.wt-back-to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; background: var(--wt-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 9998; box-shadow: 0 4px 12px rgba(37,99,235,0.3); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; text-decoration: none; }
.wt-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.wt-back-to-top:hover { background: var(--wt-primary-dark); transform: translateY(-2px); color: white; }

/* Reveal Animation */
.wt-reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.wt-reveal.active { opacity: 1; transform: translateY(0); }