:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --gold-hover: #b8922a;
    --text: #334155;
    --text-light: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-soft: 0 8px 32px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 12px 40px rgba(15, 23, 42, 0.1);
    --radius-lg: 16px;
}

* { box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--navy); font-weight: 700; }
a { text-decoration: none; transition: color .2s; }
.gold { color: var(--gold) !important; }

/* Header & Navbar */
.site-header {
    position: relative;
    z-index: 1050;
}

.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    position: relative;
    z-index: 2;
}

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
    transition: box-shadow .3s, background .3s, padding .3s;
}

.main-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

/* Dil seçici — navbar içinde, dropdown üstte kalsın */
.nav-lang-item .lang-switcher { position: relative; z-index: 1100; }

.nav-lang-item .btn-lang-nav {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    transition: all .2s;
}

.nav-lang-item .btn-lang-nav:hover,
.nav-lang-item .btn-lang-nav.show {
    background: rgba(201, 162, 39, 0.12);
    border-color: var(--gold);
    color: var(--navy);
}

.nav-lang-item .dropdown-menu {
    z-index: 1200 !important;
    margin-top: 0.5rem !important;
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
    min-width: 150px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color .2s;
}

.top-bar a:hover { color: var(--gold); }

.top-bar a i { color: var(--gold); font-size: 0.9rem; }

.social-links a {
    color: rgba(255, 255, 255, 0.75);
    margin-left: 0.65rem;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .2s;
}

.social-links a:hover {
    color: var(--navy);
    background: var(--gold);
}

.main-navbar { padding: 0.65rem 0; }

.navbar-brand {
    padding: 0;
    margin-right: 1rem;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.navbar-nav { gap: 0.15rem; }

.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy) !important;
    padding: 0.55rem 0.85rem !important;
    border-radius: 8px;
    position: relative;
    transition: color .2s, background .2s;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold) !important;
    background: rgba(201, 162, 39, 0.08);
}

.nav-item.active > .nav-link,
.nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 162, 39, 0.1);
}

.nav-item.active > .nav-link::after,
.nav-link.active:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
    border-top-color: currentColor;
    opacity: 0.6;
}

.dropdown-menu-nav {
    border: none;
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0 !important;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
    min-width: 220px;
    animation: navDropIn .2s ease;
}

@media (min-width: 992px) {
    .main-navbar .nav-item.dropdown {
        position: relative;
    }

    /* Toggle ile menü arasındaki boşlukta hover kaybolmasın */
    .main-navbar .nav-item.dropdown::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 10px;
    }

    .main-navbar .nav-item.dropdown > .dropdown-menu {
        top: calc(100% + 2px);
    }
}

@keyframes navDropIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu-nav .dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all .15s;
}

.dropdown-menu-nav .dropdown-item i {
    color: var(--gold);
    font-size: 0.95rem;
    width: 1.1rem;
    text-align: center;
}

.dropdown-menu-nav .dropdown-item:hover,
.dropdown-menu-nav .dropdown-item:focus {
    background: rgba(201, 162, 39, 0.12);
    color: var(--navy);
}

.dropdown-menu-nav .dropdown-item.active {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
}

.dropdown-menu-nav .dropdown-item.active i { color: var(--navy); }

.dropdown-menu-nav .dropdown-divider {
    margin: 0.35rem 0.5rem;
    border-color: #e2e8f0;
}

.btn-nav-cta {
    padding: 0.55rem 1.25rem !important;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-mobile-phone {
    color: var(--gold);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    padding: 0.35rem;
}

.navbar-toggler {
    border: none;
    padding: 0.35rem;
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    transition: background .2s;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(201, 162, 39, 0.1);
}

.navbar-toggler .toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-lang {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    transition: all .2s;
}

.btn-lang:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.nav-mobile-lang {
    width: 100%;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

.nav-mobile-lang .btn-lang,
.nav-mobile-lang .btn-lang-nav {
    background: var(--light);
    border-color: #e2e8f0;
    color: var(--navy);
    width: 100%;
    text-align: left;
}

.nav-cta { margin-top: 0; }

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid #e2e8f0;
        margin-top: 0.75rem;
        padding: 0.75rem 0 1rem;
        border-radius: 0 0 12px 12px;
    }

    .navbar-nav { gap: 0.25rem; }

    .nav-link {
        padding: 0.7rem 0.5rem !important;
        border-radius: 8px;
    }

    .nav-item.active > .nav-link::after,
    .nav-link.active:not(.dropdown-toggle)::after {
        display: none;
    }

    .dropdown-menu-nav {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        margin: 0.25rem 0 0.5rem 0.5rem !important;
        padding: 0.35rem;
    }

    .nav-cta {
        margin-top: 0.75rem !important;
        margin-left: 0 !important;
        width: 100%;
    }

    .btn-nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.25rem !important;
    }
}

.btn-gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); font-weight: 600; padding: .6rem 1.5rem; border-radius: 6px; }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--white); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); font-weight: 600; border-radius: 6px; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* Hero */
.hero-slider { position: relative; }
.hero-slide { height: 85vh; min-height: 500px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.45) 55%, rgba(15,23,42,.25) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero-subtitle { display: inline-block; background: var(--gold); color: var(--navy); padding: .35rem 1rem; font-size: .85rem; font-weight: 600; border-radius: 4px; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; margin-bottom: 1rem; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-content p { font-size: 1.15rem; opacity: .9; margin-bottom: 1.5rem; }
.hero-swiper .swiper-pagination-bullet { background: #fff; opacity: .5; width: 12px; height: 12px; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next { color: var(--gold); }

/* Stats */
.stats-section { background: var(--navy); padding: 3rem 0; margin-top: -2rem; position: relative; z-index: 10; }
.stat-item { color: #fff; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: .95rem; opacity: .8; text-transform: uppercase; letter-spacing: 1px; }

/* Sections */
.section-padding { padding: 5rem 0; }
.section-tag { display: inline-block; color: var(--gold); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: .5rem; }
.section-tag.light { color: var(--gold-light); }
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.bg-dark-section .section-title::after {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.bg-light { background: var(--light); }

.bg-dark-section {
    background: linear-gradient(160deg, var(--navy) 0%, #1a2744 50%, var(--navy-light) 100%);
    color: rgba(255, 255, 255, 0.92);
    position: relative;
}

.bg-dark-section .section-title,
.bg-dark-section h2,
.bg-dark-section h3 {
    color: #ffffff !important;
}

.bg-dark-section .section-tag,
.bg-dark-section .section-tag.light {
    color: var(--gold-light) !important;
}

.bg-dark-section .btn-outline-gold {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.bg-dark-section .btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* About */
.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid rgba(201, 162, 39, 0.35);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-card);
    border-radius: 16px !important;
}
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy); padding: 1.5rem; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.exp-num { display: block; font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.exp-text { font-size: .8rem; font-weight: 600; text-transform: uppercase; }

/* Service cards */
.service-card {
    display: block;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}
.service-icon { width: 60px; height: 60px; background: rgba(201,162,39,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon i { font-size: 1.75rem; color: var(--gold); }
.service-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.service-card p { color: var(--text-light); font-size: .95rem; margin-bottom: 1rem; }
.service-link { color: var(--gold); font-weight: 600; font-size: .9rem; }
.service-card-lg { flex-direction: row; align-items: flex-start; }
.service-icon-inline i { font-size: 3rem; color: var(--gold); }

/* Project cards */
.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .35s, box-shadow .35s;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.project-img { display: block; position: relative; overflow: hidden; aspect-ratio: 16/10; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.status-badge { position: absolute; top: 1rem; left: 1rem; padding: .35rem .85rem; border-radius: 50px; font-size: .75rem; font-weight: 600; text-transform: uppercase; z-index: 2; }
.status-ongoing { background: #3b82f6; color: #fff; }
.status-completed { background: #22c55e; color: #fff; }
.status-planned { background: #a855f7; color: #fff; }
.project-body { padding: 1.5rem; }
.project-cat { color: var(--gold); font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.project-body h3 { font-size: 1.15rem; margin: .5rem 0; }
.project-body h3 a { color: var(--navy); }
.project-body h3 a:hover { color: var(--gold); }
.project-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--text-light); margin-top: 1rem; }
.gallery-thumb {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform .25s, box-shadow .25s;
}
.gallery-thumb:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.gallery-thumb img { transition: transform .3s; }
.gallery-thumb:hover img { transform: scale(1.05); }

/* Project filters */
.project-filters { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-btn { padding: .5rem 1.25rem; border-radius: 50px; border: 2px solid #e2e8f0; color: var(--text); font-weight: 500; font-size: .9rem; }
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.filter-select { max-width: 200px; }

/* Blog */
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(15,23,42,.06); height: 100%; }
.blog-img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat { color: var(--gold); font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.blog-body h3 { font-size: 1.1rem; margin: .5rem 0; }
.blog-body h3 a { color: var(--navy); }
.read-more { color: var(--gold); font-weight: 600; font-size: .9rem; }
.blog-body time { font-size: .85rem; color: var(--text-light); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 5rem 0; color: #fff; }
.cta-section h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-section p { opacity: .85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Page hero */
.page-hero { background: var(--navy); padding: 5rem 0 3rem; color: #fff; }
.page-hero-sm { padding: 4rem 0 2.5rem; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb { margin-top: 1rem; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item.active { color: var(--gold); }

/* Info box */
.info-box { background: var(--light); border-radius: 12px; padding: 2rem; border-left: 4px solid var(--gold); }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: .75rem 0; border-bottom: 1px solid #e2e8f0; }
.info-list li:last-child { border-bottom: none; }

/* Gallery */
.gallery-item { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.08); }

/* Forms */
.contact-form .form-label { font-weight: 500; color: var(--navy); }
.contact-form .form-control, .contact-form .form-select { border-radius: 8px; padding: .75rem 1rem; border-color: #e2e8f0; }
.contact-form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201,162,39,.15); }

/* Footer */
.site-footer {
    background: linear-gradient(165deg, #0a0f1a 0%, var(--navy) 40%, var(--navy-light) 100%);
    color: rgba(255, 255, 255, .8);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-main { padding: 4.5rem 0 2.5rem; }
.footer-brand { color: #fff; font-family: var(--font-heading); font-weight: 800; }
.footer-main h5 { color: #fff; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: .75rem; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; font-size: .9rem; }

/* Content */
.content-body { line-height: 1.8; }
.content-body h2, .content-body h3 { margin-top: 1.5rem; margin-bottom: 1rem; }

/* Project tabs on dark bg */
.project-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border: none;
}

.project-tabs .nav-item {
    margin: 0;
}

.project-tabs .nav-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background .2s, border-color .2s, color .2s;
}

.project-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
}

.project-tabs .nav-link.active {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.45);
}

@media (max-width: 991px) {
    .hero-slide { height: 70vh; }
    .experience-badge { right: 10px; bottom: 10px; }
    .service-card-lg { flex-direction: column; }
}

/* === Premium enhancements === */

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--navy), transparent);
    z-index: 1;
    pointer-events: none;
}

.stats-section {
    border-radius: 20px;
    margin-left: 1rem;
    margin-right: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.service-card, .project-card, .blog-card {
    border-radius: 16px;
    overflow: hidden;
}

.project-card {
    border: 1px solid rgba(0,0,0,.04);
}

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,162,39,.15), transparent 50%);
}

.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(201,162,39,.12), transparent 70%);
}

.btn-gold {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(201,162,39,.35);
    transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,162,39,.45);
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 -8px 40px rgba(0,0,0,.3);
    border: 1px solid rgba(201,162,39,.2);
}
.cookie-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.cookie-text { flex: 1; }
.cookie-text p { margin: .35rem 0 0; font-size: .9rem; opacity: .85; line-height: 1.5; }
.cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }

@media (max-width: 768px) {
    .cookie-consent-inner { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; justify-content: center; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Site widgets */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    z-index: 9999;
    transition: width .1s linear;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
}

.float-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform .2s, box-shadow .2s;
}

.float-whatsapp:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 576px) {
    .float-whatsapp { bottom: 16px; left: 16px; width: 50px; height: 50px; font-size: 1.5rem; }
    .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

.staging-banner {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
    font-size: .85rem;
    padding: .5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1100;
    letter-spacing: 0.02em;
}

.nav-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    color: var(--navy) !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    transition: all .2s;
}

.nav-search-btn:hover {
    background: rgba(201, 162, 39, 0.12) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.site-search-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.2);
    overflow: hidden;
}

.site-search-modal .modal-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    padding: 1.25rem 1.5rem;
}

.site-search-modal .modal-header .btn-close {
    filter: invert(1);
}

.site-search-modal #siteSearchInput {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 0.85rem 1.1rem;
}

.site-search-modal #siteSearchInput:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.site-search-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
    color: var(--navy);
    transition: all .2s;
    border-radius: 10px;
}

.site-search-item:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.06);
    color: var(--navy);
}

.before-after-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/10;
}

.before-after-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-after-wrap .after-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    width: 50%;
    border-right: 2px solid #c9a227;
}

.before-after-range {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
}

.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
}

/* Home projects section */
.home-projects-section {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.home-projects-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 45%, #0d1f35 100%);
    z-index: 0;
}

.home-projects-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.home-projects-section .section-tag.light {
    color: var(--gold);
    border-color: rgba(201, 162, 39, 0.4);
}

.home-projects-desc {
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin-bottom: 0;
}

.home-projects-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    justify-content: flex-end;
}

.home-projects-stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 90px;
}

.home-projects-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.home-projects-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.55);
}

.home-projects-tabs {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.35rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-tab-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    cursor: pointer;
}

.home-tab-btn:hover {
    color: #fff;
}

.home-tab-btn.active {
    background: var(--gold);
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.home-projects-panel {
    display: none;
}

.home-projects-panel.show {
    display: block;
    animation: homePanelIn 0.35s ease;
}

@keyframes homePanelIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-project-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.home-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-project-media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.home-project-featured .home-project-media {
    aspect-ratio: 16/10;
}

.home-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-project-card:hover .home-project-media img {
    transform: scale(1.06);
}

.home-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 39, 68, 0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.home-project-card:hover .home-project-overlay {
    opacity: 1;
}

.home-project-view {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gold);
    color: #1a1a1a;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.home-project-media .status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.home-project-body {
    padding: 1.25rem;
}

.home-project-cat {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.home-project-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.home-project-body h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.home-project-body h3 a:hover {
    color: var(--gold);
}

.home-project-featured .home-project-body h3 {
    font-size: 1.35rem;
}

.home-project-body p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.home-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.home-project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 991px) {
    .home-projects-stats {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
}

.footer-newsletter .form-control {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-newsletter-form .form-control {
    border: none;
    border-radius: 0;
    padding: 0.65rem 1rem;
}

.footer-newsletter-form .btn-gold {
    border-radius: 0;
    padding: 0.65rem 1.25rem;
    white-space: nowrap;
    font-weight: 600;
}

