/* ==========================================================================
   MAIN
   ========================================================================== */

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

body {
    background-color: var(--abdev-color-bg);
    color: var(--abdev-color-body);
    font-family: var(--abdev-font-body), sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--abdev-font-headings), sans-serif;
    color: var(--abdev-color-headings);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--abdev-color-accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

p a, .abdev-link {
    border-bottom: 1px solid var(--abdev-color-accent);
    padding-bottom: 2px;
}

p a:hover, .abdev-link:hover {
    opacity: 0.7;
}

.container-full {
    width: 100%;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
}

.section-full {
    padding-top: clamp(60px, 8vw, 140px);
    padding-bottom: clamp(60px, 8vw, 140px);
    border-bottom: var(--abdev-border);
}

.section-alt {
    background-color: var(--abdev-bg-alt-color);
}

.section-full:last-of-type {
    border-bottom: none;
}

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

.monolith-img-wrapper {
    overflow: hidden;
    background-color: var(--abdev-bg-alt-color);
    position: relative;
    cursor: pointer;
}

.monolith-img-wrapper img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.monolith-img-wrapper:hover img {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.monolith-bg-image,
[data-bg-image] {
    filter: grayscale(100%) !important;
}

.monolith-lightbox-trigger {
    display: block;
    position: relative;
    overflow: hidden;
}

.monolith-lightbox-trigger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #ffffff;
    transform: translate(-50%, -50%) scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
    pointer-events: none;
}

.monolith-lightbox-trigger::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 24px;
    background-color: #ffffff;
    transform: translate(-50%, -50%) scaleY(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
    pointer-events: none;
}

.monolith-lightbox-trigger:hover::before {
    transform: translate(-50%, -50%) scaleX(1);
}

.monolith-lightbox-trigger:hover::after {
    transform: translate(-50%, -50%) scaleY(1);
}

.monolith-lightbox-trigger img {
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.8s ease;
}

.monolith-lightbox-trigger:hover img {
    filter: grayscale(0%);
}

.monolith-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--abdev-color-headings);
    font-family: var(--abdev-font-headings), sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.monolith-btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 12px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='none'%3E%3Cpath d='M10 1L15 6L10 11M15 6H1' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.monolith-btn:hover {
    opacity: 0.7;
}

.monolith-btn:hover::after {
    transform: translateX(4px);
}

.monolith-btn:focus-visible {
    outline: 1px dotted var(--abdev-color-headings);
    outline-offset: 4px;
}

.abdev-breadcrumbs {
    font-family: var(--abdev-font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--abdev-color-body);
    opacity: 0.4;
}

.abdev-breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.abdev-breadcrumbs a:hover {
    opacity: 1;
    color: var(--abdev-color-accent);
}

/* ==========================================================================
   HEADER & FULLSCREEN MENU
   ========================================================================== */

.monolith-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--abdev-color-bg);
    border-bottom: var(--abdev-border);
    transition: background-color 0.3s ease;
}

.id-header-grid {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.monolith-logo-wrap .logo-text {
    font-family: var(--abdev-font-headings), sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
}

.monolith-header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .header-booking-btn {
        display: none;
    }
}

.monolith-burger-trigger {
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 102;
}

.monolith-burger-trigger .burger-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--abdev-color-headings);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.monolith-menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.5s ease;
}

.menu-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-popup-inner {
    position: relative;
    width: 100%;
    max-width: 1050px; 
    height: 100%;
    background-color: var(--abdev-color-headings); 
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 60px 80px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.menu-popup-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.menu-popup-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.col-subtitle {
    display: block;
    font-family: var(--abdev-font-body);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--abdev-color-body);
    margin-bottom: 30px;
}

.menu-popup-col-left {
    display: flex;
    flex-direction: column;
}

.monolith-huge-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.monolith-huge-menu li {
    margin-bottom: 25px;
}

.monolith-huge-menu li a {
    font-family: var(--abdev-font-headings);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--abdev-color-bg);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.monolith-huge-menu li a:hover {
    color: var(--abdev-color-accent);
    transform: translateX(10px);
}

.menu-popup-col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 60px;
}

.menu-popup-brand {
    margin-bottom: 40px;
}

.brand-logo img {
    max-width: 180px;
    height: auto;
}

.brand-logo-text {
    font-family: var(--abdev-font-headings);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--abdev-color-bg);
    text-decoration: none;
}

.brand-tagline {
    font-family: var(--abdev-font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 15px 0 0 0;
}

.menu-popup-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-popup-contact-list li {
    margin-bottom: 0px;
}

.contact-label {
    display: block;
    font-family: var(--abdev-font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-link {
    font-family: var(--abdev-font-body);
    font-size: 16px;
    font-style: normal;
    color: var(--abdev-color-bg);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    line-height: 1.4;
}

.contact-link:hover {
    color: var(--abdev-color-accent);
}

.socials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    font-family: var(--abdev-font-body);
    font-size: 14px;
    color: var(--abdev-color-bg);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--abdev-color-accent);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--abdev-color-accent);
}

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

.monolith-menu-popup.is-open {
    visibility: visible;
    pointer-events: auto;
}

.monolith-menu-popup.is-open .menu-popup-backdrop {
    opacity: 1;
}

.monolith-menu-popup.is-open .menu-popup-inner {
    transform: translateX(0);
}

.monolith-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 0;
    margin-left: auto;
    display: block;
}

.monolith-menu-close .close-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--abdev-color-bg);
    position: absolute;
    top: 50%;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.monolith-menu-close .close-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.monolith-menu-close .close-line:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.monolith-menu-close:hover .close-line {
    background-color: var(--abdev-color-accent);
}

.monolith-menu-close:hover .close-line:nth-child(1) {
    transform: translateY(-50%) rotate(135deg);
}

.monolith-menu-close:hover .close-line:nth-child(2) {
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 991px) {
    .menu-popup-inner {
        padding: 50px;
    }
    .menu-popup-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .menu-popup-col-right {
        border-left: none;
        padding-left: 0;
        justify-content: flex-start;
        gap: 35px;
    }
}

@media (max-width: 575px) {
    .menu-popup-inner {
        padding: 30px 20px;
    }
    .monolith-huge-menu li a {
        font-size: 24px;
    }
}

/* ==========================================================================
   ARCHITECTURAL MONOLITH FOOTER (PREMIUM GRID EDITION)
   ========================================================================== */

.monolith-footer {
    background-color: var(--abdev-bg-alt-color);
    color: var(--abdev-color-body);
    font-family: var(--abdev-font-body);
    padding: 120px 0 50px 0;
    border-top: var(--abdev-border);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.monolith-footer .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    margin-bottom: 80px;
}

.footer-col {
    padding-right: 40px;
    padding-left: 40px;
    border-right: var(--abdev-border);
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col.col-contacts {
    border-right: none !important;
    padding-right: 0;
}

.footer-title {
    font-family: var(--abdev-font-headings);
    color: var(--abdev-color-headings);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0;
    margin-bottom: 35px;
}

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

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

.footer-links a,
.footer-bottom-links a {
    color: var(--abdev-color-body);
    text-decoration: none;
    display: inline-block;
    position: relative;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
    padding-bottom: 2px;
}

.footer-links a::after,
.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--abdev-color-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: var(--abdev-color-headings);
    opacity: 1;
}

.footer-links a:hover::after,
.footer-bottom-links a:hover::after {
    width: 100%;
    left: 0;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-text {
    font-family: var(--abdev-font-headings);
    font-size: 24px;
    font-weight: 400;
    color: var(--abdev-color-headings);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-description {
    margin-top: 0;
    margin-bottom: 40px;
    opacity: 0.65;
    max-width: 340px;
    line-height: 1.7;
}

.footer-socials {
    margin-top: 30px;
}

.socials-label,
.contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--abdev-color-headings);
    opacity: 0.5;
    margin-bottom: 12px;
}

.socials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.socials-list li a {
    color: var(--abdev-color-body);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.socials-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--abdev-color-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.socials-list li a:hover {
    opacity: 1;
    color: var(--abdev-color-headings);
}

.socials-list li a:hover::after {
    width: 100%;
    left: 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.contact-value {
    color: var(--abdev-color-headings);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    position: relative;
    padding-bottom: 2px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.contact-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--abdev-color-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.contact-value:hover {
    color: var(--abdev-color-accent);
}

.contact-value:hover::after {
    width: 100%;
    left: 0;
}

.footer-messengers {
    margin-top: 35px;
    padding-top: 25px;
    border-top: var(--abdev-border);
}

.messenger-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.messenger-links a {
    color: var(--abdev-color-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.messenger-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--abdev-color-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.messenger-links a:hover {
    opacity: 1;
    color: var(--abdev-color-headings);
}

.messenger-links a:hover::after {
    width: 100%;
    left: 0;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap:12px;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    opacity: 0.6;
}

.footer-bottom .copyright {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.footer-bottom-links {
    margin: 0;
    padding: 0;
    line-height: 1;
}


@media (max-width: 1199px) {
    .monolith-footer .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
    .footer-grid {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col {
        padding-right: 30px;
        padding-left: 30px;
        margin-bottom: 50px;
        border-right: var(--abdev-border);
    }
    
    .footer-col:nth-child(odd) {
        padding-left: 0;
    }
    .footer-col:nth-child(even) {
        border-right: none !important;
        padding-right: 0;
    }
    
    .col-info {
        grid-column: span 2;
        border-right: none !important;
        padding-left: 0;
        padding-right: 0;
        border-bottom: var(--abdev-border);
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    
    .col-services {padding-left: 0px;}
    
    .col-contacts {
        grid-column: span 2;
        padding-left: 0px;
    }
    
    .col-menu {border:none}
}

@media (max-width: 575px) {
    .monolith-footer {
        padding: 80px 0 40px 0;
    }
    .monolith-footer .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .footer-col {
        border-right: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 35px;
    }
    
    .col-info {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .col-services {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ==========================================================================
   CONSULTING POPUP
   ========================================================================== */

.abdev-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.abdev-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.abdev-modal-container {
    position: relative;
    width: 92%;
    max-width: 1140px;
    height: 82vh;
    max-height: 800px;
    background-color: var(--abdev-color-headings);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    overflow: hidden;
    transform: scale(0.96) translateY(15px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.abdev-modal.is-open .abdev-modal-container {
    transform: scale(1) translateY(0);
}

.abdev-modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    width: 100%;
}

.abdev-modal-col-left {
    padding: 60px 80px;
    background-color: var(--abdev-color-headings);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
.abdev-modal-col-left::-webkit-scrollbar {
    display: none;
}

.abdev-modal-col-right {
    background: transparent;
}

.col-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    display: block;
}

.modal-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--abdev-color-bg);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.modal-descr {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 40px 0;
    max-width: 480px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.form-group:last-of-type {
    margin-bottom: 35px;
}

.form-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4); 
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 0;
    color: var(--abdev-color-bg);
    font-size: 15px;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.7);
}

.form-textarea {
    min-height: 80px;
    resize: none;
}

.abdev-form-status {
    font-size: 13px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}
.abdev-form-status.success { color: var(--abdev-color-accent); }
.abdev-form-status.error { color: var(--abdev-color-accent); }

.abdev-form-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--abdev-color-bg);
    color: var(--abdev-color-headings);
    border: none;
    padding: 16px 36px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.abdev-form-submit-btn:hover {
    opacity: 0.9;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.abdev-form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.abdev-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 40px;
    right: 40px;
    padding: 0;
    z-index: 100001;
    display: none;
}

.abdev-modal.is-open .abdev-modal-close {
    display: block;
}

.abdev-modal-close .close-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.abdev-modal-close .close-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.abdev-modal-close .close-line:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.abdev-modal-close:hover .close-line {
    background-color: var(--abdev-color-accent);
}

.abdev-modal-close:hover .close-line:nth-child(1) {
    transform: translateY(-50%) rotate(135deg);
}

.abdev-modal-close:hover .close-line:nth-child(2) {
    transform: translateY(-50%) rotate(45deg); 
}

@media (max-width: 1024px) {
    .abdev-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .abdev-modal-col-right {
        display: none;
    }
    
    .abdev-modal-container {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border: none;
        border-radius: 0;
        transform: translateY(20px);
        overflow-y: auto !important; 
        -webkit-overflow-scrolling: touch;
    }

    .abdev-modal-col-left {
        padding: 100px 40px 60px 40px !important;
        height: auto;
        min-height: 100%;
    }
    
    .abdev-modal-close {
        top: 30px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .abdev-modal-col-left {
        padding: 90px 24px 40px 24px !important;
    }
    
    .abdev-modal-close {
        top: 25px;
        right: 24px;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .abdev-form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   CONTACTS PAGE (ARCHITECTURAL MINIMALISM)
   ========================================================================== */

.abdev-contacts-page {
    width: 100%;
    background-color: var(--abdev-color-bg);
    color: var(--abdev-color-headings);
}

.abdev-contacts-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.abdev-contacts-hero__left {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    background-color: var(--abdev-color-bg);
    border-right: 1px solid #e5e5e5;
}

.abdev-contacts-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abdev-sec-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--abdev-color-body);
    font-weight: 600;
}

.abdev-contacts-title {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--abdev-color-headings);
}

.abdev-contacts-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--abdev-color-body);
    max-width: 520px;
    margin: 8px 0 0 0;
}

.abdev-contacts-cta {
    margin-top: 12px;
}

/* Тёмная кнопка для контраста на белом фоне */
.abdev-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-btn:hover {
    background-color: transparent;
    color: #111111;
}

.abdev-btn .abdev-arrow {
    transition: transform 0.3s ease;
}

.abdev-btn:hover .abdev-arrow {
    transform: translateX(6px);
}

/* Группа основных контактов */
.abdev-contact-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.abdev-contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888888;
    margin-bottom: 4px;
    display: block;
}

.abdev-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abdev-contact-item__type {
    font-size: 12px;
    color: #777777;
}

.abdev-contact-link {
    color: #111111;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.abdev-contact-link--lg {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.abdev-contact-link:hover {
    opacity: 0.6;
}

/* Субсетка мессенджеров и соцсетей */
.abdev-contacts-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.abdev-contact-subgroup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abdev-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abdev-links-list a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.abdev-links-list a:hover {
    color: #000000;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Правая колонка: Тёмная карта
   -------------------------------------------------------------------------- */
.abdev-contacts-hero__right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: #121212; /* Тёмная подложка */
}

.abdev-map-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

/* Инверсия и инвертированный фильтр для карт */
.abdev-map-wrapper iframe,
#abdev-map {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    display: block;
    filter: grayscale(100%) invert(92%) contrast(120%); /* Превращает стандартный Google Maps в тёмный стиль */
}

/* --------------------------------------------------------------------------
   Адаптивность (Media Queries)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .abdev-contacts-hero {
        grid-template-columns: 1fr;
    }

    .abdev-contacts-hero__left {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .abdev-contacts-hero__right {
        height: 450px;
        min-height: 450px;
    }

    .abdev-map-wrapper {
        position: relative;
        height: 450px;
    }
}

@media (max-width: 640px) {
    .abdev-contacts-subgrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abdev-contacts-hero__right {
        height: 350px;
        min-height: 350px;
    }

    .abdev-map-wrapper {
        height: 350px;
    }
}

/* ==========================================================================
   ABDEV MONOLITH: SINGLE SERVICE
   ========================================================================== */

.abdev-service-single {
    width: 100%;
}
        
.abdev-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}
        
.abdev-sec-sub {
    font-family: var(--abdev-font-body, inherit);
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--abdev-color-accent, #bc9c6c);
    display: block;
    margin-bottom: 12px;
}
        
.abdev-sec-title {
    font-family: var(--abdev-font-headings, inherit);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
    margin: 0 0 40px 0;
}
        
.abdev-serv-hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: var(--abdev-color-bg);
}
        
.abdev-serv-hero__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 60px;
    box-sizing: border-box;
    gap: 40px;
}
        
.abdev-serv-hero__right {
    flex: 1;
    position: relative;
    background-color: #f4f4f4;
    min-height: 400px;
}
        
.abdev-serv-hero__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
        
.abdev-serv-hero__title-box h1 {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
    letter-spacing: -0.02em;
}
        
.abdev-serv-hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 40px;
}
        
.abdev-serv-hero__bullet {
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--abdev-color-body);
    display: inline-flex;
    align-items: center;
}
        
.abdev-serv-hero__bullet::before {
    content: "—";
    margin-right: 8px;
    color: var(--abdev-color-accent, #bc9c6c);
}
        
.abdev-card-readmore {
    display: inline-flex;
    align-items: center;
    font-family: var(--abdev-font-headings);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--abdev-color-headings);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
        
.abdev-card-readmore:hover {
    color: var(--abdev-color-accent, #bc9c6c);
    transform: translatex(2px);
}
        
.abdev-card-readmore:hover .abdev-arrow {
    transform: translatex(2px);
}
        
.abdev-serv-about {
    padding: 120px 0;
    background: var(--abdev-color-bg);
}
        
.abdev-serv-about__wrapper {
    max-width: 860px;
    margin: 0 auto;
}
        
.abdev-serv-about__content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--abdev-color-body);
}
        
.abdev-serv-about h2, .abdev-serv-about h3 {margin-top:20px} 
        
.abdev-serv-about__content p {
    margin-bottom: 25px;
}
        
.abdev-serv-about__content ul,
.abdev-serv-about__content ol {
    margin: 25px 0 35px 0;
    padding-left: 0;
    list-style: none;
}
        
.abdev-serv-about__content li {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--abdev-color-body);
    margin-bottom: 12px;
}
        
.abdev-serv-about__content li:last-child {
    margin-bottom: 0;
}
        
.abdev-serv-about__content ul > li {
    padding-left: 28px;
}
        
.abdev-serv-about__content ul > li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--abdev-color-accent, #bc9c6c);
    font-weight: 700;
}

.abdev-serv-about__content ol {
    counter-reset: abdev-content-counter;
}
        
.abdev-serv-about__content ol > li {
    counter-increment: abdev-content-counter;
    padding-left: 38px;
}
        
.abdev-serv-about__content ol > li::before {
    content: counter(abdev-content-counter, decimal-leading-zero) ".";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--abdev-font-headings, inherit);
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--abdev-color-accent, #bc9c6c);
    letter-spacing: -0.02em;
}

.abdev-serv-about__content li > ul,
.abdev-serv-about__content li > ol {
    margin: 12px 0 12px 10px;
}
        
.abdev-serv-about__content ul ul > li::before {
    content: "•";
    font-size: 0.85rem;
    left: 4px;
}
        
.abdev-serv-expert {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    background-color: var(--abdev-color-headings);
}
        
.abdev-serv-expert::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
        
.abdev-serv-expert .abdev-container {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
        
.abdev-serv-quote {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--abdev-color-bg);
    margin: 0 0 25px 0;
}
        
.abdev-serv-author {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--abdev-color-accent, #bc9c6c);
    margin-bottom: 35px;
    font-weight: 400;
}
        
.abdev-btn--light {
    display: inline-flex;
    padding: 16px 36px;
    background: var(--abdev-color-bg);
    color: var(--abdev-color-headings);
    border: none;
    font-family: var(--abdev-font-headings, inherit);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
.abdev-btn--light:hover {
    background: var(--abdev-color-accent, #bc9c6c);
    color: var(--abdev-color-bg);
}
        
.abdev-serv-sub {
    padding: 90px 0;
    background: #fdfdfd;
}
        
.abdev-serv-sub__header {
    margin-bottom: 40px;
}
        
.abdev-serv-sub__header .abdev-sec-title {
    margin-bottom: 0;
}
        
.abdev-serv-sub__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
        
.abdev-sub-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--abdev-color-bg);
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
        
.abdev-sub-card:hover {
    border-color: var(--abdev-color-accent, #bc9c6c);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
        
.abdev-sub-card__num {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--abdev-color-accent, #bc9c6c);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
        
.abdev-sub-card__title {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
    margin: 0 0 12px 0;
}
        
.abdev-sub-card__text {
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--abdev-color-body);
    margin: 0;
}
        
.abdev-serv-process {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--abdev-color-bg);
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}
        
.abdev-serv-process__inner {
    width: 100%;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
    box-sizing: border-box;
}
        
.abdev-serv-process__header {
    margin-bottom: 60px;
}
        
.abdev-serv-process__header .abdev-sec-title {
    margin-bottom: 0;
}
        
.abdev-serv-process__timeline {
    position: relative;
    width: 100%;
}
        
.abdev-serv-process__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}
        
.abdev-serv-process__row::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: #e5e5e5;
    z-index: 1;
}
        
.abdev-proc-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}
        
.abdev-proc-item__node {
    width: 48px;
    height: 48px;
    background: var(--abdev-color-bg);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s ease;
}
        
.abdev-proc-item__step {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--abdev-color-headings);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.abdev-proc-item__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
        
.abdev-proc-item__title {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
    margin: 0 0 12px 0;
    min-height: 2.7em;
}
        
.abdev-proc-item__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--abdev-color-body);
    margin: 0;
}
        
.abdev-proc-item:hover .abdev-proc-item__node {
    background: var(--abdev-color-accent, #bc9c6c);
    border-color: var(--abdev-color-accent, #bc9c6c);
    transform: scale(1.08);
}
        
.abdev-proc-item:hover .abdev-proc-item__step {
    color: var(--abdev-color-bg);
}
        
.abdev-serv-adv {
    position: relative;
    padding: 100px 0;
    background-color: var(--abdev-color-headings);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--abdev-color-bg);
    overflow: hidden;
}
        
.abdev-serv-adv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85);
    z-index: 1;
}
        
.abdev-serv-adv .abdev-container {
    position: relative;
    z-index: 2;
}
        
.abdev-serv-adv__wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}
        
.abdev-sec-sub--light {
    color: var(--abdev-color-accent, #bc9c6c) !important;
}
        
.abdev-sec-title--light {
    color: var(--abdev-color-bg) !important;
    margin-bottom: 0;
}
        
.abdev-serv-adv__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
        
.abdev-adv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 28px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
        
.abdev-adv-card:hover {
    border-color: var(--abdev-color-accent, #bc9c6c);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}
        
.abdev-adv-card__num {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--abdev-color-accent, #bc9c6c);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
        
.abdev-adv-card__title {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--abdev-color-bg);
    margin: 0 0 12px 0;
}
        
.abdev-adv-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--abdev-color-bg);
    opacity:0.7;
    margin: 0;
}
        
.abdev-serv-faq {
    padding: 100px 0;
    background: var(--abdev-color-bg);
}
        
.abdev-serv-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}
        
.abdev-serv-faq__header {
    text-align: center;
    margin-bottom: 50px;
}
        
.abdev-serv-faq__header .abdev-sec-title {
    margin-bottom: 0;
}
        
.abdev-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
        
.abdev-faq-item {
    background: var(--abdev-color-bg);
    border: 1px solid #e9e9e9;
    transition: border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}
        
.abdev-faq-item.is-active {
    background: var(--abdev-color-bg);
    border-color: var(--abdev-color-accent, #bc9c6c);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
        
.abdev-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}
        
.abdev-faq-q__title {
    font-family: var(--abdev-font-headings, inherit);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--abdev-color-headings);
    line-height: 1.4;
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
        
.abdev-faq-item:hover .abdev-faq-q__title {
    color: var(--abdev-color-accent, #bc9c6c);
}
        
.abdev-faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-left: 20px;
}
        
.abdev-faq-icon::before,
.abdev-faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--abdev-color-headings);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
        
.abdev-faq-icon::before {
    top: 7.5px;
    left: 0;
    width: 16px;
    height: 1px;
}
        
.abdev-faq-icon::after {
    top: 0;
    left: 7.5px;
    width: 1px;
    height: 16px;
}

.abdev-faq-item.is-active .abdev-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}
        
.abdev-faq-item.is-active .abdev-faq-icon::before {
    background-color: var(--abdev-color-accent, #bc9c6c);
}
        
.abdev-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
        
.abdev-faq-item.is-active .abdev-faq-a {
    grid-template-rows: 1fr;
}
        
.abdev-faq-a__inner {
    overflow: hidden;
    padding: 0 30px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--abdev-color-body);
    transition: padding 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
        
.abdev-faq-item.is-active .abdev-faq-a__inner {
    padding: 0 30px 24px 30px;
}
        
.abdev-serv-faq__footer {
    margin-top: 35px;
    text-align:center;
}
        
.abdev-btn--dark {
    display: inline-flex;
    padding: 16px 36px;
    background: var(--abdev-color-headings);
    color: var(--abdev-color-bg);
    border: none;
    font-family: var(--abdev-font-headings, inherit);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
.abdev-btn--dark:hover {
    background: var(--abdev-color-accent, #bc9c6c);
    color: var(--abdev-color-bg);
}

@media (max-width: 1024px) {

    .abdev-serv-hero__left {
        padding: 50px 40px;
    }
        
    .abdev-serv-sub__sidebar,
    .abdev-serv-sub__list {
        width: 100%;
    }
            
    .abdev-serv-hero__title-box h1 {font-size:2.4rem}
            
    .abdev-serv-hero__bullet {font-size:0.7rem;align-items: start;}
    
    .abdev-serv-faq {
        padding: 90px 0;
    }
            
    .abdev-faq-q__title {font-size:1rem}
    .abdev-faq-a__inner {font-size:0.9rem}
    
    .abdev-serv-adv__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
            
    .abdev-serv-adv__wrapper {
        grid-template-columns: 2fr;
        gap: 24px;
    }
        
    .abdev-serv-adv__header {
        position: static;
    }
    
    .abdev-serv-process {padding: 90px 0}
            
    .abdev-serv-process__row {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 24px;
    }
            
    .abdev-serv-process__row::before {
        display: none;
    }
    
    .abdev-serv-sub__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .abdev-serv-about {padding: 90px 0;}
}
        
@media (max-width: 767px) {
    .abdev-serv-hero {
        flex-direction: column;
        gap: 0px;
        padding: 30px 0 40px;
    }
            
    .abdev-serv-hero__right {
        order: -1;
        width: 100%;
    }
            
    .abdev-serv-hero__right {max-height:300px;min-height:300px}
        
    .abdev-serv-hero__right img {
        width: 100%;
        min-height: 300px;
        object-fit: cover;
    }
        
    .abdev-serv-hero__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding:12px 22px;
        gap: 12px;
    }
        
    .abdev-breadcrumbs {
        white-space: normal;
        word-break: break-word;
    }
            
    .abdev-serv-hero__title-box h1 {margin-bottom:12px}
        
    .abdev-serv-hero__bullets {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        margin-top: 24px;
        font-size:0.5rem;
    }
        
    .project-card-action {
        margin-top: 8px;
    }
        
    .project-card-action .header-booking-btn {
        width: 100%;
        box-sizing: border-box;
    }
    
    .abdev-serv-faq {
        padding: 60px 0;
    }
        
    .abdev-faq-q {
        padding: 18px 20px;
    }
        
    .abdev-faq-a__inner {
        padding: 0 20px;
    }
        
    .abdev-faq-item.is-active .abdev-faq-a__inner {
        padding: 0 20px 20px 20px;
    }
    
    .abdev-serv-adv {
        padding: 60px 0;
    }
        
    .abdev-serv-adv__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .abdev-serv-process {
        padding-top: 60px;
        padding-bottom: 60px;
    }
        
    .abdev-serv-process__row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
        
    .abdev-serv-process__row::before {
        display: block;
        top: 24px;
        bottom: 24px;
        left: 24px;
        right: auto;
        width: 1px;
        height: auto;
    }
        
    .abdev-proc-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
        
    .abdev-proc-item__node {
        flex-shrink: 0;
        margin-bottom: 0;
    }
            
    .abdev-proc-item__title {
        min-height: auto;
    }
    
    .abdev-serv-sub {
        padding: 60px 0;
    }
        
    .abdev-serv-sub__grid {
        grid-template-columns: 1fr;
    }
    
    .abdev-serv-author {font-size:0.8rem}
}

/* ==========================================================================
   ABDEV MONOLITH: SYSTEM CORE PROJECT ARCHITECTURE
   ========================================================================== */

.abdev-project-container {
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top:80px;
}

.abdev-project-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    width: 100%;
    box-sizing: border-box;
    align-items: start;
}

.abdev-project-sidebar {
    box-sizing: border-box;
    padding: 60px 50px; 
    display: flex;
    flex-direction: column;
    gap: 40px; 
    min-width: 0;
}

@media (min-width: 992px) {
    .abdev-project-sidebar {
        position: sticky;
        top: 90px;
        min-height: calc(100vh - 90px);
        justify-content: center;
        overflow-y: auto;
        scrollbar-width: none;
    }
    .abdev-project-sidebar::-webkit-scrollbar {
        display: none;
    }
}

.abdev-project-title h1 {
    font-family: var(--abdev-font-headings);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--abdev-color-headings);
    margin: 0 0 12px 0; 
}

.abdev-project-subtitle {
    font-family: var(--abdev-font-body);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--abdev-color-accent);
}

.abdev-project-description {
    font-family: var(--abdev-font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--abdev-color-body);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abdev-project-description .excerpt {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--abdev-color-headings);
    margin-bottom: 10px;
}

.abdev-project-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    border-top: var(--abdev-border);
    padding-top: 15px;
    margin: 0; 
}

.abdev-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: var(--abdev-border);
}

.abdev-spec-label {
    font-family: var(--abdev-font-headings);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--abdev-color-body);
    opacity: 0.6;
}

.abdev-spec-value {
    font-family: var(--abdev-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--abdev-color-headings);
    text-align: right;
}

@media (max-width:1480px) and (min-width:992px) {
    .abdev-project-sidebar {
        gap: 20px;
    }
    .abdev-project-specs {
        padding-top: 0px;
    }
    .abdev-spec-label {
        font-size: 10px;
    }
    .abdev-spec-value {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .abdev-project-layout {
        grid-template-columns: 1fr;
    }
    
    .abdev-project-sidebar {
        padding: 50px 24px;
        min-height: auto;
        gap: 30px;
    }
    
    .abdev-project-title h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .abdev-project-specs {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: none;
        column-gap: 0;
        padding-top: 30px;
    }
}

.abdev-project-gallery-wrapper {
    width: 100%;
    min-width: 0;
}

.abdev-gallery-mesh {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 0 !important;                     
    width: 100%;
}

.abdev-gallery-item-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    cursor: pointer;
}

.abdev-gallery-item-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1);
    transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-gallery-mesh.abdev-grid-single {
    grid-template-columns: 1fr;
}

.abdev-gallery-mesh.abdev-grid-row-stack {
    grid-template-columns: 1fr;
}

.abdev-gallery-mesh.abdev-grid-even {
    grid-template-columns: repeat(2, 1fr);
}

.abdev-gallery-mesh.abdev-grid-odd {
    grid-template-columns: repeat(2, 1fr);
}

.abdev-gallery-mesh.abdev-grid-odd .abdev-gallery-item-frame[data-index="0"] {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .abdev-gallery-mesh {
        grid-template-columns: 1fr !important;
    }
    .abdev-gallery-mesh.abdev-grid-odd .abdev-gallery-item-frame[data-index="0"] {
        grid-column: span 1 !important;
    }
}

.abdev-gallery-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.abdev-gallery-plus .lightbox-line {
    display: block;
    background-color: var(--abdev-color-accent);
    position: absolute;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-gallery-plus .lightbox-line:nth-child(1) {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.abdev-gallery-plus .lightbox-line:nth-child(2) {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.abdev-gallery-item-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.abdev-gallery-item-frame:hover .abdev-gallery-plus {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7) rotate(90deg);
}

@media (max-width: 1024px) {
    .abdev-project-sidebar {padding: 0px 24px 50px;}
    
    .abdev-project-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .abdev-project-gallery-wrapper {
        width: 100%;
    }

    .abdev-project-sidebar {
        width: 100%;
        position: static;
    }

    .abdev-gallery-mesh {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 15px;
    }

    .abdev-gallery-item-frame {
        flex: 0 0 85%;
        height: 55vh;
        scroll-snap-align: start;
        aspect-ratio: 1 / 1;
    }
    
    .abdev-gallery-item-frame img {
        filter: grayscale(0%) !important;
    }
    
    .abdev-gallery-plus {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .abdev-gallery-item-frame {
        flex: 0 0 88%;
        height: 45vh;
    }
}

/* ==========================================================================
   ABDEV MONOLITH: CUSTOM LIGHTBOX
   ========================================================================== */

html {
    scrollbar-gutter: stable;
}

.abdev-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-lightbox.active {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.abdev-lightbox-stage {
    position: relative;
    width: 85%;
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abdev-lightbox-stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-lightbox-stage img.loaded {
    opacity: 1;
    transform: scale(1);
}

.abdev-lightbox-caption {
    position: absolute;
    bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--abdev-font-headings);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    max-width: 60%;
    height: 20px;
}

.abdev-lightbox-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 40px;
    right: 40px;
    padding: 0;
    z-index: 100001;
}

.abdev-lightbox-close .lightbox-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.abdev-lightbox-close .lightbox-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.abdev-lightbox-close .lightbox-line:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.abdev-lightbox-close:hover .lightbox-line {
    background-color: var(--abdev-color-accent);
}

.abdev-lightbox-close:hover .lightbox-line:nth-child(1) {
    transform: translateY(-50%) rotate(135deg);
}

.abdev-lightbox-close:hover .lightbox-line:nth-child(2) {
    transform: translateY(-50%) rotate(45deg); 
}

.abdev-lightbox-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100001;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-lightbox-prev { left: 40px; }
.abdev-lightbox-next { right: 40px; }

.abdev-lightbox-btn .lightbox-line {
    display: block;
    width: 18px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 6px; 
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.abdev-lightbox-prev .lightbox-line:nth-child(1) {
    top: 50%;
    transform-origin: left center;
    transform: rotate(-45deg);
}
.abdev-lightbox-prev .lightbox-line:nth-child(2) {
    top: 50%;
    transform-origin: left center;
    transform: rotate(45deg);
}

.abdev-lightbox-prev:hover {
    transform: translateY(-50%) translateX(-6px);
}
.abdev-lightbox-prev:hover .lightbox-line {
    background-color: var(--abdev-color-accent);
}

.abdev-lightbox-next .lightbox-line:nth-child(1) {
    top: 50%;
    transform-origin: right center;
    transform: rotate(45deg);
}
.abdev-lightbox-next .lightbox-line:nth-child(2) {
    top: 50%;
    transform-origin: right center;
    transform: rotate(-45deg);
}

.abdev-lightbox-next:hover {
    transform: translateY(-50%) translateX(6px);
}
.abdev-lightbox-next:hover .lightbox-line {
    background-color: var(--abdev-color-accent);
}

@media (max-width: 768px) {
    .abdev-lightbox-btn {
        display: none !important;
    }
    .abdev-lightbox-close {
        top: 24px;
        right: 24px;
    }
}

/* ==========================================================================
   PROJECT CARD
   ========================================================================== */
   


/* ==========================================================================
   PREMIUM ARCHITECTURAL BLOG POST
   ========================================================================== */
   
.abdev-split-post-container {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: start;
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.abdev-split-visual-side {
    position: relative;
    width: 100%;
    height: 100%;
}

.abdev-sticky-photo-cover {
    position: -webkit-sticky;
    position: sticky;
    top: 80px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    will-change: position, top;
}

.abdev-split-content-side {
    width: 100%;
    background-color: var(--abdev-color-bg);
    padding: 60px 0 80px 0;
}

.abdev-content-inner-wrapper {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.abdev-post-main-title {
    font-family: var(--abdev-font-headings);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
    margin: 24px 0 32px 0;
    letter-spacing: -0.02em;
}

.abdev-post-meta-top {
    font-family: var(--abdev-font-body);
    font-size: 0.875rem;
    color: var(--abdev-color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.abdev-post-lead-excerpt {
    font-family: var(--abdev-font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--abdev-color-body);
    font-weight: 300;
    margin-bottom: 40px;
}

.abdev-single-post-content {
    font-family: var(--abdev-font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--abdev-color-body);
    letter-spacing: -0.005em;
}

.abdev-single-post-content p {
    margin-top: 0;
    margin-bottom: 24px;
}

.abdev-single-post-content h2,
.abdev-single-post-content h3,
.abdev-single-post-content h4 {
    font-family: var(--abdev-font-headings);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
    clear: both;
    letter-spacing: -0.02em;
}

.abdev-single-post-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-top: 48px;
    margin-bottom: 20px;
}

.abdev-single-post-content h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-top: 36px;
    margin-bottom: 16px;
}

.abdev-single-post-content a {
    color: var(--abdev-color-headings);
    text-decoration: none;
    border-bottom: 2px solid var(--abdev-color-accent);
    padding-bottom: 1px;
    transition: all 0.25s ease;
}

.abdev-single-post-content a:hover {
    color: var(--abdev-color-accent);
    border-bottom-color: var(--abdev-color-accent);
}

.abdev-single-post-content ul,
.abdev-single-post-content ol {
    margin-top: 0;
    margin-bottom: 28px;
    padding-left: 24px;
}

.abdev-single-post-content li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.abdev-single-post-content ul li {
    list-style-type: square;
}

.abdev-single-post-content blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    background-color: var(--abdev-bg-alt-color);
    border-left: 4px solid var(--abdev-color-accent);
}

.abdev-single-post-content blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--abdev-color-body);
    margin-bottom: 0;
}

.abdev-single-post-content blockquote cite {
    display: block;
    font-family: var(--abdev-font-body);
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--abdev-color-body);
    margin-top: 12px;
}

.abdev-single-post-content strong {
    font-weight: 700;
    color: var(--abdev-color-body);
}

.abdev-single-post-content h4 {
    font-family: var(--abdev-font-headings);
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--abdev-color-body);
    margin-top: 40px;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.abdev-single-post-content h4 + p {
    margin-top: 0;
    margin-bottom: 8px;
}

.abdev-single-post-content h4 + p strong {
    font-family: var(--abdev-font-body);
    font-size: 0.813rem;
    font-weight: 700;
    color: var(--abdev-color-accent);
    letter-spacing: 0.05em;
    display: inline-block;
}

.abdev-single-post-content h4 + p + p {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--abdev-color-body);
}

.abdev-single-post-content h4:last-of-type + p + p {
    margin-bottom: 40px;
}

.abdev-single-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.abdev-single-post-content img:hover {
    filter: grayscale(0);
}

.abdev-single-post-content .wp-caption {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.abdev-single-post-content .wp-caption-text {
    font-size: 0.875rem;
    color: var(--abdev-color-body);
    margin-top: 10px;
    font-style: italic;
}

.abdev-related-posts-inner {
    margin-top: 80px;
}

.abdev-related-inner-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abdev-related-inner-title {
    font-family: var(--abdev-font-headings);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.abdev-related-inner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .abdev-split-post-container {
        grid-template-columns: 1fr;
        margin-top: 80px;
    }

    .abdev-split-visual-side {
        height: auto;
    }

    .abdev-sticky-photo-cover {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        will-change: auto;
    }

    .abdev-split-content-side {
        padding: 40px 0;
    }

    .abdev-content-inner-wrapper {
        max-width: 100%;
        padding: 0 24px;
    }
    
    .abdev-post-main-title {font-size:2rem}
    
    .abdev-single-post-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .abdev-single-post-content h2 {
        font-size: 1.5rem;
        margin-top: 36px;
    }

    .abdev-single-post-content h3 {
        font-size: 1.25rem;
        margin-top: 28px;
    }
    
    .abdev-single-post-content blockquote {
        padding: 20px;
        margin: 30px 0;
    }
}

/* ==========================================================================
   DISCUSSION SECTION
   ========================================================================== */

.abdev-discussion-panel-single {
    margin: 80px 0 0 0;
    padding: 50px 40px;
    background: var(--abdev-color-headings);
    border: 1px solid #1c1c1c;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: var(--abdev-font-body);
    color: var(--abdev-color-bg);
    max-width: 100%;
    box-sizing: border-box;
}

.abdev-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.abdev-panel-tag {
    font-family: var(--abdev-font-headings);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--abdev-color-accent);
    text-transform: uppercase;
}

.abdev-panel-lead {
    font-size: 14px;
    color: var(--abdev-color-bg);
    opacity:0.9;
    font-weight:400;
    line-height: 1.4;
}

.abdev-panel-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abdev-panel-heading {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0;
    color: var(--abdev-color-bg);
    line-height: 1.2;
}

.abdev-panel-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--abdev-color-bg);
    opacity:0.9;
    margin: 0;
}

.abdev-panel-cta {
    width: 100%;
    margin-top: 5px;
}

.abdev-panel-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 18px 20px;
    background: transparent;
    border: 1px solid var(--abdev-color-bg);
    color: var(--abdev-color-bg);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-arrow {
    font-family: var(--abdev-font-headings);
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.abdev-panel-trigger:hover {
    background: var(--abdev-color-bg);
    color: var(--abdev-color-headings);
}

.abdev-panel-trigger:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .abdev-discussion-panel-single {
        padding: 40px 25px;
    }
    .abdev-panel-heading {
        font-size: 22px;
    }
}

/* ==========================================================================
   SINGLE POST & PROJECT NAVIGATION (TECH / MONOLITH STYLE)
   ========================================================================== */

.abdev-post-navigation {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.abdev-post-navigation .abdev-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.abdev-post-navigation .abdev-nav-card {
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-post-navigation .abdev-nav-card.next {
    text-align: right;
}

.abdev-post-navigation .abdev-nav-card.disabled {
    border: none;
    background: transparent;
    pointer-events: none;
}

.abdev-post-navigation .abdev-nav-card:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.abdev-post-navigation .abdev-nav-meta {
    font-family: var(--abdev-font-headings);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--abdev-color-accent);
    margin-bottom: 6px;
}

.abdev-post-navigation .abdev-nav-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.abdev-post-navigation .abdev-nav-card:hover .abdev-nav-title {
    color: var(--abdev-color-bg);
}

.abdev-inner-page-links {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--abdev-font-headings);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.abdev-inner-page-links a,
.abdev-inner-page-links > span:not(.label) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--abdev-color-bg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.abdev-inner-page-links a:hover {
    border-color: var(--abdev-color-accent);
    color: var(--abdev-color-accent);
    background: rgba(188, 156, 108, 0.1);
}

@media (max-width: 600px) {
    .abdev-post-navigation .abdev-nav-links {
        grid-template-columns: 1fr;
    }
    
    .abdev-post-navigation .abdev-nav-card.next {
        text-align: left;
    }
}

/* ==========================================================================
   ARCHIVES (SERVICES)
   ========================================================================== */

.abdev-services-archive-wrapper {
    width: 100%;
    margin-top: 80px;
    box-sizing: border-box;
}

.abdev-services-sec-hero {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.abdev-hero-horizontal-row {
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    gap: 32px;
    margin-top: 24px;
}

.abdev-hero-title-col {
    flex: 0 0 auto;
}

.abdev-hero-desc-col {
    flex: 1;
    max-width: 600px;
    padding-left: 28px;
    display: flex;
    align-items: center;
}

.abdev-hero-desc-col p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--abdev-color-body);
    text-align: left;
}

.abdev-services-sec-list {
    width: 100%;
    box-sizing: border-box;
}

.abdev-index-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
    height: 280px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--abdev-color-headings);
    background-color: var(--abdev-color-bg);
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.abdev-index-row-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%) brightness(1.2);
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.6s ease;
    z-index: 0;
}

.abdev-index-row-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.abdev-index-row-head {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 35%;
}

.abdev-row-num {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--abdev-color-accent);
    white-space: nowrap;
}

.abdev-row-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.2;
    color: var(--abdev-color-headings);
    transition: color 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.abdev-index-row-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex: 1;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.abdev-row-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 650px;
}

.abdev-row-bullets {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.abdev-row-bullet-item {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--abdev-color-bg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.abdev-row-bullet-item::before {
    content: '+';
    font-family: var(--abdev-font-headings);
    font-size:1.4em;
    color: var(--abdev-color-accent);
}

.abdev-row-action {
    flex: 0 0 auto;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.abdev-row-btn {
    font-family: var(--abdev-font-headings);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--abdev-color-accent);
    display: inline-block;
}

.abdev-index-row:hover {
    background-color: #0d0d0d;
    border-color: #222222;
}

.abdev-index-row:hover .abdev-index-row-bg {
    opacity: 0.25;
    filter: grayscale(0%) brightness(0.85);
    transform: scale(1.02);
}

.abdev-index-row:hover .abdev-row-title {
    color: var(--abdev-color-bg);
}

.abdev-index-row:hover .abdev-index-row-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.abdev-index-row:hover .abdev-row-action {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.abdev-services-sec-cta {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
    background-color: var(--abdev-color-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.abdev-horizontal-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.abdev-cta-col-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.abdev-cta-col-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.abdev-cta-col-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--abdev-color-headings);
}

.abdev-cta-col-text p {
    margin: 0;
    color: var(--abdev-color-body);
    font-size: 0.95rem;
    line-height: 1.4;
}

.abdev-cta-col-action {
    white-space: nowrap;
    flex: 0 0 auto;
}

@media (max-width: 992px) {

    .abdev-hero-horizontal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .abdev-hero-title-col {
        flex: 1 1 100%;
        width: 100%;
    }

    .abdev-hero-desc-col {
        flex: 1 1 100%;
        max-width: 60%;
        padding-left: 0;
        border-left: none;
    }

    .abdev-index-row {
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .abdev-index-row:hover,
    .abdev-index-row:active {
        background-color: var(--abdev-color-bg) !important;
        border-color: rgba(0, 0, 0, 0.08) !important;
    }

    .abdev-index-row:hover .abdev-index-row-bg {
        opacity: 0.15 !important;
        filter: grayscale(100%) brightness(1.2) !important;
        transform: none !important;
    }

    .abdev-index-row:hover .abdev-row-title {
        color: var(--abdev-color-headings) !important;
    }

    .abdev-index-row-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .abdev-index-row-head {
        flex: 1 1 100%;
        width: 100%;
        gap: 16px;
    }

    .abdev-row-title {
        white-space: normal;
        font-size: 1.25rem;
    }

    .abdev-index-row-details {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100%;
        gap: 16px;
    }

    .abdev-row-excerpt {
        color: var(--abdev-color-body);
        -webkit-line-clamp: initial;
        max-width: 100%;
    }

    .abdev-row-bullet-item {
        color: var(--abdev-color-headings);
    }

    .abdev-row-action {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 12px;
        width: 100%;
    }

    .abdev-row-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border: 1px solid var(--abdev-color-accent);
        color: var(--abdev-color-accent);
        background-color: transparent;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
    }

    .abdev-horizontal-cta-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
    }

    .abdev-cta-col-text {
        flex: 1;
        padding: 0;
    }

    .abdev-cta-col-meta {
        margin-bottom: 12px;
    }

    .abdev-cta-col-action {
        flex: 0 0 auto;
        width: auto;
    }

    .abdev-cta-col-action .header-booking-btn {
        display: inline-flex;
        width: auto;
    }
}

@media (max-width: 576px) {

    .abdev-services-sec-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .abdev-hero-desc-col {
        max-width: 100%;
    }

    .abdev-hero-title-col h1 {
        font-size: 1.8rem;
    }

    .abdev-index-row {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .abdev-index-row-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .abdev-row-title {
        font-size: 1.15rem;
    }

    .abdev-row-excerpt {
        font-size: 0.9rem;
    }

    .abdev-row-bullet-item {
        align-items: flex-start;
    }

    .abdev-row-bullet-item::before {
        line-height: 1.1;
    }

    .abdev-row-action {
        width: 100%;
        margin-top: 8px;
    }

    .abdev-row-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .abdev-services-sec-cta {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .abdev-horizontal-cta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .abdev-cta-col-text {
        width: 100%;
    }

    .abdev-cta-col-action {
        width: 100%;
    }

    .abdev-cta-col-action .header-booking-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0px;
        border: none;
        box-sizing: border-box;
        text-align: center;
    }
}

/* ==========================================================================
   ARCHIVES (PORTFOLIO & B:PG)
   ========================================================================== */

/* Layout & Container */
.abdev-split-post-container .abdev-split-content-side {
    padding: 60px 60px;
}

.abdev-split-post-container .abdev-content-inner-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
}

.abdev-split-post-container .abdev-post-main-title {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.abdev-split-post-container .abdev-post-lead-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 50px;
}

.abdev-split-post-container .abdev-archive-loop-grid,
.abdev-split-post-container .abdev-grid-projects,
.abdev-split-post-container .abdev-grid-blog {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 60px;
}

/* Common Card Item Wrapper */
.abdev-split-post-container .abdev-archive-loop-item,
.abdev-split-post-container .abdev-project-card,
.abdev-split-post-container .abdev-post-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 40px !important;
    margin-bottom: 50px !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Image Box (Common for Blog & Portfolio) */
.abdev-split-post-container .abdev-card-image-box,
.abdev-split-post-container .project-card-thumb {
    position: relative;
    max-width: 40%;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 0;
    flex-shrink: 0;
    background-color: #000;
}

.abdev-split-post-container .abdev-card-image-link,
.abdev-split-post-container .project-card-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.abdev-split-post-container img.abdev-card-img,
.abdev-split-post-container .project-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

/* Hover Effects on Image */
.abdev-split-post-container .abdev-archive-loop-item:hover img.abdev-card-img,
.abdev-split-post-container .abdev-project-card:hover .project-card-thumb img,
.abdev-split-post-container .abdev-post-card:hover .abdev-card-img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* Content Box (Vertical Center Alignment) */
.abdev-split-post-container .abdev-card-content,
.abdev-split-post-container .abdev-card-content-box,
.abdev-split-post-container .project-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
}

/* Subtitle / Meta Category */
.abdev-split-post-container .abdev-card-meta,
.abdev-split-post-container .project-card-subtitle,
.abdev-split-post-container .abdev-card-subtitle {
    font-family: var(--abdev-font-body);
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--abdev-color-body);
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}

/* Title Styling */
.abdev-split-post-container .abdev-card-title,
.abdev-split-post-container .project-card-title {
    font-family: var(--abdev-font-headings);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.abdev-split-post-container .abdev-card-title a,
.abdev-split-post-container .project-card-title a {
    font-size: 1.75rem;
    color: var(--abdev-color-headings, var(--abdev-color-bg));
    text-decoration: none;
    transition: color 0.3s ease;
}

.abdev-split-post-container .abdev-archive-loop-item:hover .abdev-card-title a,
.abdev-split-post-container .abdev-project-card:hover .project-card-title a,
.abdev-split-post-container .abdev-post-card:hover .abdev-card-title a {
    color: var(--abdev-color-accent);
}

/* Excerpt */
.abdev-split-post-container .abdev-card-excerpt,
.abdev-split-post-container .project-card-excerpt {
    font-family: var(--abdev-font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--abdev-color-body);
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Action Button */
.abdev-split-post-container .abdev-text-btn,
.abdev-split-post-container .abdev-card-readmore {
    display: inline-flex;
    align-items: center;
    font-family: var(--abdev-font-headings);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--abdev-color-headings, var(--abdev-color-bg));
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.abdev-split-post-container .abdev-archive-loop-item:hover .abdev-text-btn,
.abdev-split-post-container .abdev-project-card:hover .abdev-text-btn,
.abdev-split-post-container .abdev-post-card:hover .abdev-card-readmore {
    color: var(--abdev-color-accent);
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .abdev-split-post-container .abdev-split-visual-side {
        display: none !important;
    }

    .abdev-split-post-container .abdev-split-content-side {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 40px 30px;
    }

    .abdev-split-post-container .abdev-card-image-box,
    .abdev-split-post-container .project-card-thumb {
        max-width: 40%;
        width: 100%;
    }
    
    .abdev-split-post-container .abdev-card-title a,
    .abdev-split-post-container .project-card-title a {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .abdev-split-post-container .abdev-split-content-side {
        padding: 30px 16px;
    }
    
    .abdev-split-post-container .abdev-grid-blog,
    .abdev-split-post-container .abdev-grid-projects,
    .abdev-split-post-container .abdev-archive-loop-grid {
        gap: 30px !important;
    }

    .abdev-split-post-container .abdev-card-inner,
    .abdev-split-post-container .abdev-archive-loop-item,
    .abdev-split-post-container .abdev-project-card,
    .abdev-split-post-container .abdev-post-card,
    .abdev-split-post-container article {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .abdev-split-post-container .abdev-card-image-box,
    .abdev-split-post-container .project-card-thumb {
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 15px;
    }

    .abdev-split-post-container .abdev-post-main-title {
        font-size: 1.85rem;
    }

    .abdev-split-post-container .abdev-card-title a,
    .abdev-split-post-container .project-card-title a {
        font-size: 1.35rem;
    }
    
    .abdev-split-post-container .abdev-card-excerpt,
    .abdev-split-post-container .project-card-excerpt {
        display: block !important;
    }
}

/* ==========================================================================
   CARDS
   ========================================================================== */
   
.abdev-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
}

.project-card-thumb {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.project-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.abdev-project-card:hover .project-card-thumb img {
    transform: scale(1.03);
}

.project-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.project-card-subtitle {
    display: block;
    font-family: var(--abdev-font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.project-card-title {
    font-family: var(--abdev-font-headings);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.project-card-title a {
    color: var(--abdev-color-bg);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card-title a:hover {
    color: var(--abdev-color-accent);
}

.abdev-text-btn {
    display: inline-block;
    font-family: var(--abdev-font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--abdev-color-bg);
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.abdev-text-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--abdev-color-bg);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.abdev-text-btn:hover {
    color: var(--abdev-color-accent);
}

.abdev-text-btn:hover::after {
    width: 100%;
    background-color: var(--abdev-color-accent);
}

@media (max-width: 992px) {
    .abdev-project-card {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .project-card-thumb {
        aspect-ratio: 16 / 10;
    }

    .project-card-content {
        gap: 30px;
        padding: 0;
    }

    .project-card-title {
        font-size: 24px;
    }
}

.abdev-post-card {
    display: flex;
    flex-direction: row;
    align-items: stretch; 
    gap: 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    padding-bottom: 24px;
}

.abdev-post-card:hover {
    transform: none;
    box-shadow: none;
}

.abdev-card-image-box {
    position: relative;
    width: 30%;
    flex-shrink: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #000;
}

.abdev-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.abdev-post-card:hover .abdev-card-img {
    transform: none;
    filter: grayscale(0);
}

.abdev-card-categories-tags {
    display: none;
}

.abdev-card-content-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0;
    justify-content: center;
}

.abdev-card-meta {
    font-family: var(--abdev-font-body);
    font-size: 0.813rem;
    color: var(--abdev-color-body);
    opacity:0.5;
    margin-bottom: 6px;
}

.abdev-card-title {
    font-family: var(--abdev-font-headings);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.abdev-card-title a {
    color: var(--abdev-color-headings);
    text-decoration: none;
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.abdev-card-title a:hover {
    color: var(--abdev-color-accent);
}

.abdev-card-excerpt {
    font-family: var(--abdev-font-body);
    font-size: 0.938rem;
    line-height: 1.5;
    color: var(--abdev-color-body);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.abdev-card-footer {
    margin-top: 0; 
    padding-top: 0;
    border-top: none;
}

.abdev-card-readmore {
    font-family: var(--abdev-font-headings);
    display: inline-flex;
    align-items: center;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--abdev-color-body);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 1s ease;
}

.abdev-arrow {
    margin-left: 6px;
    transition: transform 1s ease;
}

.abdev-post-card:hover .abdev-card-readmore {
    color: var(--abdev-color-accent);
}

.abdev-post-card:hover .abdev-arrow {
    transform: translateX(4px);
    color: var(--abdev-color-accent);
}

@media (max-width: 1024px) {
    .abdev-post-card {
        gap: 32px;
        padding-bottom: 16px;
    }
    
    .abdev-card-image-box {
        width: 40%;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 600px) {
    .abdev-post-card {
        gap: 16px;
        padding-bottom: 16px;
    }
    
    .abdev-card-image-box {
        width: 35%;
        aspect-ratio: 3/4;
    }
    
    .abdev-card-title {
        font-size: 0.938rem;
    }
    
    .abdev-card-excerpt {
        display: none;
    }
}

/* ==========================================
   ARCHIVE PAGINATION STYLING
   ========================================== */

.abdev-custom-pagination {
    margin-top: 48px;
    margin-bottom: 48px;
    width: 100%;
}

.abdev-custom-pagination ul.page-numbers {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.abdev-custom-pagination ul.page-numbers li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: block !important;
}

.abdev-custom-pagination .page-numbers a,
.abdev-custom-pagination .page-numbers span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    color: var(--abdev-color-body);
    font-family: var(--abdev-font-headings);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.abdev-custom-pagination .page-numbers a:hover {
    color: var(--abdev-color-accent);
    border-color: rgba(255, 255, 255, 0.3);
}

.abdev-custom-pagination .page-numbers span.current {
    color: var(--abdev-color-accent);
    border-color: var(--abdev-color-bg);
    font-weight: 600;
}

.abdev-custom-pagination .page-numbers span.dots {
    border-color: transparent !important;
    color: rgba(255, 255, 255, 0.2);
    min-width: 20px;
}

.abdev-custom-pagination .page-numbers a.prev,
.abdev-custom-pagination .page-numbers a.next {
    font-size: 12px;
}