/* OLADIMEJI ADVISORY AND CONSULT - Main Stylesheet */

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --accent: #60a5fa;
    --background: #f8fafc;
    --white: #fff;
    --text: #1e293b;
    --shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    --testimonial-bg: #e0f2fe;
    --testimonial-text: #0f172a;
}

html {
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    color: var(--text);
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 1px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: var(--primary);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 2rem 4rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    box-shadow: var(--shadow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.25rem;
    font-weight: 400;
}

/* About Section */
.about-section {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}
.about-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: var(--background);
    padding: 3rem 2rem;
}
.services-section h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--testimonial-bg);
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}
.testimonials-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
    flex: 1 1 300px;
}
.testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.12);
}
.testimonial-card p {
    font-style: italic;
    color: var(--testimonial-text);
}
.testimonial-card cite {
    font-weight: bold;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}
.contact-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem auto;
}
.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #dbeafe;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    background: var(--background);
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--primary);
    outline: none;
}
.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: var(--primary-light);
}
.contact-info {
    margin-top: 1rem;
    color: var(--text);
}
.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.18);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    animation: floatIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.whatsapp-float img {
    width: 32px;
    height: 32px;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.28);
    transform: scale(1.08);
}
@keyframes floatIn {
    from { opacity: 0; transform: translateY(40px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .services-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .navbar {
        padding: 1rem;
    }
    .nav-links {
        position: fixed;
        top: 64px;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem 1.5rem;
        box-shadow: -2px 0 12px rgba(37, 99, 235, 0.08);
        transition: right 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    .hero-section {
        padding: 3.5rem 1rem 2.5rem 1rem;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
}

body, .navbar, .service-card p, .contact-form input, .contact-form textarea, .contact-form button, .contact-info, footer {
    font-family: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
}

.testimonials-section, .testimonial-card, .testimonial-card p, .testimonial-card cite {
    font-family: 'Lora', serif;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 