/* LinkedIn Strategy SA - Main Stylesheet */
/* Powered by LadyBugz */

:root {
    --primary: #0A66C2;
    --primary-dark: #004182;
    --secondary: #cd1719;
    --accent: #146464;
    --text: #333333;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border: #e0e0e0;
    --gradient: linear-gradient(135deg, #0A66C2, #004182);
    --gradient-accent: linear-gradient(135deg, #146464, #0A66C2);
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
}

a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

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

/* Header */
.site-header {
    background: var(--bg-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1140px;
    margin: 0 auto;
}
.site-logo {
    color: white;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-logo span { color: var(--primary); }
.logo-mark {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.logo-mark .logo-triangle {
    width: 0;
    height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-bottom: 38px solid var(--primary);
}
.logo-mark .logo-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}
.logo-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text-stack .logo-name {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
}
.logo-text-stack .logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a {
    color: #ccc;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s;
}
.main-nav a:hover { color: white; background: rgba(255,255,255,0.1); }
.main-nav .nav-cta {
    background: var(--primary);
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 6px;
}
.main-nav .nav-cta:hover { background: var(--primary-dark); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Sections */
.hero {
    background: var(--gradient);
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: 2.4em;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 1.15em;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.hero-cta {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Open Sans', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: #f0f0f0; color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--primary); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(10,102,194,0.4); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: #a81315; color: white; }

/* Sections */
.section { padding: 70px 20px; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: white; }
.section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--text);
}
.section-dark h2 { color: white; }
.section h3 { font-size: 1.3em; margin-bottom: 10px; }
.section-subtitle {
    color: var(--text-light);
    font-size: 1.05em;
    max-width: 650px;
    margin: 0 auto 40px;
}
.text-center { text-align: center; }

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-top: 3px solid var(--primary);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.service-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2em;
}
.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.service-card .card-link {
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
}
.service-card .card-link:hover { color: var(--primary-dark); }

/* Steps / Process */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.step {
    text-align: center;
    padding: 20px;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0 auto 15px;
}
.step h3 { color: var(--text); margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 15px; }

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}
.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 30px auto 0; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--primary);
    transition: transform 0.3s;
}
.faq-question.active::after {
    content: "-";
}
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}
.faq-answer.active { display: block; }

/* CTA Banner */
.cta-banner {
    background: var(--gradient);
    padding: 60px 20px;
    text-align: center;
    color: white;
}
.cta-banner h2 {
    color: white;
    font-size: 1.8em;
    margin-bottom: 15px;
}
.cta-banner p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1.05em;
}
.cta-banner .contact-info {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #aaa;
    padding: 50px 20px 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}
.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}
.footer-col p, .footer-col a {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}
.footer-col a:hover { color: var(--primary); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 5px; }
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom a { color: var(--secondary); }

/* Powered By Badge */
.powered-by {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(205,23,25,0.1);
    border: 1px solid rgba(205,23,25,0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--secondary);
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.7em; }
    .hero { padding: 50px 20px; }
    .section { padding: 50px 20px; }
    .two-col { grid-template-columns: 1fr; gap: 30px; }
    .two-col.reverse { direction: ltr; }
    .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-dark); padding: 15px; gap: 5px; }
    .main-nav.active { display: flex; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
