/* ==========================================================================
   AGORA ADVISORY - WEBSITE STYLES
   Brand Colors: Grey #8C8784, Gold #B8915E, Cream #E8E3DC
   ========================================================================== */

/* CSS Variables */
:root {
    --grey-bg: #8C8784;
    --strong-gold: #B8915E;
    --light-cream: #E8E3DC;
    --deep-charcoal: #3C3734;
    --warm-stone: #7D746D;
    --bone: #F5F2EE;
    --white: #FFFFFF;
    --accent-teal: #5A7C7E;
    
    --font-primary: 'Lora', Georgia, serif;
    --font-secondary: 'Calibri', 'Segoe UI', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--deep-charcoal);
    line-height: 1.6;
    background: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-agora {
    color: var(--strong-gold);
}

.logo-advisory {
    color: var(--warm-stone);
    margin-left: 0.2rem;
}

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

.nav-link {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--strong-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--deep-charcoal);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bone);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--grey-bg) 0%, var(--warm-stone) 100%);
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-agora {
    color: var(--strong-gold);
}

.hero-advisory {
    color: var(--light-cream);
    margin-left: 0.5rem;
}

.hero-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--light-cream);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--bone);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--strong-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-charcoal);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-charcoal);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--warm-stone);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: var(--bone);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--light-cream);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--strong-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--strong-gold);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
}

.service-description {
    color: var(--warm-stone);
    line-height: 1.8;
    font-size: 0.98rem;
}

.services-note {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--strong-gold);
}

.services-note p {
    font-size: 1.05rem;
    color: var(--deep-charcoal);
}

/* What Sets Us Apart Section */
.difference {
    background: var(--white);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.difference-card {
    background: var(--bone);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--strong-gold);
    transition: all 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: var(--accent-teal);
}

.difference-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
}

.difference-description {
    color: var(--warm-stone);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* Experience Section */
.experience {
    background: var(--white);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.experience-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
    border-bottom: 3px solid var(--strong-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.experience-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--warm-stone);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--bone);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: var(--light-cream);
    transform: translateX(5px);
}

.credential-logo {
    min-width: 60px;
    height: 60px;
    background: var(--strong-gold);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.credential-company {
    font-weight: 600;
    color: var(--deep-charcoal);
    font-size: 1.05rem;
}

.credential-role {
    color: var(--warm-stone);
    font-size: 0.9rem;
}

.experience-expertise {
    padding: 2.5rem;
    background: var(--bone);
    border-radius: 8px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.expertise-tag {
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: var(--deep-charcoal);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--light-cream);
}

/* Insights Section */
.insights {
    background: var(--bone);
}

.insights-featured {
    margin-bottom: 3rem;
}

.insight-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--light-cream);
}

.insight-card.featured {
    border: 2px solid var(--strong-gold);
}

.insight-badge {
    background: var(--strong-gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-content {
    padding: 2.5rem;
}

.insight-meta {
    color: var(--warm-stone);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.insight-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
}

.insight-description {
    color: var(--warm-stone);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.insight-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bone);
    border-radius: 6px;
}

.highlight-item {
    text-align: center;
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--warm-stone);
    margin-bottom: 0.5rem;
}

.highlight-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--strong-gold);
    margin-bottom: 0.3rem;
}

.highlight-note {
    font-size: 0.8rem;
    color: var(--warm-stone);
}

.insights-upcoming {
    margin-bottom: 3rem;
}

.insights-upcoming-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
}

.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upcoming-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--accent-teal);
}

.upcoming-quarter {
    min-width: 80px;
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 1rem;
}

.upcoming-topic {
    color: var(--deep-charcoal);
    font-size: 1rem;
}

.insights-subscribe {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
}

.insights-subscribe p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--warm-stone);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-heading {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--warm-stone);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-value {
    color: var(--deep-charcoal);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--strong-gold);
}

.contact-info {
    padding: 1.5rem;
    background: var(--bone);
    border-radius: 6px;
    border-left: 4px solid var(--strong-gold);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--deep-charcoal);
}

/* Contact Form */
.contact-form {
    background: var(--bone);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--light-cream);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--strong-gold);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--grey-bg);
    color: var(--light-cream);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--bone);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--bone);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insight-highlights {
        grid-template-columns: 1fr;
    }
    
    .upcoming-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}
