﻿:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #5b5cf0;
    --accent2: #4A6EFF;
    --light: #f8fafc;
    --border: rgba(255,255,255,.08);
    --text: #0f172a;
    --muted: #64748b;
    --white: #fff;
    --shadow: 0 10px 35px rgba(15,23,42,.08);
    --radius: 26px;
}
.ads-page-wrapper {
    overflow: hidden;
}
/* ================= HERO ================= */
.hero-cover {
    position: relative;
    padding: 90px 0 120px;
    overflow: hidden;
}
    .hero-cover:before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        top: -240px;
        right: -180px;
    }
    .hero-cover:after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(139,92,246,.15);
        bottom: -180px;
        left: -120px;
    }
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.hero-content {
    color: #fff;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid #8b5cf6;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: black;
}
    .hero-badge i {
        color: #4A6EFF;
    }
.hero-title {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}
.hero-desc {
    color: black;
    font-size: 17px;
    line-height: 1.9;
    max-width: 680px;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
    font-size: 15px;
}
.hero-btn-primary {
    background: linear-gradient(135deg,#4A6EFF,#5b5cf0);
    color: #fff;
    box-shadow: 0 12px 30px rgba(91,92,240,.35);
}
    .hero-btn-primary:hover {
        transform: translateY(-4px);
        color: #fff;
        text-decoration: none;
    }
.hero-btn-light {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}
    .hero-btn-light:hover {
        background: rgba(255,255,255,.15);
        color: #fff;
        text-decoration: none;
    }
/* ================= HERO IMAGE ================= */
.hero-visual {
    position: relative;
}
.hero-image-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
}
    .hero-image-card img {
        width: 100%;
        height: 540px;
        object-fit: cover;
        display: block;
    }
.floating-card {
    position: absolute;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
.floating-card.top {
    top: 25px;
    left: -25px;
}
.floating-card.bottom {
    bottom: 25px;
    right: -20px;
}
.floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg,#4A6EFF,#5b5cf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}
.floating-title {
    font-weight: 800;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 3px;
}
.floating-sub {
    color: var(--muted);
    font-size: 12px;
}
/* ================= CONTENT ================= */
.ads-content-section {
    margin-top: -70px;
    position: relative;
    z-index: 5;
    padding-bottom: 70px;
}
.glass-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.7);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
}
.main-info-card {
    padding: 34px;
    margin-bottom: 28px;
}
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}
.code-chip {
    padding: 10px 16px;
    border-radius: 50px;
    background: #eef2ff;
    color: #4338ca;
    font-weight: 700;
    font-size: 13px;
}
/* ================= INFO GRID ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 18px;
    margin-top: 24px;
}
.info-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    padding: 24px;
    border: 1px solid #eef2f7;
    transition: .35s ease;
}
    .info-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(15,23,42,.08);
    }
    .info-box:before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(91,92,240,.05);
        right: -50px;
        top: -50px;
    }
.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#4A6EFF,#5b5cf0);
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 12px 25px rgba(91,92,240,.2);
}
.info-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 7px;
}
.info-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.7;
}
/* ================= DESCRIPTION ================= */
.desc-card {
    padding: 36px;
    margin-bottom: 28px;
}
.desc-content {
    font-size: 16px;
    line-height: 2;
    color: #475569;
}
/* ================= GALLERY ================= */
.gallery-card {
    padding: 34px;
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #e2e8f0;
}
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }
    .gallery-item:hover img {
        transform: scale(1.12);
    }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(15,23,42,.65),transparent);
    opacity: 0;
    transition: .3s;
    display: flex;
    align-items: end;
    padding: 20px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(8px);
}
/* ================= MAP ================= */
.map-card {
    overflow: hidden;
    border-radius: 32px;
    margin-bottom: 34px;
    position: relative;
    height: 420px;
    box-shadow: 0 20px 50px rgba(15,23,42,.1);
}
    .map-card iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(.1) contrast(1.02);
    }
.map-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(15,23,42,.85);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
}
.map-badge-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg,#4A6EFF,#5b5cf0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.map-badge-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}
.map-badge-sub {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}
/* ================= RELATED ================= */
.related-section {
    padding: 80px 0;
}
.related-title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--text);
}
.related-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
    transition: .35s ease;
    margin-bottom: 25px;
}
    .related-card:hover {
        transform: translateY(-10px);
        text-decoration: none;
        box-shadow: 0 25px 50px rgba(15,23,42,.12);
    }
.related-image {
    height: 240px;
    overflow: hidden;
}
    .related-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .45s ease;
    }
.related-card:hover img {
    transform: scale(1.08);
}
.related-content {
    padding: 24px;
}
.related-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}
/* ================= SOCIAL ================= */
.social-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.social-link {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid #edf2f7;
    transition: .3s ease;
}
    .social-link:hover {
        background: linear-gradient(135deg,#4A6EFF,#5b5cf0);
        color: #fff;
        transform: translateY(-5px) rotate(-4deg);
        box-shadow: 0 15px 30px rgba(91,92,240,.25);
        text-decoration: none;
    }
/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-image-card img {
        height: 420px;
    }
}
@media(max-width:768px) {
    .hero-cover {
        padding: 70px 0 100px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-desc {
        font-size: 15px;
    }
    .main-info-card,
    .gallery-card,
    .desc-card {
        padding: 22px;
    }
    .section-title {
        font-size: 22px;
    }
    .map-card {
        height: 320px;
    }
    .map-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .floating-card {
        display: none;
    }
}
