/* ==========================================================================
   AID Marketing Agency - Final Production CSS (All Fixes Integrated)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- COLOR PALETTE (OPTION 1) --- */
:root {
    --gold-primary: #D4AF37;
    --gold-highlight: #F5E8C7;
    --text-secondary: #CCCCCC;
    --bg-dark-charcoal: #111111;
    --bg-black: #000000;
    --divider-color: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: var(--bg-black);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-highlight); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: #ffffff; }
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-highlight) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent;
    text-align: center;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-highlight) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent;
    text-align: center; margin-bottom: 2rem;
}
h3 { font-size: 1.5rem; }
p { font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1rem; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; overflow: hidden; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--divider-color); z-index: 1000; transition: all 0.3s ease; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.logo img { height: 70px; transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.1); }
.logo span { font-size: 1.8rem; font-weight: 800; color: var(--gold-primary); transition: transform 0.3s ease; }
.logo:hover span { transform: scale(1.05); }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 1rem; position: relative; transition: color 0.3s ease; padding: 0.5rem 0; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold-primary); transition: width 0.3s ease; }
.nav-link:hover { color: var(--gold-primary); }
.nav-link:hover::after { width: 100%; }
.nav-toggle { display: none; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background-color: var(--bg-black); overflow: hidden; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(var(--divider-color) 1px, transparent 1px), linear-gradient(90deg, var(--divider-color) 1px, transparent 1px); background-size: 50px 50px; animation: futuristic-grid 4s linear infinite; opacity: 0.7; z-index: 1; }
.hero-content { text-align: center; max-width: 800px; position: relative; z-index: 2; }
.hero-subtitle { color: var(--gold-primary); text-transform: uppercase; letter-spacing: 2px; }
.hero-description { color: var(--text-secondary); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 12px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--gold-primary); color: var(--bg-black); border: 2px solid var(--gold-primary); }
.btn-primary:hover { background: var(--gold-highlight); border-color: var(--gold-highlight); }
.btn-secondary { background: transparent; color: var(--gold-primary); border: 2px solid var(--gold-primary); }
.btn-secondary:hover { background: var(--gold-primary); color: var(--bg-black); }

/* Services Section */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card { background: var(--bg-dark-charcoal); border: 1px solid var(--divider-color); border-radius: 20px; padding: 2.5rem; text-align: center; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1); border-color: var(--gold-primary); }
.service-icon { font-size: 3rem; color: var(--gold-primary); margin-bottom: 1.5rem; }

/* About Section */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.stat-item { text-align: center; padding: 1.5rem; background: var(--bg-dark-charcoal); border-radius: 12px; border: 1px solid var(--divider-color); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--gold-primary); display: block; }
.stat-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }

/* Testimonials Section */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--bg-dark-charcoal); border: 1px solid var(--divider-color); border-radius: 20px; padding: 2rem; position: relative; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
.testimonial-rating { color: var(--gold-primary); font-size: 1.5rem; margin-bottom: 1rem; text-align: center; }
.testimonial-text { font-style: italic; text-align: center; flex-grow: 1; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-primary); }
.author-info { text-align: center; }
.author-info h4 { margin-bottom: 0.25rem; }
.author-info p { font-size: 0.9rem; margin: 0; color: var(--text-secondary); }

/* Contact Section */
.contact-cards-container { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.contact-item { background: var(--bg-dark-charcoal); border-radius: 12px; padding: 24px 32px; display: flex; align-items: center; gap: 1.5rem; }
.contact-icon { font-size: 1.5rem; color: var(--gold-primary); }
.contact-text h4 { color: var(--gold-primary); }
.contact-text a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.contact-text a:hover { color: var(--gold-highlight); }
.section-divider { width: 50%; margin: 2rem auto 0; border: none; height: 1px; background-color: var(--divider-color); }

/* Footer */
.footer { background: var(--bg-black); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; justify-items: center; text-align: center; }
.footer-section h3 { color: var(--gold-primary); }
.footer-links a { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold-highlight); }
.social-links { display: flex; justify-content: center; gap: 1rem; }
.social-link svg { height: 24px; width: 24px; fill: var(--text-secondary); transition: fill 0.3s ease; }
.social-link:hover svg { fill: var(--gold-primary); }
.footer-bottom { text-align: center; padding-top: 3rem; color: var(--text-secondary); opacity: 0.7; }

/* Animations & Utility */
@keyframes futuristic-grid { from { background-position: 0 0; } to { background-position: 50px 0; } }
.text-center { text-align: center; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .about-content { grid-template-columns: 1fr; }
}