/*
Theme Name: CDR King Theme
Theme URI: https://cdrking.com
Author: Syad John Hassan
Author URI: https://cdrking.com
Description: Professional Data Inquiry Platform for SIM, CNIC, CDR, and more
Version: 1.0
License: GPL v2 or later
Text Domain: cdrking
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1629 100%);
    min-height: 100vh;
    color: #e0e0e0;
}

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

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    margin-bottom: 20px;
}

.site-title {
    font-size: 28px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.site-description {
    font-size: 11px;
    color: #ff8c00;
    margin: 0;
}

/* Navigation Desktop */
.main-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.main-navigation a:hover {
    color: #ffd700;
}

/* Search Card */
.search-card {
    background: rgba(18, 25, 45, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid rgba(255,215,0,0.2);
}

.search-card h2 {
    color: #ffd700;
    margin-bottom: 10px;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 16px 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    text-align: center;
}

.search-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 50px;
    color: #0a0e1a;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

/* Results */
.results-card {
    background: rgba(18, 25, 45, 0.7);
    border-radius: 24px;
    padding: 24px;
    margin: 20px 0;
    display: none;
}

.result-record {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 3px solid #ffd700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    background: rgba(18, 25, 45, 0.7);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.4);
}

.service-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Notice Box */
.notice-box {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 12px;
}

.notice-box h3 {
    color: #ff6b6b;
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    color: white;
    z-index: 1000;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.float-wa:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    .search-card {
        padding: 25px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}