/* 
    TAKHRIJ HADITH LAB - Style Sheet
    Colors:
    - Bright Blue: #0171de
    - Dark Blue: #0145a6
    - Darker BG: #0a1128
    - White: #ffffff
    - Light Blue Tint: #f0f7ff
*/

:root {
    --bright-blue: #0171de;
    --dark-blue: #001639;
    --darker-bg: #000c1f;
    --cta-blue: #0145a6;
    --white: #ffffff;
    --light-bg: #f8faff;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(1, 69, 166, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .btn, .pre-header {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--bright-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 113, 222, 0.3);
}

.btn-dark-blue {
    background-color: var(--cta-blue);
    color: var(--white);
}

.btn-dark-blue:hover {
    background-color: var(--bright-blue);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--cta-blue);
}

.btn-white:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.btn-rounded {
    border-radius: 50px;
}

.btn-pill {
    border-radius: 100px;
    padding: 0.8rem 2.2rem;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.btn-oval {
    border-radius: 100px;
    padding: 1rem 2.5rem;
}

.btn-text-blue {
    color: var(--bright-blue);
    font-weight: 600;
    text-decoration: none;
    margin-left: 1rem;
}

.btn-text-blue:hover {
    text-decoration: underline;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-right: auto;
    margin-left: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--bright-blue);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-blue);
}

/* SECTION 1: HERO */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.trust-bar {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 0;
}

.trust-bar p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}

.logo-grid:hover {
    opacity: 0.8;
    filter: grayscale(0.5);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pre-header {
    display: block;
    font-weight: 600;
    color: #000000;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-text h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #111111;
}

.blue-text-highlight {
    color: var(--bright-blue);
}

.italic-text {
    font-style: italic;
}

.sub-heading {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 100%;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* SECTION 2: SOCIAL PROOF */
.social-proof-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
    background-image: url('assets/images/section-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.z-pattern-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.blue-text {
    color: var(--bright-blue);
}

.body-copy {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stats-container {
    display: flex;
    justify-content: center;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(1, 69, 166, 0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(1, 113, 222, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 113, 222, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card.double {
    max-width: 900px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    flex: 1;
    padding: 0 2rem;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(1, 113, 222, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-stack img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bright-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid var(--white);
    margin-left: -15px;
}

/* SECTION 3: WORKFLOW */
.workflow-section {
    padding: 8rem 0;
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    position: relative;
}

.workflow-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: left;
}

.workflow-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-item {
    flex: 1;
    text-decoration: none;
    color: inherit;
    display: block;
}

.workflow-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    transition: var(--transition);
}

.workflow-item:hover .workflow-icon {
    background: var(--bright-blue);
    transform: scale(1.1);
}

.workflow-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* SECTION 4: FEATURES */
.features-section {
    padding: 8rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.header-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:nth-child(4) {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
}

.feature-card:nth-child(4) .icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--cta-blue);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.card-text {
    flex: 1;
}

/* SECTION 5: PRICING */
.pricing-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
    background-image: url('assets/images/section-bg.png');
    background-size: cover;
    background-position: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--bright-blue);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bright-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pkg-icon {
    width: 60px;
    height: 60px;
    background: var(--cta-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.price {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.popular .amount {
    color: var(--bright-blue);
    font-size: 3.5rem;
}


.unit {
    color: var(--text-muted);
    font-size: 1rem;
}

.target-audience {
    min-height: 100px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checklist {
    list-style: none;
    text-align: left;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
}

.checklist li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-weight: 700; /* Bold text */
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checklist li.included::before {
    content: '\f058'; /* fa-circle-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4CAF50; /* Green */
    font-size: 1.2rem;
}

.checklist li.excluded {
    color: #bbb;
}

.checklist li.excluded::before {
    content: '\f057'; /* fa-circle-xmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e74c3c; /* Red */
    font-size: 1.2rem;
}

/* SECTION 6: TESTIMONIAL & FAQ */
.testimonial-faq-section {
    padding: 8rem 0;
}


/* TESTIMONIAL SLIDER */
.testimonial-slider {
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 6rem;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 5 - 2rem * 5)); }
}

.testimonial-card {
    width: 350px;
    background: var(--white);
    background-image: url('assets/images/section-bg.png');
    background-size: cover;
    background-position: center;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    font-weight: 500;
    font-style: normal;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--dark-blue);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-container {
    background-color: var(--darker-bg);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-header {
    text-align: left;
    margin-bottom: 0;
}

.faq-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-header p {
    opacity: 0.7;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* SECTION 7: BLOG */
.blog-section {
    padding: 8rem 0;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

.blog-info h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    line-height: 1.4;
    font-weight: 600;
}

.blog-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.blog-info .btn {
    align-self: flex-start;
    margin-top: auto;
}

.post-date {
    display: block;
    color: var(--bright-blue);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

/* Full Width Card Style */
.blog-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    max-height: 400px;
}

.blog-card.full-width .blog-img {
    width: 45%;
    height: 100%;
}

.blog-card.full-width .blog-info {
    width: 55%;
    padding: 3.5rem;
}

.blog-card.full-width h3 {
    font-size: 1.8rem;
}

/* FOOTER */
.footer {
    position: relative;
    margin-top: 8rem;
}

.floating-cta {
    position: relative;
    margin-bottom: -100px; /* Pull it down into the footer */
    z-index: 20;
}

.cta-inner {
    background: linear-gradient(135deg, var(--bright-blue), var(--dark-blue));
    padding: 4rem;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(1, 113, 222, 0.3);
}

.cta-inner h2 {
    font-size: 2.5rem;
    margin: 0;
}

.footer-main {
    background-color: var(--darker-bg);
    color: var(--white);
    padding: 12rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    height: 65px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--bright-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 1rem;
}

.link-group a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.link-group a:hover {
    opacity: 1;
    color: var(--bright-blue);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

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

.bottom-links a {
    color: var(--white);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-menu, .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        padding: 4rem 1rem;
    }
    .hero-image {
        width: 100%;
        border-radius: 25px;
        order: 2;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card.double {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 2px;
        margin: 1rem auto;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }
    
    .blog-card.full-width {
        flex-direction: column;
        max-height: none;
    }
    
    .blog-card.full-width .blog-img {
        width: 100%;
        height: 220px;
    }
    
    .blog-card.full-width .blog-info {
        width: 100%;
        padding: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .bottom-links {
        justify-content: center;
        gap: 1rem;
    }

    .testimonial-card {
        width: 290px;
        padding: 1.8rem;
    }
}

/* =========================================
   PROJECTS PAGE ENHANCEMENTS
   ========================================= */

/* Top Banner */
.top-banner {
    width: 100%;
    margin-top: 80px; /* Offset for fixed navbar */
}

.full-width-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline Graphic */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--bright-blue), rgba(1, 113, 222, 0.1));
    border-radius: 4px;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 60px;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    color: var(--bright-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px var(--light-bg), 0 10px 20px rgba(1, 113, 222, 0.15);
    z-index: 2;
    transition: var(--transition);
    border: 2px solid var(--bright-blue);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.1);
    background: var(--bright-blue);
    color: var(--white);
    box-shadow: 0 0 0 8px var(--white), 0 15px 30px rgba(1, 113, 222, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(1, 113, 222, 0.05);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(1, 113, 222, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 25px;
    border-width: 15px 20px 15px 0;
    border-style: solid;
    border-color: transparent var(--white) transparent transparent;
    filter: drop-shadow(-3px 0px 2px rgba(0,0,0,0.02));
}

.fasa-label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(1, 113, 222, 0.1);
    color: var(--bright-blue);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-line {
        left: 40px;
    }
    
    .timeline-dot {
        left: 40px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 0 0 5px var(--light-bg);
    }
    
    .timeline-item {
        padding-left: 100px;
        margin-bottom: 3rem;
    }
    
    .timeline-content {
        padding: 2rem;
    }
    
    .timeline-content::before {
        display: none;
    }
}
