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

body {
    background: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(145deg, #0b1a2e, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.logo-text:hover {
    opacity: 0.8;
}

.nav-cta-custom {
    background: #0b1a2e;
    color: white !important;
    padding: 0.4rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.nav-cta-custom:hover {
    background: #2563eb;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    color: white !important;
}

.nav-links .nav-link {
    font-weight: 500;
    color: #1e293b;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.nav-links .nav-link:hover::after {
    width: 100%;
}

.nav-links .nav-link:hover {
    color: #2563eb;
}

.nav-links .nav-link.active {
    color: #2563eb;
}

.nav-links .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    border: none;
    background: transparent;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0b1a2e;
    border-radius: 6px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav {
    display: none;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.mobile-nav ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul a {
    font-weight: 500;
    color: #0b1a2e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-nav ul a i {
    width: 26px;
    color: #2563eb;
}

.hero {
    background: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #1e3a8a, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    max-width: 480px;
}

.avatar-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
    border: 5px solid #f0f4fa;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.avatar-circle:hover {
    transform: scale(1.02);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

.btn-primary-custom {
    background: #0b1a2e;
    color: white;
    padding: 0.7rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: #1e293b;
    padding: 0.7rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    border: 1.5px solid #d0d9e8;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-custom:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
    transform: translateY(-3px);
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
}

.section-title i {
    color: #2563eb;
    font-size: 1.8rem;
    opacity: 0.7;
}

.section-sub {
    color: #64748b;
    border-left: 3px solid #2563eb;
    padding-left: 18px;
    font-size: 1.1rem;
}

.horizontal-scroll-section {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.horizontal-scroll-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-wrapper:active {
    cursor: grabbing;
}

.scroll-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.scroll-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.scroll-card:hover::before {
    transform: scaleX(1);
}

.scroll-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
    border-color: #dbeafe;
}

.scroll-card .card-image {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scroll-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #ffffff;
    transition: transform 0.4s ease;
}

.scroll-card:hover .card-image img {
    transform: scale(1.05);
}

.scroll-card .card-icon {
    width: 44px;
    height: 44px;
    background: #eef3ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scroll-card:hover .card-icon {
    background: #2563eb;
    color: white;
    transform: rotate(-10deg) scale(1.1);
}

.scroll-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0b1a2e;
    font-size: 1.1rem;
}

.scroll-card .card-subtitle {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.scroll-card .card-date {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.scroll-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
}

.scroll-card .card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    background: #eef3ff;
    color: #1e3a8a;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    align-self: flex-start;
    margin-top: auto;
    transition: all 0.3s ease;
}

.scroll-card:hover .card-tag {
    background: #2563eb;
    color: white;
}

.scroll-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.scroll-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: white;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
}

.scroll-nav-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.scroll-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.scroll-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d9e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #2563eb;
    width: 24px;
    border-radius: 4px;
}

.skills-section {
    padding-top: 0;
}

.skill-pill {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.4rem 1.5rem 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0b1a2e;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.skill-pill i {
    color: #2563eb;
}

.skill-pill:hover {
    border-color: #2563eb;
    background: #f8fcff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

.contact-section {
    background: #ffffff;
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #edf2f7;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-label i {
    font-size: 0.85rem;
}

.contact-form-wrapper .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafcff;
}

.contact-form-wrapper .form-control::placeholder {
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-form-wrapper .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    background: white;
}

.contact-form-wrapper .form-control.is-valid {
    border-color: #10b981;
    background-image: none;
}

.contact-form-wrapper .form-control.is-invalid {
    border-color: #ef4444;
    background-image: none;
}

.contact-form-wrapper .invalid-feedback {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    color: #ef4444;
}

.contact-form-wrapper .btn-submit {
    background: #0b1a2e;
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.contact-form-wrapper .btn-submit:hover::before {
    left: 100%;
}

.contact-form-wrapper .btn-submit:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
    color: white;
}

.contact-form-wrapper .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.contact-form-wrapper .btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-form-wrapper .btn-submit:hover i {
    transform: translateX(3px);
}

.success-message {
    display: none;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #065f46;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease;
}

.success-message i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.success-message h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.success-message p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.success-message.show {
    display: block;
}

.spinner-border-sm {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.15rem;
}

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.error-number {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-icon {
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-actions .btn-home {
    background: #0b1a2e;
    color: white;
    padding: 0.7rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.error-actions .btn-home:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
    color: white;
}

.error-actions .btn-search {
    background: transparent;
    color: #1e293b;
    padding: 0.7rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    border: 1.5px solid #d0d9e8;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.error-actions .btn-search:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
    transform: translateY(-3px);
}

.suggested-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #edf2f7;
}

.suggested-links h6 {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggested-links .suggest-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    background: #f8fafc;
    transition: all 0.25s ease;
    font-weight: 500;
}

.suggested-links .suggest-item:hover {
    background: #eef3ff;
    color: #2563eb;
    transform: translateY(-2px);
}

.suggested-links .suggest-item i {
    color: #2563eb;
    font-size: 0.7rem;
}

.footer {
    background: #0b1a2e;
    color: #cbd5e1;
    padding: 4rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 3px solid #2563eb;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.footer-links h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

.footer-links ul a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.footer-links ul a::before {
    content: '›';
    color: #2563eb;
    margin-right: 6px;
    transition: margin-right 0.3s ease;
}

.footer-links ul a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links ul a:hover::before {
    margin-right: 10px;
}

.footer-contact h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.contact-item i {
    width: 20px;
    color: #2563eb;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.contact-item span {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.contact-item:hover span {
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-card {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.scroll-card:nth-child(1) { animation-delay: 0s; }
.scroll-card:nth-child(2) { animation-delay: 0.1s; }
.scroll-card:nth-child(3) { animation-delay: 0.2s; }
.scroll-card:nth-child(4) { animation-delay: 0.3s; }
.scroll-card:nth-child(5) { animation-delay: 0.4s; }
.scroll-card:nth-child(6) { animation-delay: 0.5s; }

@media (max-width: 1200px) {
    .scroll-card {
        flex: 0 0 calc(50% - 1rem);
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-text {
        max-width: 100%;
    }
    
    .scroll-card {
        flex: 0 0 calc(50% - 1rem);
        min-height: 330px;
        padding: 1.5rem;
    }
    
    .scroll-card .card-image {
        height: 120px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .hero .display-3 {
        font-size: 2.5rem;
    }

    .avatar-circle {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 1.6rem;
        justify-content: center !important;
    }

    .section-title i {
        font-size: 1.4rem;
    }

    .section-sub {
        text-align: center !important;
        border-left: none !important;
        padding-left: 0 !important;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }

    .scroll-card {
        flex: 0 0 calc(100% - 1rem);
        min-height: 300px;
        padding: 1.5rem;
    }

    .scroll-card .card-image {
        height: 120px;
    }

    .scroll-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .scroll-card h5 {
        font-size: 1rem;
    }
    
    .scroll-card p {
        font-size: 0.85rem;
    }
    
    .footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul a {
        display: inline-block;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-top {
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .scroll-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-height: 280px;
        padding: 1.2rem;
    }

    .scroll-card .card-image {
        height: 100px;
    }

    .scroll-card h5 {
        font-size: 0.95rem;
    }
    
    .scroll-card .card-subtitle {
        font-size: 0.8rem;
    }
    
    .scroll-card .card-date {
        font-size: 0.7rem;
    }
    
    .scroll-card p {
        font-size: 0.8rem;
    }
    
    .scroll-nav {
        gap: 0.75rem;
    }
    
    .scroll-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .scroll-indicators {
        gap: 0.4rem;
    }
    
    .scroll-dot {
        width: 6px;
        height: 6px;
    }
    
    .scroll-dot.active {
        width: 18px;
    }
    
    .hero .display-3 {
        font-size: 2rem;
    }
    
    .avatar-circle {
        width: 160px;
        height: 160px;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .scroll-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-height: 260px;
        padding: 1rem;
        border-radius: 18px;
    }
    
    .scroll-card .card-image {
        height: 80px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .scroll-card .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    
    .scroll-card h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .scroll-card .card-subtitle {
        font-size: 0.75rem;
    }
    
    .scroll-card .card-date {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    .scroll-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .scroll-card .card-tag {
        font-size: 0.6rem;
        padding: 0.15rem 0.7rem;
    }
    
    .horizontal-scroll-wrapper {
        gap: 1rem;
        padding: 0.5rem 0.25rem 1rem;
    }
    
    .horizontal-scroll-section {
        padding: 1rem 0;
    }
    
    .section-title {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .section-title i {
        font-size: 1.2rem;
    }
    
    .section-sub {
        font-size: 0.9rem;
    }
}