:root {
    --bg: #0e0f13;
    --surface: #1f2024;
    --surface-2: #22242a;
    --text: #f4f5f7;
    --muted: #b4b8c2;
    --primary: #d12322;
    --accent: #f4c21f;
    --primary-soft: rgba(209, 35, 34, 0.16);
    --accent-soft: rgba(244, 194, 31, 0.15);
    --border: #2d3038;
    --shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 90%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e0f13;
    background:
        radial-gradient(1000px 460px at 14% -10%, rgba(74, 86, 126, 0.14), transparent 60%),
        radial-gradient(820px 420px at 88% 8%, rgba(35, 42, 74, 0.14), transparent 62%),
        radial-gradient(760px 420px at 50% 112%, rgba(20, 24, 38, 0.2), transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0) 28%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0)),
        var(--bg);
    background-repeat: no-repeat;
    color: var(--text);
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    background:
        radial-gradient(700px 320px at 18% 24%, rgba(255, 255, 255, 0.035), transparent 72%),
        radial-gradient(520px 260px at 78% 70%, rgba(0, 0, 0, 0.14), transparent 74%),
        repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px),
        repeating-linear-gradient(-16deg, rgba(0, 0, 0, 0.045) 0 1px, transparent 1px 9px);
    background-size: auto, auto, 260px 260px, 320px 320px;
    background-position: center, center, 0 0, 40px 70px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(560px 280px at 50% 0%, rgba(255, 255, 255, 0.018), transparent 72%),
        radial-gradient(900px 460px at 50% 120%, rgba(0, 0, 0, 0.22), transparent 68%);
}

body > * {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

p,
a,
span,
li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.text-secondary {
    color: var(--muted) !important;
}

.navbar-glass {
    position: sticky !important;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(8px);
    background: #090a0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    min-height: 72px;
    transition: min-height 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
}

.navbar-glass::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(209, 35, 34, 0), rgba(209, 35, 34, 1) 50%, rgba(209, 35, 34, 0));
    box-shadow: 0 0 14px rgba(209, 35, 34, 0.72);
    pointer-events: none;
}

.navbar-glass .container {
    min-height: inherit;
    transition: min-height 0.22s ease;
}

.navbar-brand {
    color: var(--text);
    display: inline-flex;
    align-items: center;
    letter-spacing: .2px;
}

.brand-logo {
    width: 180px;
    height: 43px;
    object-fit: contain;
    transition: width 0.22s ease, height 0.22s ease;
}

.navbar-glass.navbar-scrolled {
    min-height: 60px;
    background: rgba(9, 10, 11, 0.96);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.navbar-glass.navbar-scrolled .brand-logo {
    width: 170px;
    height: 33px;
}

.card,
.form-control,
.form-select,
.table,
.alert,
.modal-content,
.dropdown-menu {
    background-color: var(--surface);
    color: var(--text);
    border-color: var(--border);
}

.page-contact .alert-success {
    border: 1px solid #d12322 !important;
    background:
        linear-gradient(145deg, rgba(209, 35, 34, 0.18), rgba(21, 22, 26, 0.92)),
        #15161a;
    color: #f4f5f7;
    box-shadow:
        0 0 0 1px rgba(209, 35, 34, 0.32) inset,
        0 0 16px rgba(209, 35, 34, 0.45),
        0 0 30px rgba(209, 35, 34, 0.2);
}

.page-contact .alert-success .btn-close {
    filter: invert(1) grayscale(100%) brightness(180%);
}

.form-control,
.form-select {
    border-radius: 12px;
}

.hero-section {
    background: url('../img/boxfondoheader.webp') left center/cover no-repeat;
    border: 1px solid rgba(209, 35, 34, 0.22);
    box-shadow: var(--shadow);
}

.contact-hero {
    background-image: url('../img/boxfondoheadercontact.webp');
}

.contact-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-hero-copy {
    flex: 1;
    min-width: 0;
}

.contact-monster {
    width: clamp(135px, 16vw, 205px);
    height: auto;
    flex-shrink: 0;
    align-self: center;
    margin-top: 0.15rem;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.contact-subtitle-inline {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.6;
}

.hero-subtitle {
    color: #d12322;
}

.hero-description {
    font-size: 1.12rem;
    line-height: 1.55;
    max-width: 680px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff !important;
    padding: 0.75rem 1.7rem;
}

.hero-cta-btn .hero-cta-icon {
    color: #f1f309;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.hero-cta-btn:hover .hero-cta-icon {
    transform: translateX(2px);
}

.glass-card,
.stat-card,
.project-card,
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.glass-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120px 120px at 100% 0%, rgba(255, 214, 51, 0.18), transparent 70%),
        radial-gradient(150px 150px at 0% 100%, rgba(209, 35, 34, 0.35), transparent 72%),
        linear-gradient(165deg, rgba(22, 24, 30, 0.98), rgba(15, 16, 22, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.55);
}

/* Núcleo brillante del destello en la esquina superior derecha */
.glass-card::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff6cf 0%, #ffd84a 35%, rgba(255, 200, 40, 0) 72%);
    box-shadow:
        0 0 10px 3px rgba(255, 221, 80, 0.9),
        0 0 26px 8px rgba(255, 210, 60, 0.55),
        0 0 48px 16px rgba(255, 200, 40, 0.28);
    z-index: 3;
    pointer-events: none;
}

/* Haz de luz horizontal que se desvanece hacia la izquierda */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 6px;
    width: 175px;
    height: 2px;
    background: linear-gradient(to left, rgba(255, 224, 92, 0.95), rgba(255, 214, 51, 0.35) 30%, rgba(255, 214, 51, 0) 100%);
    filter: blur(0.4px);
    z-index: 2;
    pointer-events: none;
}

.glass-card > * {
    position: relative;
    z-index: 4;
}

.glass-card h3 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 18px !important;
}

.glass-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: #ffd633;
    box-shadow: 0 0 12px rgba(255, 214, 51, 0.45);
}

.glass-card ul li {
    margin-bottom: 14px !important;
    font-size: 1.09rem;
}

.glass-card ul li:last-child {
    margin-bottom: 0 !important;
}

.glass-card .bi-check2-circle {
    color: #ffd633 !important;
    filter: drop-shadow(0 0 5px rgba(255, 214, 51, 0.25));
}

.glass-card-monster {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 18px;
}

.glass-card-content {
    flex: 1;
    min-width: 0;
    max-width: 340px;
}

.glass-card-monster-img {
    width: auto;
    max-width: 38%;
    height: 168px;
    object-fit: contain;
    flex-shrink: 0;
    align-self: center;
    margin-right: 0;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.stat-card {
    background: #15161a;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    min-height: 112px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(209, 35, 34, 0), rgba(209, 35, 34, 1), rgba(209, 35, 34, 0));
    box-shadow: 0 0 12px rgba(209, 35, 34, 0.75), 0 0 24px rgba(209, 35, 34, 0.45);
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}

.stat-card .stat-row {
    width: 100%;
    align-items: center;
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(209, 35, 34, 0.68);
    background: linear-gradient(180deg, rgba(209, 35, 34, 0.12), rgba(209, 35, 34, 0.05));
    box-shadow: inset 0 0 18px rgba(209, 35, 34, 0.12);
}

.stat-icon i {
    color: #ffd633;
    font-size: 1.35rem;
}

.stat-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-content p {
    font-size: 0.97rem;
    line-height: 1.25;
}

.stat-value {
    font-weight: 700;
    font-size: 2.35rem;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.stat-value::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 99px;
    background: #d12322;
    box-shadow: 0 0 12px rgba(209, 35, 34, 0.6);
}

.project-card img {
    height: 220px;
    object-fit: cover;
}

.project-card-placeholder {
    height: 220px;
    background: repeating-linear-gradient(45deg, var(--primary-soft), var(--primary-soft) 10px, transparent 10px, transparent 20px);
    color: var(--muted);
}

.project-card,
.service-card,
.stat-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.project-card:hover,
.service-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
}

.stat-card:hover {
    border-color: rgba(209, 35, 34, 0.68);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 -3px 14px rgba(209, 35, 34, 0.2);
}

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

.featured-projects-home .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.featured-project-card {
    display: grid;
    grid-template-columns: minmax(190px, 1.05fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(209, 35, 34, 0.28);
    background: linear-gradient(180deg, rgba(28, 29, 34, 0.98), rgba(19, 20, 24, 0.98));
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.34),
        0 0 20px rgba(209, 35, 34, 0.2),
        inset 0 0 0 1px rgba(209, 35, 34, 0.16);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.featured-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(209, 35, 34, 0.82);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(209, 35, 34, 0.42),
        0 0 0 1px rgba(209, 35, 34, 0.28);
}

.featured-project-thumb {
    display: block;
    min-width: 0;
    height: 182px;
    align-self: start;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
}

.featured-project-thumb-image,
.featured-project-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
}

.featured-project-thumb-image {
    object-fit: cover;
    object-position: top center;
}

.featured-project-thumb-placeholder {
    color: var(--muted);
    background: linear-gradient(135deg, rgba(209, 35, 34, 0.12), rgba(20, 22, 28, 0.96));
}

.featured-project-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.featured-project-copy {
    min-width: 0;
    padding-right: 0;
}

.featured-project-title {
    margin-bottom: 0.45rem;
    font-size: 1.12rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    padding-right: 38px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-project-category {
    color: var(--accent);
    font-size: 1.02rem;
    font-weight: 600;
}

.featured-project-text {
    color: rgba(244, 245, 247, 0.82);
    font-size: 1rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-project-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
}

.featured-project-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.featured-project-tags-single {
    grid-template-columns: minmax(0, max-content);
}

.featured-project-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.4rem 0.72rem;
    border-radius: 10px;
    border: 1px solid rgba(209, 35, 34, 0.84);
    background: rgba(209, 35, 34, 0.08);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-project-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 9px;
    border: 1px solid rgba(209, 35, 34, 0.84);
    background: rgba(209, 35, 34, 0.08);
    color: #ff523d;
    text-decoration: none;
    font-size: 0.84rem;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background-color .2s ease;
    position: absolute;
    top: 0;
    right: 0;
}

.featured-project-icon:hover,
.featured-project-icon:focus {
    color: #ffd633;
    border-color: rgba(244, 194, 31, 0.82);
    background: rgba(244, 194, 31, 0.12);
    transform: translateY(-1px);
}

.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: 'WA';
    position: absolute;
    right: 22%;
    top: 14px;
    font-size: clamp(7rem, 16vw, 13rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.about-eyebrow {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
}

.about-copy {
    max-width: 700px;
}

.about-copy p {
    font-size: 1.04rem;
    line-height: 1.65;
}

.about-skills-card {
    min-height: 100%;
}

.about-skills-card-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: end;
    gap: 14px;
    min-width: 0;
}

.about-skills-copy {
    flex: 1;
    min-width: 0;
}

.about-skills-copy h2 {
    font-size: 1.05rem;
    line-height: 1.2;
}

.about-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.about-skills-figure {
    width: 150px;
    max-width: 100%;
    height: 182px;
    object-fit: contain;
    justify-self: end;
    align-self: end;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.about-skill-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.38rem 0.7rem;
    border-radius: 9px;
    border: 1px solid rgba(244, 194, 31, 0.45);
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
}

.about-focus-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-height: 100%;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(25, 27, 32, 0.96), rgba(20, 21, 25, 0.98));
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.about-focus-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(209, 35, 34, 0.72);
    background: linear-gradient(180deg, rgba(209, 35, 34, 0.14), rgba(209, 35, 34, 0.06));
}

.about-focus-icon i {
    color: #f1f309;
    font-size: 1.15rem;
}

.about-focus-title {
    margin-bottom: 0.45rem;
    font-size: 1rem;
    line-height: 1.3;
}

.about-focus-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.about-tech-strip {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(24, 26, 31, 0.96), rgba(18, 19, 24, 0.98));
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.about-tech-item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0.65rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-tech-item:last-child {
    border-right: 0;
}

.about-tech-icon {
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
}

.about-tech-label {
    color: #e8eaee;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-eyebrow {
    font-size: 0.74rem;
    padding: 0.45rem 0.75rem;
    font-weight: 600;
}

.contact-intro {
    max-width: 700px;
    font-size: 1.04rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .contact-hero-top {
        flex-direction: column;
    }

    .contact-monster {
        width: min(195px, 50vw);
        align-self: flex-start;
    }
}

.contact-form .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-field-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-field-label i {
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1;
}

.contact-form .form-control {
    background: rgba(15, 17, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 42px;
    font-size: 0.92rem;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: rgba(180, 184, 194, 0.8);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    font-weight: 600;
}

.contact-info-card h2 {
    font-size: 1.55rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(23, 25, 31, 0.62);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(209, 35, 34, 0.72);
    background: linear-gradient(180deg, rgba(209, 35, 34, 0.14), rgba(209, 35, 34, 0.06));
}

.contact-info-icon i {
    color: #f1f309;
    font-size: 1.1rem;
}

.contact-info-label {
    font-size: 0.76rem;
    color: #d6d9df;
    font-weight: 500;
}

.contact-info-main {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.contact-info-sub {
    font-size: 0.8rem;
    color: var(--muted);
}

.contact-cta-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(241, 243, 9, 0.42);
    background: rgba(16, 18, 22, 0.58);
}

.contact-cta-box i {
    color: #f1f309;
    font-size: 1.15rem;
}

.contact-cta-box p:last-child {
    color: var(--muted);
    font-size: 0.84rem;
}

.contact-feature-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(25, 27, 32, 0.96), rgba(20, 21, 25, 0.98));
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.contact-feature-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-feature-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(209, 35, 34, 0.72);
    background: linear-gradient(180deg, rgba(209, 35, 34, 0.14), rgba(209, 35, 34, 0.06));
}

.contact-feature-icon i {
    color: #f1f309;
    font-size: 1.14rem;
}

.contact-feature-title {
    font-size: 1.16rem;
}

.contact-feature-sub {
    font-size: 0.84rem;
    color: var(--muted);
}

.contact-feature-list {
    list-style: none;
    padding-left: 0;
}

.contact-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #cfd3da;
    font-size: 0.9rem;
    margin-bottom: 7px;
}

.contact-feature-list li:last-child {
    margin-bottom: 0;
}

.contact-feature-list i {
    color: #f1f309;
    margin-top: 2px;
}

.project-detail-page {
    margin-top: 0.25rem;
}

.project-detail-hero {
    position: relative;
    overflow: hidden;
    border-color: rgba(209, 35, 34, 0.35);
    min-height: 224px;
}

.project-detail-hero::before {
    content: 'WA';
    position: absolute;
    right: 4%;
    top: 8px;
    font-size: clamp(5.5rem, 16vw, 12rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.project-back-btn {
    border: 1px solid rgba(244, 194, 31, 0.72);
    color: var(--accent);
    background: rgba(18, 19, 24, 0.56);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
}

.project-back-btn:hover,
.project-back-btn:focus {
    color: #15161a;
    background: rgba(244, 194, 31, 0.95);
}

.project-detail-head {
    max-width: 740px;
    position: relative;
    z-index: 2;
}

.project-detail-row {
    position: relative;
    z-index: 2;
}

.project-detail-figure {
    width: min(100%, 190px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.55));
}

.project-detail-meta {
    color: #f4c21f;
    font-size: 1.02rem;
    font-weight: 600;
}

.project-detail-title {
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.project-detail-summary {
    max-width: 690px;
    color: #d2d5dc;
    font-size: 0.96rem;
    line-height: 1.55;
}

.project-mainshot-wrap {
    border: 1px solid rgba(244, 194, 31, 0.65);
    border-radius: 14px;
    padding: 0.45rem;
    background: linear-gradient(180deg, rgba(23, 25, 30, 0.95), rgba(16, 18, 22, 0.96));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.project-mainshot {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(209, 35, 34, 0.48);
}

.project-mainshot-wrap .carousel,
.project-mainshot-wrap .carousel-inner,
.project-mainshot-wrap .carousel-item {
    border-radius: 10px;
}

.project-carousel-indicators {
    margin-bottom: 0.55rem;
}

.project-carousel-indicators [data-bs-target] {
    width: 26px;
    height: 4px;
    border-radius: 20px;
    border: 0;
    background-color: rgba(244, 194, 31, 0.48);
}

.project-carousel-indicators .active {
    background-color: #f4c21f;
}

.project-carousel-control {
    width: 9%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.project-mainshot-wrap:hover .project-carousel-control {
    opacity: 1;
}

.project-carousel-control .carousel-control-prev-icon,
.project-carousel-control .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: rgba(14, 16, 20, 0.68);
    border: 1px solid rgba(244, 194, 31, 0.72);
    background-size: 50% 50%;
}

.project-detail-card {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(21, 23, 28, 0.96), rgba(16, 18, 22, 0.98));
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.project-section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    font-size: 1.62rem;
    letter-spacing: -0.01em;
}

.project-section-title i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(209, 35, 34, 0.8);
    background: rgba(209, 35, 34, 0.08);
    color: #d12322;
    font-size: 1.05rem;
}

.project-description-card .project-content {
    font-size: 1.06rem;
    line-height: 1.65;
}

.project-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.project-tech-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.36rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(244, 194, 31, 0.62);
    background: rgba(244, 194, 31, 0.08);
    color: #e5bc3c;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
}

.project-live-btn {
    width: 100%;
    max-width: 260px;
    margin-top: 0.35rem;
}

.project-gallery-card {
    display: block;
    width: 100%;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(21, 23, 28, 0.96), rgba(16, 18, 22, 0.98));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-gallery-card:hover,
.project-gallery-card:focus {
    transform: translateY(-2px);
    border-color: rgba(244, 194, 31, 0.62);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.project-gallery-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(209, 35, 34, 0.42);
}

.project-image-modal-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    position: relative;
    box-shadow: none;
}

.project-lightbox {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1090;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 8, 13, 0.55);
    backdrop-filter: blur(2px);
}

.project-lightbox.is-open {
    display: flex;
}

body.project-lightbox-open {
    overflow: hidden;
}

.project-lightbox-stage {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    width: min(1180px, 100%);
    justify-content: center;
}

.project-lightbox-image-wrap {
    position: relative;
    display: inline-flex;
    max-width: min(840px, 100%);
}

.project-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
    cursor: default;
}

.project-lightbox-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    display: block;
    border: 2px solid rgba(244, 194, 31, 0.92);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06) 58%, rgba(0, 0, 0, 0.16));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.project-lightbox-image-wrap.is-zooming .project-lightbox-lens {
    opacity: 1;
}

.project-lightbox-zoom {
    width: min(320px, 28vw);
    min-width: 240px;
    padding: 0.85rem;
    border: 1px solid rgba(244, 194, 31, 0.35);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18, 20, 25, 0.96), rgba(9, 11, 16, 0.98));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.project-lightbox-zoom.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.project-lightbox-zoom-label {
    margin-bottom: 0.6rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244, 194, 31, 0.9);
}

.project-lightbox-zoom-view {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.project-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(244, 194, 31, 0.8);
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.project-lightbox-close:hover,
.project-lightbox-close:focus {
    background-color: #d12322;
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .project-lightbox-stage {
        flex-direction: column;
        align-items: center;
    }

    .project-lightbox-image-wrap {
        max-width: 100%;
    }

    .project-lightbox-zoom {
        width: min(420px, 100%);
        min-width: 0;
    }

    .project-detail-hero {
        min-height: auto;
    }

    .project-detail-summary {
        font-size: 0.9rem;
    }

    .project-detail-figure {
        width: min(170px, 52vw);
    }

    .project-detail-hero::before {
        right: 6%;
        top: 34px;
        font-size: clamp(4.8rem, 22vw, 8.5rem);
    }
}

@media (max-width: 575.98px) {
    .project-section-title {
        font-size: 1.24rem;
    }

    .project-section-title i {
        width: 40px;
        height: 40px;
    }

    .project-detail-title {
        font-size: clamp(1.7rem, 10vw, 2.2rem);
    }
}

.services-hero {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    border-color: rgba(255, 255, 255, 0.12);
}

.services-hero-row {
    position: relative;
    z-index: 1;
}

.services-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 4px 0 6px;
}

.services-eyebrow {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
    font-weight: 700;
}

.services-title {
    letter-spacing: -0.04em;
    margin-bottom: 0.45rem;
}

.services-intro {
    max-width: 620px;
    font-size: 1.03rem;
    line-height: 1.65;
}

.services-hero-underline {
    width: 38px;
    height: 3px;
    margin-top: 0.95rem;
    border-radius: 99px;
    background: #d12322;
    box-shadow: 0 0 12px rgba(209, 35, 34, 0.6);
}

.services-hero-figure {
    width: min(100%, 200px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.55));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.services-card {
    min-width: 0;
    padding: 16px 14px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(19, 20, 24, 0.98), rgba(14, 15, 18, 0.98));
    box-shadow: 0 11px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 194, 31, 0.18);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.services-card-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid rgba(209, 35, 34, 0.82);
    background: rgba(209, 35, 34, 0.08);
    color: #f1f309;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.services-card-icon i {
    font-size: 0.95rem;
    line-height: 1;
}

.services-card h2 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    line-height: 1.25;
}

.services-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.services-bottom-card {
    min-width: 0;
    padding: 16px 16px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(18, 19, 23, 0.98), rgba(14, 15, 18, 0.98));
    box-shadow: 0 11px 24px rgba(0, 0, 0, 0.3);
}

.services-bottom-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.services-bottom-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(209, 35, 34, 0.82);
    background: linear-gradient(180deg, rgba(209, 35, 34, 0.11), rgba(209, 35, 34, 0.05));
    color: #f1f309;
}

.services-bottom-icon i {
    font-size: 1.25rem;
    line-height: 1;
}

.services-bottom-head h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.2;
}

.services-bottom-list {
    list-style: none;
    padding-left: 0;
}

.services-bottom-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 4px;
    color: #cfd3da;
    font-size: 0.86rem;
    line-height: 1.45;
}

.services-bottom-list li:last-child {
    margin-bottom: 0;
}

.services-bottom-list i {
    color: #f1f309;
    margin-top: 2px;
}

.portfolio-hero {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    border-color: rgba(255, 255, 255, 0.12);
}

.portfolio-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 4px 0 6px;
}

.portfolio-hero-row {
    position: relative;
    z-index: 1;
}

.portfolio-eyebrow {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
    font-weight: 700;
}

.portfolio-title {
    letter-spacing: -0.04em;
    margin-bottom: 0.45rem;
}

.portfolio-intro {
    max-width: 620px;
    font-size: 1.03rem;
    line-height: 1.65;
}

.portfolio-hero-underline {
    width: 38px;
    height: 3px;
    margin-top: 0.95rem;
    border-radius: 99px;
    background: #d12322;
    box-shadow: 0 0 12px rgba(209, 35, 34, 0.6);
}

.portfolio-hero-figure {
    width: min(100%, 185px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.55));
}

.portfolio-filter-shell {
    position: relative;
}

.portfolio-filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr) 140px auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(20, 21, 26, 0.92), rgba(14, 15, 18, 0.96));
    box-shadow: 0 11px 24px rgba(0, 0, 0, 0.28);
}

.portfolio-filter-bar .form-control,
.portfolio-filter-bar .form-select {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 17, 22, 0.72);
}

.portfolio-filter-bar .form-control::placeholder {
    color: rgba(180, 184, 194, 0.78);
}

.portfolio-filter-bar .btn {
    min-height: 44px;
    font-weight: 600;
}

.portfolio-filter-total {
    justify-self: end;
}

.portfolio-filter-total .badge {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
}

.portfolio-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(209, 35, 34, 0.28);
    background: linear-gradient(180deg, rgba(19, 20, 24, 0.98), rgba(14, 15, 18, 0.98));
    box-shadow:
        0 11px 24px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(209, 35, 34, 0.18),
        inset 0 0 0 1px rgba(209, 35, 34, 0.15);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: rgba(209, 35, 34, 0.82);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.34),
        0 0 26px rgba(209, 35, 34, 0.4),
        0 0 0 1px rgba(209, 35, 34, 0.26);
}

.portfolio-thumb {
    display: block;
    height: 210px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.portfolio-thumb-image,
.portfolio-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio-thumb-image {
    object-fit: cover;
}

.portfolio-thumb-placeholder {
    color: var(--muted);
    background: linear-gradient(135deg, rgba(209, 35, 34, 0.12), rgba(20, 22, 28, 0.96));
}

.portfolio-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 14px 15px 15px;
}

.portfolio-category-badge {
    font-size: 0.74rem;
    line-height: 1;
}

.portfolio-year {
    white-space: nowrap;
    font-size: 0.82rem;
}

.portfolio-card-title {
    font-size: 1.08rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.portfolio-card-text {
    color: rgba(244, 245, 247, 0.82);
    font-size: 0.92rem;
    line-height: 1.5;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.34rem 0.62rem;
    border-radius: 9px;
    border: 1px solid rgba(209, 35, 34, 0.84);
    background: rgba(209, 35, 34, 0.08);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.portfolio-view-btn {
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-soft), var(--accent-soft));
    color: var(--accent);
    font-size: 1.2rem;
}

.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(14, 15, 18, 0.9), rgba(14, 15, 18, 1));
    border-top-color: transparent !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(209, 35, 34, 0), rgba(209, 35, 34, 0.92) 50%, rgba(209, 35, 34, 0));
    box-shadow: 0 0 10px rgba(209, 35, 34, 0.45);
    pointer-events: none;
}

.footer-brand-title {
    font-size: 1.95rem;
    font-weight: 700;
}

.footer-brand-text {
    max-width: 430px;
    font-size: 1rem;
    line-height: 1.45;
}

.footer-heading {
    position: relative;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.45rem !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 52px;
    height: 3px;
    border-radius: 99px;
    background: #f1f309;
}

.footer-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 6px 24px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-links a:hover {
    color: #f6f7fa;
}

.footer-link-icon {
    color: #f1f309;
    font-size: 1.02rem;
    line-height: 1;
}

.footer-social-btn {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    border: 1px solid rgba(241, 243, 9, 0.42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f1f309;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn i {
    font-size: 1.55rem;
    line-height: 1;
}

.footer-social-btn:hover {
    border-color: #f1f309;
    color: #f1f309;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(241, 243, 9, 0.14);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.btn-primary:hover {
    background-color: #b91f1e;
    border-color: #b91f1e;
}

.btn-outline-primary {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #161616;
}

.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d12322;
    color: #d12322;
    background: transparent;
    font-weight: 600;
}

.btn-ver-todos-icon {
    line-height: 1;
}

.btn-ver-todos:hover,
.btn-ver-todos:focus,
.btn-ver-todos:active {
    border-color: #d12322;
    color: #ffffff;
    background: #d12322;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 72px;
    padding: 0 0.35rem !important;
    transition: height 0.22s ease, color 0.2s ease;
}

.nav-link,
.nav-link:hover,
.nav-link:focus,
.nav-link:focus-visible,
.nav-link:active,
.nav-link.active,
.navbar-nav .nav-link.show {
    color: #ffffff !important;
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    bottom: 14px;
    height: 2px;
    background: #f1f309;
    border-radius: 99px;
}

.navbar-glass.navbar-scrolled .nav-link {
    height: 60px;
}

@media (min-width: 992px) {
    .main-navbar-links {
        padding-right: 260px;
    }
}

.project-content {
    line-height: 1.7;
}

.badge.text-bg-light {
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--accent) !important;
    border-color: rgba(244, 194, 31, 0.35) !important;
}

.section-title-accent {
    position: relative;
    padding-left: 16px;
}

.section-title-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    border-radius: 99px;
    background: #f1f309;
    box-shadow: 0 0 10px rgba(241, 243, 9, 0.35);
}

.table {
    --bs-table-bg: transparent;
}

@media (max-width: 991px) {
    .navbar-glass,
    .navbar-glass.navbar-scrolled {
        min-height: 64px;
    }

    .nav-link,
    .navbar-glass.navbar-scrolled .nav-link {
        height: auto;
        padding: 0.6rem 0.2rem !important;
        display: inline-block;
    }

    .nav-link.active::after {
        bottom: 4px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.02rem;
    }

    .hero-cta-btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-filter-bar {
        grid-template-columns: 1fr;
    }

    .portfolio-filter-total {
        justify-self: start;
    }

    .portfolio-thumb {
        height: 190px;
    }

    .portfolio-hero-figure {
        width: min(100%, 155px);
    }

    .services-hero-watermark {
        right: 16px;
        top: 14px;
        font-size: clamp(5.6rem, 25vw, 9rem);
    }

    .glass-card-content {
        max-width: none;
    }

    .glass-card-monster-img {
        width: auto;
        max-width: 40%;
        height: 128px;
    }

    .footer-brand-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem !important;
    }

    .footer-brand-text {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .footer-heading {
        font-size: 1.05rem;
        margin-bottom: 1rem !important;
    }

    .footer-links a,
    .footer-link-icon {
        font-size: 0.9rem;
    }

    .footer-links a {
        gap: 8px;
        margin-bottom: 2px;
    }

    .footer-link-icon {
        font-size: 0.9rem;
    }

    .footer-quick-grid {
        gap: 4px 18px;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .footer-social-btn {
        width: 48px;
        height: 48px;
    }

    .footer-social-btn i {
        font-size: 1.2rem;
    }

    .footer .row {
        row-gap: 2rem !important;
    }

    .project-card img,
    .project-card-placeholder {
        height: 190px;
    }

    .about-hero::before {
        right: 10%;
        top: 30px;
        font-size: 8rem;
    }

    .about-copy p {
        font-size: 1rem;
    }

    .contact-intro {
        font-size: 0.98rem;
    }

    .contact-info-card h2 {
        font-size: 1.35rem;
    }

    .contact-feature-card {
        padding: 16px;
    }

    .contact-feature-title {
        font-size: 1.03rem;
    }

    .about-skills-figure {
        max-width: 38%;
        height: 136px;
    }

    .about-tech-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-tech-item:nth-child(3n) {
        border-right: 0;
    }

    .featured-project-card {
        grid-template-columns: 1fr;
    }

    .featured-project-thumb {
        height: 174px;
    }

    .featured-project-title {
        font-size: 1.45rem;
    }

    .featured-project-text {
        font-size: 0.96rem;
    }

    .portfolio-card-title {
        font-size: 1.02rem;
    }

    .portfolio-card-text {
        font-size: 0.88rem;
    }

    .brand-logo {
        width: 58px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 1.05rem !important;
    }

    .hero-section .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .hero-section h1 {
        font-size: 1.95rem;
        line-height: 1.02;
    }

    .hero-subtitle {
        font-size: 1.22rem;
        line-height: 1.12;
    }

    .hero-description {
        font-size: 0.94rem;
        margin-bottom: 1rem !important;
    }

    .hero-cta-btn {
        width: calc(50% - 0.25rem);
        min-height: 46px;
        justify-content: center;
    }

    .glass-card-monster {
        padding: 1rem !important;
        gap: 12px;
    }

    .glass-card-content h3 {
        font-size: 1.08rem;
    }

    .glass-card-monster-img {
        max-width: 34%;
        height: 118px;
    }

    .stat-card {
        min-height: 98px;
        padding: 0.9rem !important;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-icon i {
        font-size: 1.15rem;
    }

    .stat-content p {
        font-size: 0.84rem;
    }

    .stat-value {
        font-size: 1.8rem;
        padding-bottom: 8px;
    }

    .featured-projects-home > .d-flex {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .btn-ver-todos {
        padding: 0.45rem 0.9rem;
    }

    .featured-project-card {
        padding: 12px;
        gap: 12px;
    }

    .featured-project-thumb-image,
    .featured-project-thumb-placeholder {
        min-height: 0;
    }

    .featured-project-card-body {
        gap: 12px;
    }

    .featured-project-title {
        font-size: 1.15rem;
        white-space: normal;
    }

    .featured-project-category {
        font-size: 0.94rem;
    }

    .featured-project-text {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .featured-project-tag {
        min-height: 30px;
        font-size: 0.8rem;
    }

    .featured-project-icon {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .about-hero::before {
        display: none;
    }

    .about-copy p {
        font-size: 0.96rem;
    }

    .contact-intro {
        font-size: 0.94rem;
        margin-bottom: 1rem !important;
    }

    .contact-form .form-control {
        font-size: 0.9rem;
    }

    .contact-submit-btn {
        min-height: 42px;
    }

    .contact-info-item {
        padding: 9px 10px;
    }

    .contact-info-main {
        font-size: 0.86rem;
    }

    .contact-info-sub {
        font-size: 0.78rem;
    }

    .contact-feature-card {
        padding: 14px;
    }

    .contact-feature-title {
        font-size: 0.98rem;
    }

    .contact-feature-list li {
        font-size: 0.86rem;
    }

    .about-skills-grid {
        gap: 10px;
    }

    .about-skills-card-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-skills-figure {
        max-width: 160px;
        height: auto;
        align-self: center;
    }

    .about-skill-pill {
        font-size: 0.82rem;
    }

    .about-focus-card {
        padding: 16px;
    }

    .about-tech-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-tech-item {
        justify-content: flex-start;
        padding: 0.9rem 0.85rem;
    }

    .about-tech-item:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-tech-item:nth-child(2n) {
        border-right: 0;
    }

    .featured-project-card {
        padding: 14px;
        gap: 14px;
    }

    .featured-project-thumb-image,
    .featured-project-thumb-placeholder {
        min-height: 0;
    }

    .featured-project-thumb {
        height: 160px;
    }

    .featured-project-copy {
        padding-right: 0;
    }

    .featured-project-icon {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .featured-project-title {
        padding-right: 34px;
    }

    .featured-project-title {
        font-size: 1.32rem;
    }

    .portfolio-thumb {
        height: 180px;
    }

    .portfolio-card-body {
        padding: 13px 13px 14px;
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero {
        padding: 1.15rem !important;
    }

    .services-hero-figure {
        width: min(100%, 165px);
    }

    .services-title {
        font-size: 2.55rem;
    }

    .services-card,
    .services-bottom-card {
        padding: 14px;
    }

    .services-bottom-icon {
        width: 44px;
        height: 44px;
    }
}
