/* ======================================
   ZENITH PERSPECTIVE LLC - PROFESSIONAL CONSULTING DESIGN
   ====================================== */

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

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1F2937;
    background-color: #FFFFFF;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    color: #C49D48;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #A67C2B;
}

/* ======================================
   HEADER & NAVIGATION
   ====================================== */

header {
    background: #001a4d;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(196, 157, 72, 0.3);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header nav .logo {
    transition: transform 0.3s ease;
}

header nav .logo:hover {
    transform: scale(1.05);
}

header nav .logo img {
    height: 55px;
    width: auto;
    display: block;
}

.navbar {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.navbar a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.navbar a:hover {
    background-color: rgba(196, 157, 72, 0.15);
    color: #C49D48;
}

.login-btn {
    background: linear-gradient(135deg, #C49D48 0%, #A67C2B 100%);
    color: #001a4d !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(196, 157, 72, 0.3);
    margin-left: 12px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #C49D48 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 157, 72, 0.5);
}

/* ======================================
   HERO SECTION WITH BACKGROUND
   ====================================== */

.hero {
    background-image: linear-gradient(rgba(0, 13, 38, 0.85), rgba(0, 26, 77, 0.85)), url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 40px;
    color: white;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #E5E7EB;
    font-weight: 400;
    line-height: 1.7;
}

/* ======================================
   BUTTONS
   ====================================== */

.btn-primary {
    background: linear-gradient(135deg, #C49D48 0%, #A67C2B 100%);
    color: #001a4d;
    padding: 16px 42px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 157, 72, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #C49D48 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 157, 72, 0.6);
}

/* ======================================
   SECTIONS
   ====================================== */

section {
    padding: 90px 40px;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    margin-bottom: 18px;
    text-align: center;
    color: #001a4d;
    font-weight: 800;
    letter-spacing: -0.5px;
}

section > p {
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6B7280;
}

/* ======================================
   RESULTS SECTION
   ====================================== */

.results-section {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #C49D48;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(196, 157, 72, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #C49D48;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #4B5563;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ======================================
   SERVICES SECTION
   ====================================== */

.services-section {
    background: #FFFFFF;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #C49D48;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(196, 157, 72, 0.2);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    color: #001a4d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item > p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-benefits li {
    padding: 10px 0 10px 28px;
    color: #4B5563;
    font-size: 0.95rem;
    position: relative;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C49D48;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ======================================
   EXPERTISE / FOCUS AREAS
   ====================================== */

.focus-areas {
    background: #F9FAFB;
}

.focus-areas .tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.tile {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #C49D48;
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(196, 157, 72, 0.2);
}

.tile img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.tile h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #001a4d;
    font-weight: 700;
}

.tile p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ======================================
   EXPANDED ABOUT SECTION
   ====================================== */

.about-section-expanded {
    background: #FFFFFF;
    padding: 100px 40px;
}

.about-content-expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 40px auto 60px;
}

.about-box {
    padding: 45px 40px;
    background: #F9FAFB;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    border-top: 4px solid #C49D48;
}

.about-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #001a4d;
    margin-bottom: 18px;
    font-weight: 700;
}

.about-box p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
}

/* ======================================
   WHY ZENITH (INSIDE ABOUT)
   ====================================== */

.why-zenith-section {
    max-width: 1400px;
    margin: 60px auto 0;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #001a4d;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid #C49D48;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(196, 157, 72, 0.2);
}

.why-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #001a4d;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-item p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ======================================
   INSIGHTS SECTION
   ====================================== */

.insights-section {
    background: #F9FAFB;
}

.articles-list {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.articles-list article {
    background: #FFFFFF;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    transition: all 0.3s ease;
    border-bottom: 3px solid #C49D48;
}

.articles-list article:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(196, 157, 72, 0.2);
}

.articles-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #001a4d;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.articles-list p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.download-btn {
    background: linear-gradient(135deg, #C49D48 0%, #A67C2B 100%);
    color: #001a4d;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 157, 72, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #C49D48 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 157, 72, 0.5);
}

/* ======================================
   CONTACT SECTION
   ====================================== */

.contact-section {
    background: #FFFFFF;
}

.contact-info {
    max-width: 700px;
    margin: 30px auto 40px;
    padding: 35px 40px;
    background: #F9FAFB;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.06);
    border-left: 4px solid #C49D48;
    text-align: center;
}

.contact-info p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4B5563;
}

.contact-info strong {
    color: #001a4d;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-error {
    color: #991B1B;
    background-color: #FEE2E2;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 0 auto 25px;
    text-align: center;
    font-weight: 600;
    border-left: 4px solid #DC2626;
    max-width: 700px;
}

.form-success {
    color: #065F46;
    background-color: #D1FAE5;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 0 auto 25px;
    text-align: center;
    font-weight: 600;
    border-left: 4px solid #10B981;
    max-width: 700px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #F9FAFB;
    padding: 50px 45px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 26, 77, 0.08);
    border-top: 4px solid #C49D48;
}

.contact-form label {
    margin: 15px 0 8px 0;
    font-weight: 700;
    color: #001a4d;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #C49D48;
    box-shadow: 0 0 0 3px rgba(196, 157, 72, 0.1);
}

.contact-form button {
    margin-top: 30px;
    align-self: center;
}

/* ======================================
   MODAL
   ====================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 13, 38, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #FFFFFF;
    margin: 5% auto;
    padding: 50px 45px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 26, 77, 0.3);
    border-top: 5px solid #C49D48;
}

.close-modal {
    color: #6B7280;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #C49D48;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #001a4d;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

#modal-article-title {
    text-align: center;
    font-weight: 700;
    color: #C49D48;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 30px;
}

.download-form {
    display: flex;
    flex-direction: column;
}

.download-form label {
    margin: 12px 0 6px 0;
    font-weight: 700;
    color: #001a4d;
    font-size: 0.95rem;
}

.download-form input {
    padding: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #F9FAFB;
}

.download-form input:focus {
    outline: none;
    border-color: #C49D48;
    box-shadow: 0 0 0 3px rgba(196, 157, 72, 0.1);
    background-color: #FFFFFF;
}

.download-form button {
    margin-top: 25px;
    align-self: center;
}

.modal-success {
    background-color: #D1FAE5;
    color: #065F46;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    border-left: 4px solid #10B981;
}

.modal-error {
    background-color: #FEE2E2;
    color: #991B1B;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    border-left: 4px solid #DC2626;
}

/* ======================================
   LOGIN PAGE
   ====================================== */

.login-hero {
    padding: 80px 40px;
    text-align: center;
    background: #F9FAFB;
}

.login-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #001a4d;
    margin-bottom: 20px;
    font-size: 2.75rem;
    font-weight: 800;
}

.login-form {
    max-width: 500px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 50px 45px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 26, 77, 0.12);
    border-top: 4px solid #C49D48;
}

.login-form label {
    margin: 15px 0 8px 0;
    font-weight: 700;
    color: #001a4d;
    font-size: 0.95rem;
}

.login-form input {
    padding: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #F9FAFB;
}

.login-form input:focus {
    outline: none;
    border-color: #C49D48;
    box-shadow: 0 0 0 3px rgba(196, 157, 72, 0.1);
    background-color: #FFFFFF;
}

.login-form button {
    margin-top: 25px;
}

/* ======================================
   FOOTER
   ====================================== */

footer {
    background: linear-gradient(135deg, #000d26 0%, #001a4d 100%);
    color: #D1D5DB;
    padding: 50px 40px 30px;
    border-top: 3px solid #C49D48;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(196, 157, 72, 0.3));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: #C49D48;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: #C49D48;
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D1D5DB;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #C49D48;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(196, 157, 72, 0.2);
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media(max-width: 1200px) {
    .stats-grid,
    .focus-areas .tiles,
    .why-grid,
    .articles-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    header nav {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 80px 20px;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .stats-grid,
    .focus-areas .tiles,
    .service-list,
    .about-content-expanded,
    .why-grid,
    .articles-list,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .login-form {
        padding: 35px 25px;
    }
    
    .btn-primary {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
}

@media(max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 1.7rem;
    }
}
