/**
 * myphonenumberlookup.com - Custom Theme
 * Primary: #f97316
 * Accent: #84cc16
 */

:root {
    --primary: #f97316;
    --primary-dark: color-mix(in srgb, #f97316, black 20%);
    --primary-light: color-mix(in srgb, #f97316, white 30%);
    --accent: #84cc16;
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --bg-hover: #252535;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --border: #2a2a3a;
    --border-hover: #3a3a50;
    --shadow: 0 4px 20px rgba(0,0,0,0.5);
    --radius: 8px;
    --radius-lg: 12px;
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #84cc16 100%);
    --gradient-hero: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    background: var(--bg-primary); 
    color: var(--text-secondary); 
    line-height: 1.6;
    min-height: 100vh;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

/* Header */
.site-header { 
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); 
    position: sticky; 
    top: 0; 
    z-index: 1000;
}

.header-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 70px; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    text-decoration: none; 
}

.logo-icon { 
    width: 40px; 
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg { 
    width: 24px; 
    height: 24px; 
    fill: white;
}

.logo-text { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--text-primary);
}

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

.main-nav { 
    display: flex; 
    gap: 2rem; 
}

.nav-link { 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.9375rem; 
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover { 
    color: var(--text-primary); 
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero */
.hero { 
    padding: 5rem 1.5rem 6rem; 
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, #f9731620 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border); 
    color: var(--text-secondary); 
    padding: 0.5rem 1rem; 
    border-radius: 9999px; 
    font-size: 0.875rem; 
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-badge::before { 
    content: ''; 
    width: 8px; 
    height: 8px; 
    background: var(--accent); 
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: var(--text-primary); 
    line-height: 1.1; 
    margin-bottom: 1rem; 
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle { 
    font-size: 1.25rem; 
    color: var(--text-secondary); 
    margin-bottom: 2.5rem; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Search Container */
.search-container { 
    max-width: 600px; 
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-tab {
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 9999px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.search-tab:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.search-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.search-box { 
    display: flex; 
    gap: 0.75rem; 
    background: var(--bg-card); 
    padding: 0.5rem; 
    border: 1px solid var(--border); 
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.search-box:focus-within { 
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #f9731620;
}

.search-input { 
    flex: 1; 
    background: transparent; 
    border: none; 
    padding: 1rem 1.25rem; 
    font-size: 1.125rem; 
    color: var(--text-primary); 
    outline: none;
}

.search-input::placeholder { 
    color: var(--text-muted); 
}

.search-btn { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: var(--gradient-primary);
    color: white;
    border: none; 
    padding: 1rem 1.75rem; 
    border-radius: var(--radius); 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s;
    white-space: nowrap;
}

.search-btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #f9731640;
}

.trust-badges { 
    display: flex; 
    justify-content: center; 
    gap: 2rem; 
    margin-top: 2rem; 
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-badge { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--text-secondary); 
    font-size: 0.875rem;
}

.trust-badge::before { 
    content: ''; 
    width: 18px; 
    height: 18px; 
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2384cc16'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat; 
}

/* Search Type Specific Styles */
.search-type-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-right: 1px solid var(--border);
}

.search-type-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

/* Features */
.features { 
    padding: 5rem 1.5rem; 
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--text-primary); 
    margin-bottom: 3rem;
}

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

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.feature-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 2rem; 
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover { 
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.feature-icon { 
    width: 64px; 
    height: 64px; 
    background: var(--gradient-primary);
    border-radius: var(--radius); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.25rem;
}

.feature-icon svg { 
    width: 32px; 
    height: 32px; 
    fill: white;
}

.feature-card h3 { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--text-primary); 
    margin-bottom: 0.5rem;
}

.feature-card p { 
    color: var(--text-secondary); 
    font-size: 0.9375rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 1.5rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
.site-footer { 
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2rem;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr repeat(3, 1fr); 
    gap: 3rem; 
    margin-bottom: 3rem;
}

.footer-brand .logo { 
    margin-bottom: 1rem;
}

.footer-desc { 
    color: var(--text-secondary); 
    font-size: 0.9375rem; 
    margin-bottom: 1rem;
    max-width: 300px;
}

.footer-trust { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--accent);
    font-size: 0.875rem;
}

.footer-links h4 { 
    color: var(--text-primary); 
    font-size: 0.875rem; 
    font-weight: 600; 
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul { 
    list-style: none;
}

.footer-links li { 
    margin-bottom: 0.625rem;
}

.footer-links a { 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-size: 0.875rem; 
    transition: color 0.2s;
}

.footer-links a:hover { 
    color: var(--primary);
}

.footer-bottom { 
    border-top: 1px solid var(--border); 
    padding-top: 2rem; 
    text-align: center;
}

.footer-bottom p { 
    color: var(--text-muted); 
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero h1 { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .search-box { flex-direction: column; }
    .search-btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .search-tabs { flex-wrap: wrap; }
    .search-type-label { display: none; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.875rem; }
}
