/*
Theme Name: Ichhari Media Buying Agency
Description: A premium, dark-mode, glassmorphism agency theme for Media Buying.
Author: Antigravity AI
Version: 2.0
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #141414;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --primary: #4F46E5;
    --primary-glow: rgba(79, 70, 229, 0.5);
    --accent-fb: #1877F2;
    --accent-google: #EA4335;
    --accent-tiktok: #00f2fe;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    opacity: 0.4;
    z-index: -1;
    filter: blur(50px);
}
.bg-glow.right {
    top: auto;
    bottom: -100px;
    left: auto;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    background: #4338ca;
}
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Hero */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
}
.trust-badges:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.trust-badge i {
    font-size: 1.5rem;
}

/* Services / Products */
.services, .products {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}
.card.fb:hover { box-shadow: 0 10px 40px rgba(24, 119, 242, 0.15); border-color: rgba(24, 119, 242, 0.3); }
.card.google:hover { box-shadow: 0 10px 40px rgba(234, 67, 53, 0.15); border-color: rgba(234, 67, 53, 0.3); }
.card.tiktok:hover { box-shadow: 0 10px 40px rgba(0, 242, 254, 0.15); border-color: rgba(0, 242, 254, 0.3); }

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 80px 0 120px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.form-control {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
textarea.form-control {
    resize: vertical;
    min-height: 100px;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
}
.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 600;
}
.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Linktree Style */
.links-container {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}
.links-profile {
    margin-bottom: 40px;
}
.link-btn {
    display: block;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.link-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media(max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero { padding: 60px 0; }
    .form-row { flex-direction: column; gap: 20px; }
    .trust-badges { flex-direction: column; gap: 15px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
    .nav-links { display: none; } /* Simplified mobile nav for now */
}
