/* ============================================
   BLOCK STYLES - All Block Type Styles
   ============================================ */

/* ═══════════════════════════════════════════
   HERO SPLIT
   ═══════════════════════════════════════════ */
.block-hero-split {
    padding: 8rem 0 5rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.45rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-card {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    transform: rotateY(-5deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.hero-card:hover {
    transform: rotateY(0deg) translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.08);
}

.hero-card-banner {
    height: 220px;
    background: linear-gradient(45deg, #1E1B4B, #311042);
    position: relative;
    overflow: hidden;
}

.hero-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.stage-light {
    position: absolute;
    top: 0;
    width: 60px;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.3), transparent 60%);
    transform-origin: top center;
    z-index: 2;
}

.stage-light.left {
    left: 10%;
    transform: rotate(25deg);
}

.stage-light.right {
    right: 10%;
    transform: rotate(-25deg);
}

.hero-ribbon {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.3rem 1.2rem;
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 9999px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
}

.hero-card-body {
    padding: 1.8rem;
    text-align: center;
}

.hero-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.hero-card-body .card-role {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
}

.hero-card-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-heading);
}

.hero-stat-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   MARQUEE STATS (Ticker)
   ═══════════════════════════════════════════ */
.block-marquee-stats {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 20s linear infinite;
    gap: 3rem;
}

.marquee-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.marquee-item i {
    font-size: 1.2rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   ABOUT GRID
   ═══════════════════════════════════════════ */
.block-about-grid .about-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glow-box {
    width: 300px;
    height: 360px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.glow-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.15), transparent 45%);
    pointer-events: none;
}

.circle-profile {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.circle-profile i {
    font-size: 1.8rem;
    color: #000;
}

.circle-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.glow-box-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.glow-box-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    position: relative;
    z-index: 1;
}

.about-text .paragraph {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════
   METRICS CARDS
   ═══════════════════════════════════════════ */
.metrics-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 20px;
}

.metrics-banner .metric-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metrics-banner .metric-item+.metric-item {
    border-left: 1px solid var(--border);
}

.counter-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-counter {
    font-size: var(--metric-number-size, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.counter-plus {
    font-size: calc(var(--metric-number-size, 3.5rem) * 0.58);
    font-weight: 700;
    color: var(--primary);
    margin-left: 0.2rem;
}

.counter-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: var(--metric-label-size, 0.95rem);
    letter-spacing: 0.5px;
}

/* Networks Grid */
.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.network-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.network-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.network-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.network-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-heading);
}

.instagram-bg {
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}

.tiktok-bg {
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.youtube-bg {
    background-color: var(--youtube);
}

.facebook-bg {
    background-color: var(--facebook);
}

.kwai-bg {
    background: linear-gradient(135deg, #FF6A00, #FFB900);
}

.network-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.network-info p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.network-stat {
    margin-bottom: 1.5rem;
}

.network-stat .value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
}

.network-stat .label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-features {
    list-style: none;
    flex-grow: 1;
}

.network-features li {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.network-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 0.7rem;
}

.network-link {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.network-link:hover {
    gap: 0.7rem;
}

/* ═══════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem 2rem;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.12);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GALLERY GRID
   ═══════════════════════════════════════════ */
.gallery-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-transform: capitalize;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--border-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.gallery-overlay p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.1));
    color: var(--text-muted);
    font-size: 0.85rem;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════════ */
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.12);
}

.testimonial-quote-icon {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    opacity: 0.6;
}

.testimonial-text {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-layout {
    max-width: 700px;
    margin: 0 auto;
}

.contact-box {
    padding: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.75rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text-heading);
    font-family: inherit;
    font-size: 0.92rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    margin-top: 1.5rem;
    text-align: center;
}

.form-submit .btn {
    min-width: 220px;
}

/* Success State */
.contact-success {
    text-align: center;
    padding: 2rem 0;
    animation: fadeZoomIn 0.5s ease-out;
}

.contact-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #25D366;
}

.contact-success h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-success p {
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

@keyframes fadeZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.block-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background-color: var(--footer-bg, transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text-color, var(--text-muted));
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--footer-text-color, var(--text-muted));
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   TEXT BLOCK
   ═══════════════════════════════════════════ */
.text-block-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-block-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.text-block-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
    text-align: center;
    padding: 4rem 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    color: var(--text-heading);
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SPACER & DIVIDER
   ═══════════════════════════════════════════ */
.block-spacer {
    padding: 0;
}

.block-divider {
    padding: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ═══════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.03);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--primary);
    color: #000;
    padding: 0.3rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 8px 8px;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-name {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.3rem;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.timeline-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--background);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.timeline-date {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CUSTOM HTML
   ═══════════════════════════════════════════ */
.custom-html-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE BLOCKS
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-card {
        max-width: 280px;
        transform: none;
        margin: 0 auto;
    }

    .block-about-grid .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .glow-box {
        width: 260px;
        height: 300px;
        margin: 0 auto;
    }

    .metrics-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-banner .metric-item+.metric-item {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 2rem;
    }

    .number-counter {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}