/* ===================================================
   CONSTRUCTO - HOME PAGE CSS
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #FFC329;
    --yellow-dark: #e6a800;
    --dark: #242424;
    --dark-mid: #2e2e2e;
    --gray-text: #777777;
    --body-text: #555555;
    --border-light: #e8e8e8;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'PT Sans', sans-serif;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--dark);
}

.btn-dark-solid {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.btn-dark-solid:hover {
    background: transparent;
    border-color: var(--dark);
    color: var(--dark);
}


/* ===================================================
   TOP BAR
   =================================================== */
.top-bar {
    background: transparent;
    padding: 10px 0;
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 1;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-social {
    display: flex;
    gap: 14px;
}

.top-social a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    transition: color var(--transition);
}

.top-social a:hover {
    color: var(--yellow);
}

.top-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
}

.top-info i {
    color: var(--yellow);
    font-size: 13px;
}


/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    background: transparent;
    position: fixed;
    top: 42px; /* sits just below the top-bar */
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.navbar.scrolled {
    background: rgba(20, 20, 20, 0.92);
    top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.logo-icon {
    color: var(--yellow);
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.logo .logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.navbar.scrolled .logo .logo-text {
    color: var(--white);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
    margin-right: 10px;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

/* Search Button */
.nav-search {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.nav-search:hover {
    color: var(--yellow);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--dark);
}


/* ===================================================
   HERO SLIDER
   =================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    animation: fadeInUp 0.8s ease forwards;
}

.slide:not(.active) .slide-content {
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.slide-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 34px;
    line-height: 1.8;
}

.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(36,36,36,0.55);
    border: none;
    color: var(--white);
    width: 44px;
    height: 80px;
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--yellow);
    color: var(--dark);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
}


/* ===================================================
   QUOTE BANNER
   =================================================== */
.quote-banner {
    position: relative;
    padding: 22px 0;
    background:
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80')
        center center / cover no-repeat;
    overflow: hidden;
}

.quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 195, 41, 0.72);
    z-index: 0;
}

.quote-banner .quote-banner-inner {
    position: relative;
    z-index: 1;
}

.quote-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.quote-banner-inner p {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dark);
    text-transform: uppercase;
}


/* ===================================================
   FEATURES 3-COL
   =================================================== */
.features-section {
    padding: 70px 0 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    margin-bottom: 24px;
}

.feature-img-wrap img {
    transition: transform 0.5s ease;
}

.feature-img-wrap:hover img {
    transform: scale(1.07);
}

.feature-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 195, 41, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-img-wrap:hover .feature-img-overlay {
    opacity: 1;
}

.feature-img-overlay i {
    font-size: 28px;
    color: var(--dark);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.feature-subtitle {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--yellow-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.feature-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.75;
}


/* ===================================================
   FEATURED WORK
   =================================================== */
.featured-work {
    background: var(--dark);
    padding: 50px 0 0;
    overflow: hidden;
}

.featured-work-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title-white {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.featured-controls {
    display: flex;
    gap: 4px;
}

.portfolio-btn {
    background: #3a3a3a;
    border: none;
    color: var(--white);
    width: 38px;
    height: 38px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.portfolio-btn:hover {
    background: var(--yellow);
    color: var(--dark);
}

/* Portfolio Slider */
.portfolio-slider-wrap {
    overflow: hidden;
    width: 100%;
}

.portfolio-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.portfolio-item {
    flex: 0 0 20%;
    position: relative;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
}

.portfolio-item img {
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 195, 41, 0.85);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===================================================
   SERVICES / TABS SECTION
   =================================================== */
.services-section {
    padding: 80px 0;
}

.services-layout {
    display: grid;
    grid-template-columns: 180px 1fr 280px;
    gap: 40px;
    align-items: start;
}

/* Tab List */
.tab-list {
    border-right: 1px solid var(--border-light);
}

.tab-item {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 20px 14px 0;
    cursor: pointer;
    border-left: 3px solid transparent;
    margin-left: -1px;
    transition: all var(--transition);
}

.tab-item:hover {
    color: var(--dark);
}

.tab-item.active {
    color: var(--dark);
    border-left: 3px solid var(--dark);
    padding-left: 14px;
    margin-left: -3px;
}

/* Tab Content */
.services-content {
    padding-right: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: panelIn 0.4s ease;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.tab-panel h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.services-checklist {
    margin-bottom: 22px;
}

.services-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.services-checklist li i {
    color: var(--dark);
    font-size: 16px;
}

.tab-panel p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Promo Box */
.services-promo {
    display: flex;
    flex-direction: column;
}

.promo-img-wrap {
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

.promo-text-box {
    background: #f5f5f5;
    padding: 20px;
}

.promo-text-box h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.promo-text-box p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
}


/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background:
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80')
        center center / cover no-repeat;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 195, 41, 0.88);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ===================================================
   CLIENTS SECTION
   =================================================== */
.clients-section {
    padding: 70px 0;
    text-align: center;
}

.clients-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.client-logo {
    color: #aaa;
    transition: color var(--transition);
    cursor: default;
}

.client-logo:hover {
    color: var(--dark);
}

.logo-text-brand {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: inherit;
}

.logo-bracket {
    border: 2px solid currentColor;
    padding: 4px 10px;
    font-size: 16px;
}

.logo-yellow { color: var(--yellow-dark); }

.logo-plus {
    color: var(--yellow-dark);
    font-size: 24px;
}

.logo-giant strong {
    letter-spacing: 0;
}

.logo-icon-inline {
    font-size: 14px;
    margin-right: 3px;
}

.clients-caption {
    font-size: 13px;
    color: #bbb;
    font-style: italic;
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
    background: var(--dark-mid);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* Footer About */
.footer-col p {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    margin-top: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon-yellow {
    color: var(--yellow);
    font-size: 24px;
    font-weight: 900;
    font-family: var(--font-heading);
}

.logo-text-white {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

/* Footer Nav */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav li a {
    font-size: 13px;
    color: #888;
    transition: color var(--transition);
}

.footer-nav li a:hover {
    color: var(--yellow);
}

.footer-link-active {
    color: var(--yellow) !important;
}

/* Footer Tags */
.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    border: 1px solid #4a4a4a;
    color: #888;
    padding: 5px 12px;
    font-size: 12px;
    font-family: var(--font-body);
    transition: all var(--transition);
    border-radius: 2px;
}

.tag:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Footer Recent Projects */
.footer-projects {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-projects li a {
    font-size: 13px;
    color: #888;
    transition: color var(--transition);
}

.footer-projects li a:hover {
    color: var(--yellow);
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    font-family: var(--font-body);
}

.footer-credit {
    font-size: 12px;
    color: #666;
    font-family: var(--font-body);
}

.footer-credit .heart {
    color: #e03030;
    font-size: 13px;
}

.footer-credit a {
    color: #aaa;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: var(--yellow);
}


/* ===================================================
   SEARCH OVERLAY
   =================================================== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.search-close {
    position: absolute;
    top: -20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: color var(--transition);
}

.search-close:hover {
    color: var(--yellow);
}

.search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--white);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
    padding: 10px 20px 10px 0;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-submit {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: color var(--transition);
}

.search-submit:hover {
    color: var(--yellow);
}


/* ===================================================
   RESPONSIVE — TABLET (≤1024px)
   =================================================== */
@media (max-width: 1024px) {
    /* Services */
    .services-layout {
        grid-template-columns: 160px 1fr;
        gap: 30px;
    }
    .services-promo {
        grid-column: span 2;
        flex-direction: row;
        gap: 0;
    }
    .promo-img-wrap {
        width: 260px;
        flex-shrink: 0;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Portfolio */
    .portfolio-item {
        flex: 0 0 33.33%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

/* ===================================================
   RESPONSIVE — MOBILE LANDSCAPE (≤768px)
   =================================================== */
@media (max-width: 768px) {

    /* ---- Top Bar ---- */
    .top-info {
        display: none;
    }
    .top-social {
        justify-content: center;
        width: 100%;
    }

    /* ---- Navbar ---- */
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(20, 20, 20, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 999;
        padding: 60px 30px 30px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-menu li:first-child {
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-menu li a {
        display: block;
        padding: 16px 0;
        color: rgba(255,255,255,0.85);
        font-size: 14px;
        letter-spacing: 2px;
        border-bottom: none;
    }
    .nav-menu li a.active,
    .nav-menu li a:hover {
        color: var(--yellow);
        border-bottom: none;
    }
    .navbar-inner {
        border-bottom: none;
    }

    /* ---- Hero Slider ---- */
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    .slide-content {
        padding-top: 140px; /* clears fixed top-bar (~42px) + navbar (~76px) + breathing room */
        padding-left: 20px;
        padding-right: 20px;
    }
    .slide-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    .slide-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 14px;
    }
    .slide-desc {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.7;
    }
    .slide-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn {
        padding: 12px 26px;
        font-size: 12px;
    }
    .slider-btn {
        width: 36px;
        height: 60px;
        font-size: 14px;
    }
    .slider-dots {
        bottom: 14px;
    }

    /* ---- Quote Banner ---- */
    .quote-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .quote-banner-inner p {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* ---- Features ---- */
    .features-section {
        padding: 50px 0 60px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-img-wrap {
        height: 200px;
    }

    /* ---- Featured Work ---- */
    .featured-work {
        padding: 40px 0 0;
    }
    .portfolio-item {
        flex: 0 0 50%;
        height: 200px;
    }
    .portfolio-overlay span {
        font-size: 11px;
    }

    /* ---- Services / Tabs ---- */
    .services-section {
        padding: 50px 0;
    }
    .services-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .tab-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 16px;
        margin-bottom: 4px;
    }
    .tab-item {
        border-left: none;
        border: 1px solid var(--border-light);
        border-radius: 3px;
        padding: 7px 12px;
        margin: 0;
        font-size: 11px;
    }
    .tab-item.active {
        border-left: none;
        border: 1px solid var(--dark);
        background: var(--dark);
        color: var(--white);
        padding-left: 12px;
        margin: 0;
    }
    .services-content {
        padding-right: 0;
    }
    .services-promo {
        flex-direction: column;
    }
    .promo-img-wrap {
        width: 100%;
        height: 220px;
    }

    /* ---- CTA Banner ---- */
    .cta-banner {
        padding: 60px 0;
    }
    .cta-content h2 {
        font-size: 18px;
        letter-spacing: 1.5px;
        line-height: 1.4;
    }
    .btn-dark-solid {
        padding: 14px 28px;
        font-size: 12px;
    }

    /* ---- Clients ---- */
    .clients-section {
        padding: 50px 0;
    }
    .clients-title {
        font-size: 15px;
        margin-bottom: 36px;
    }
    .clients-logos {
        gap: 24px 32px;
    }
    .logo-text-brand {
        font-size: 16px;
    }

    /* ---- Footer ---- */
    .footer {
        padding-top: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* ---- Footer Bottom ---- */
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ===================================================
   RESPONSIVE — MOBILE PORTRAIT (≤480px)
   =================================================== */
@media (max-width: 480px) {

    /* ---- Top Bar ---- */
    .top-bar {
        padding: 8px 0;
    }

    /* ---- Hero ---- */
    .hero-slider {
        height: 85vh;
        min-height: 480px;
    }
    .slide-title {
        font-size: 26px;
    }
    .slide-desc {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 3;
        overflow: hidden;
    }
    .slide-btns {
        gap: 10px;
    }
    .btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }

    /* ---- Features ---- */
    .features-grid {
        gap: 32px;
    }
    .feature-img-wrap {
        height: 180px;
    }
    .feature-title {
        font-size: 13px;
    }

    /* ---- Portfolio ---- */
    .portfolio-item {
        flex: 0 0 100%;
        height: 220px;
    }

    /* ---- Services ---- */
    .tab-panel h3 {
        font-size: 14px;
    }

    /* ---- CTA ---- */
    .cta-content h2 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    /* ---- Clients ---- */
    .clients-logos {
        gap: 20px 24px;
    }
    .logo-text-brand {
        font-size: 14px;
    }
    .logo-bracket {
        padding: 3px 7px;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom p,
    .footer-credit {
        text-align: center;
    }

    /* ---- Search ---- */
    .search-input {
        font-size: 18px;
    }
}

/* ===================================================
   RESPONSIVE — SMALL PHONES (≤360px)
   =================================================== */
@media (max-width: 360px) {
    .logo .logo-text {
        font-size: 18px;
    }
    .slide-title {
        font-size: 22px;
    }
    .slide-subtitle {
        font-size: 10px;
    }
    .section-title-white {
        font-size: 16px;
    }
    .tab-item {
        font-size: 10px;
        padding: 6px 10px;
    }
    .clients-logos {
        flex-direction: column;
        align-items: center;
    }
}
