/* ========================================
   FK Consulting - Professional CSS
   ======================================== */

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

:root {
    --primary: #1a3a52;
    --secondary: #2c5aa0;
    --light: #f8f9fa;
    --border: #e0e0e0;
    --text: #333;
    --text-light: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

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

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

.header {
    background: var(--primary);
    color: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e8f0f7;
    border-bottom: 2px solid #fff;
}

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

.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.2);
}

.btn-primary {
    background: var(--secondary);
}

.btn-secondary {
    background: var(--primary);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   TYPOGRAPHY & SECTIONS
   ======================================== */

section {
    padding: 4rem 0;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary);
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 7rem 20px;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero h1 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: #e8f0f7;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

/* ========================================
   WHAT MATTERS SECTION
   ======================================== */

.values-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.values-list li {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.values-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.values-list p {
    margin: 0;
    color: var(--text-light);
}

.values-conclusion {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    color: var(--primary);
}

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

.services-section {
    padding: 4rem 0;
}

.services-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.services-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.services-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.services-list p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients-section {
    background: var(--light);
    padding: 4rem 0;
}

.clients-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.clients-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.clients-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.clients-list p {
    margin: 0;
    color: var(--text-light);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.consulting-process {
    background: var(--light);
    padding: 4rem 0;
}

.process-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.process-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.process-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.process-list p {
    margin: 0;
    color: var(--text-light);
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
    padding: 4rem 0;
}

.why-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.why-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.why-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.why-list p {
    margin: 0;
    color: var(--text-light);
}

/* ========================================
   SERVICE DETAIL PAGE
   ======================================== */

.service-detail-section {
    padding: 3rem 0;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.service-main h2 {
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.8rem;
    margin-top: 2rem;
}

.delivery-list,
.benefits-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.delivery-list li,
.benefits-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.sidebar-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary);
}

.sidebar-box h3 {
    margin-top: 0;
}

.sidebar-box ol,
.sidebar-box ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.sidebar-list {
    list-style: decimal;
    margin-top: 1rem;
    padding-left: 0;
}

.sidebar-list li {
    margin-bottom: 0.6rem;
    margin-left: 1.5rem;
    color: var(--text-light);
}

.sidebar-box li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.sidebar-box .btn {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.related-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
    padding: 4rem 0;
}

.about-list {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.about-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.about-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.about-list p {
    margin: 0;
    color: var(--text-light);
}

.about-values-section {
    background: var(--light);
    padding: 4rem 0;
}

.values-grid {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.values-grid li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.values-grid h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.values-grid p {
    margin: 0;
    color: var(--text-light);
}

.about-contact-section {
    padding: 4rem 0;
}

.about-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.contact-info-about {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.contact-info-about h3 {
    margin-top: 0;
}

.contact-info-about p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info-about strong {
    color: var(--primary);
}

.contact-info-about a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-about a:hover {
    color: var(--primary);
}

.cta-about {
    text-align: center;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
    padding: 4rem 0;
}


.team-grid {
    list-style: decimal;
    margin: 3rem 0 0 0;
    padding-left: 2rem;
    max-width: 800px;
}

.team-member {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.member-tagline {
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-bio {
    margin: 0;
}

.member-bio p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

.about-contact-section {
    padding: 4rem 0;
}

.about-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.contact-info-about {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.contact-info-about h3 {
    margin-top: 0;
}

.contact-info-about p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info-about strong {
    color: var(--primary);
}

.contact-info-about a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-about a:hover {
    color: var(--primary);
}

.cta-about {
    text-align: center;
}

.contact-section {
    padding: 3rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form h2 {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.contact-form .btn {
    width: 100%;
}

.contact-info {
    padding: 0;
}

.contact-info h2 {
    margin-top: 0;
}

.info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.info-block p {
    margin: 0.5rem 0;
}

.info-block a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-block a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
}

.contact-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ========================================
   MESSAGES
   ======================================== */

.message-box {
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.message-success {
    background: #f0f8f0;
    border-left-color: var(--primary);
    color: var(--primary);
}

.message-error {
    background: #f8f0f0;
    border-left-color: var(--secondary);
    color: var(--primary);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
}

.cta-section p {
    color: #e8f0f7;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

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

.footer {
    background: var(--primary);
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b8c5d6;
    margin-bottom: 0.7rem;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover {
    color: #fff;
}
