:root {
    --bg: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --fb-blue: #1877F2; /* Facebook Blue */
    --border: #e2e8f0;
    --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background-color: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* Nav */
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 100; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.4rem; letter-spacing: -1px; text-transform: uppercase; }
.logo span { color: var(--fb-blue); font-weight: 300; }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
.nav-links a:hover { color: var(--fb-blue); }

/* Hero Section with BG Image */
.hero { 
    position: relative; 
    padding: 10rem 0; 
    text-align: center; 
    background: url('bgimage.jpg') no-repeat center center/cover; 
    color: white; 
    overflow: hidden; 
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)); }
.hero-content { position: relative; z-index: 2; }
h1 { font-size: 4rem; letter-spacing: -2px; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }
.highlight { color: var(--fb-blue); }
.hero-subtitle { font-size: 1.25rem; color: #cbd5e1; max-width: 700px; margin: 0 auto 3rem; }

/* Buttons */
.btn-primary { background: var(--fb-blue); color: white; padding: 1.1rem 3rem; text-decoration: none; border-radius: 8px; font-weight: 700; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: #166fe5; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(24,119,242,0.3); }
.btn-small { text-decoration: none; color: var(--fb-blue); border: 1.5px solid var(--fb-blue); padding: 0.6rem 1.2rem; border-radius: 6px; font-size: 0.9rem; font-weight: 600; transition: 0.2s; }
.btn-small:hover { background: var(--fb-blue); color: white; }

/* Stats */
.social-proof { padding: 5rem 0; background: #f8fafc; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--fb-blue); }
.stat-label { font-size: 1rem; color: var(--text-light); font-weight: 500; }

/* Features */
.features { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: 0.3s; }
.feature-card:hover { border-color: var(--fb-blue); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.feature-image { height: 220px; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-content { padding: 2.5rem; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

/* Contact Cards */
.contact-section { padding: 100px 0; background: #fff; border-top: 1px solid var(--border); }
.contact-wrapper { text-align: center; max-width: 800px; margin: 0 auto; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.contact-card { display: flex; align-items: center; background: #f8fafc; padding: 30px; border-radius: 16px; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: 0.3s; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--fb-blue); background: #fff; box-shadow: 0 10px 25px rgba(24,119,242,0.1); }
.icon-circle { width: 56px; height: 56px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; font-size: 1.5rem; border: 1px solid var(--border); }
.info { text-align: left; }
.info span { display: block; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.info strong { font-size: 1.2rem; font-weight: 800; }

.status-indicator { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #10b981; }
.pulse-dot { height: 10px; width: 10px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; }

/* Footer */
.footer { padding: 80px 0 40px; background: #0f172a; color: white; border-top: 1px solid #1e293b; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-logo { font-weight: 800; font-size: 1.5rem; margin-bottom: 15px; }
.footer-logo span { color: var(--fb-blue); font-weight: 300; }
.footer-brand p { color: #94a3b8; font-size: 0.95rem; }
.footer-info span { color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 5px; }
.footer-legal { text-align: right; color: #64748b; font-size: 0.85rem; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    h1 { font-size: 2.8rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-actions { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-legal { text-align: center; margin-top: 30px; }
}