:root {
    --primary: #059669; /* Emerald Green */
    --primary-dark: #047857;
    --secondary: #10b981;
    --accent: #3b82f6; 
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-blur: 10px;
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Subtle Background Elements --- */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.1;
}

.blob:nth-child(1) {
    background: var(--primary);
    top: -20%;
    right: -10%;
    animation: move 25s infinite alternate;
}

.blob:nth-child(2) {
    background: var(--accent);
    bottom: -20%;
    left: -10%;
    animation: move 30s infinite alternate-reverse;
}

.blob:nth-child(3) {
    background: var(--secondary);
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    opacity: 0.05;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 50px) scale(1.05); }
}

/* --- Navigation --- */
nav {
    padding: 1.25rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    font-size: 1.85rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.logo-research {
    color: #ff5733; /* Orange-red from reference */
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3);
}

.nav-cta::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }
}

/* --- Hero Section --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.verify-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.content-wrapper {
    max-width: 900px;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

/* --- Contact Section --- */
.contact-section {
    padding: 6rem 0;
    width: 100%;
    background-color: var(--bg-soft);
}

.contact-hero {
    background: #fff;
    padding: 8rem 0 4rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-simple-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-item .icon {
    font-size: 2.5rem;
}

.contact-item .details label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-item .details a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item .details a:hover {
    color: var(--primary);
}

.footer-note {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 4rem;
}

.contact-footer-text {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.contact-footer-text p {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    line-height: 1.5;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

/* --- Search Card --- */
.verify-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.verify-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.search-box {
    display: flex;
    gap: 1rem;
}

input {
    flex: 1;
    background: #f1f5f9;
    border: 2px solid transparent;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

button {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0 2.5rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

button:active {
    transform: scale(0.98);
}

.icon {
    width: 20px;
    height: 20px;
}

/* --- Results --- */
.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

#result-container {
    transition: var(--transition);
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.status-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.result-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.result-item span {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
}

/* --- Footer --- */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--card-border);
    background: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .search-box { flex-direction: column; }
    button { padding: 1.25rem; justify-content: center; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
