/* =========================
GALLERY SECTION
========================= */

.gal-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081122 50%, #050816 100%);
}

/* GLOW */

.gal-sec::before {
    content: '';
    position: absolute;
    right: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* =========================
HEAD
========================= */

.gal-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* TAG */

.gal-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.gal-head h2 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.gal-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID
========================= */

.gal-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

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

.gal-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
}

/* HOVER */

.gal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.20);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* =========================
IMAGE
========================= */

.gal-img {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: 0.45s ease;
}

/* IMAGE HOVER */

.gal-card:hover .gal-img img {
    transform: scale(1.06);
}

/* =========================
BADGE
========================= */

.gal-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 3;
}

/* VIP */

.vip {
    background: rgba(37, 99, 235, 0.70);
}

/* VERIFIED */

.verified {
    background: rgba(34, 197, 94, 0.70);
}

/* ELITE */

.elite {
    background: rgba(147, 51, 234, 0.70);
}

/* NEW */

.new {
    background: rgba(245, 158, 11, 0.70);
}

/* =========================
STATUS
========================= */

.gal-status {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 9px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    z-index: 3;
}

/* STATUS COLORS */

.available {
    background: rgba(34, 197, 94, 0.72);
}

.reserved {
    background: rgba(220, 38, 38, 0.72);
}

.tomorrow {
    background: rgba(37, 99, 235, 0.72);
}

.returning {
    background: rgba(147, 51, 234, 0.72);
}

.unavailable {
    background: rgba(107, 114, 128, 0.72);
}

/* =========================
INFO
========================= */

.gal-info {
    padding: 22px 20px;
}

/* TOP */

.gal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* NAME */

.gal-top h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

/* AGE */

.gal-top span {
    font-size: 15px;
    font-weight: 500;
    color: #FBBF24;
}

/* TEXT */

.gal-info p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #CBD5E1;
}

/* RATE */

.gal-info strong {
    font-size: 16px;
    font-weight: 600;
    color: #60A5FA;
}

/* =========================
BUTTON
========================= */

.gal-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

/* BUTTON */

.gal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
    transition: 0.35s ease;
}

/* BUTTON HOVER */

.gal-btn:hover {
    transform: translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gal-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .gal-sec {
        padding: 90px 16px;
    }
    .gal-head {
        margin-bottom: 50px;
    }
    .gal-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .gal-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gal-info {
        padding: 16px 14px;
    }
    .gal-top h3 {
        font-size: 18px;
    }
    .gal-info p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .gal-info strong {
        font-size: 14px;
    }
    .gal-status {
        font-size: 10px;
        padding: 8px 12px;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px) {
    .gal-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* =========================
GALLERY INFO SECTION
========================= */

.gal-info-sec {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background: linear-gradient( 180deg, #071226 0%, #050816 100%);
}

/* =========================
GLOW
========================= */

.gal-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

/* LEFT */

.glow-left {
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.10);
}

/* RIGHT */

.glow-right {
    right: -120px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    background: rgba(168, 85, 247, 0.10);
}

/* =========================
WRAP
========================= */

.gal-info-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 55px;
    align-items: center;
}

/* =========================
CONTENT
========================= */

.gal-info-con {
    position: relative;
}

/* TAG */

.gal-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.gal-info-con h2 {
    margin-bottom: 30px;
    font-size: 48px;
    line-height: 1.16;
    color: #ffffff;
}

/* TEXT */

.gal-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gal-text p {
    font-size: 17px;
    line-height: 1.95;
    color: #CBD5E1;
}

/* LINKS */

.gal-text a {
    color: #60A5FA;
    text-decoration: none;
    transition: 0.3s ease;
}

.gal-text a:hover {
    color: #93C5FD;
}

/* =========================
IMAGE
========================= */

.gal-info-img {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
}

/* IMAGE */

.gal-info-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.45s ease;
}

/* HOVER */

.gal-info-img:hover img {
    transform: scale(1.03);
}

/* FLOAT */

.gal-float {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

/* ICON */

.gal-float i {
    color: #60A5FA;
    font-size: 20px;
}

/* TEXT */

.gal-float span {
    font-size: 15px;
    color: #ffffff;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .gal-info-wrap {
        grid-template-columns: 1fr;
    }
    .gal-info-con h2 {
        font-size: 40px;
    }
    .gal-info-img {
        order: -1;
    }
    .gal-info-img img {
        height: 520px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .gal-info-sec {
        padding: 85px 20px;
    }
    .gal-info-wrap {
        gap: 40px;
    }
    .gal-info-con h2 {
        font-size: 34px;
        line-height: 1.24;
    }
    .gal-text p {
        font-size: 16px;
        line-height: 1.85;
    }
    .gal-info-img img {
        height: 430px;
    }
}

/* =========================
CATEGORY SECTION
========================= */

.cat-sec {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background: linear-gradient( 180deg, #050816 0%, #071226 100%);
}

/* =========================
GLOW
========================= */

.cat-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

/* LEFT */

.glow-left {
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.10);
}

/* RIGHT */

.glow-right {
    right: -120px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    background: rgba(168, 85, 247, 0.10);
}

/* =========================
HEAD
========================= */

.cat-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto auto 70px;
    text-align: center;
}

/* TAG */

.cat-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.cat-head h2 {
    margin-bottom: 28px;
    font-size: 48px;
    line-height: 1.16;
    color: #ffffff;
}

/* TEXT */

.cat-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID
========================= */

.cat-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

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

.cat-card {
    position: relative;
    overflow: hidden;
    height: 520px;
    border-radius: 32px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* IMAGE */

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* HOVER */

.cat-card:hover img {
    transform: scale(1.06);
}

/* =========================
OVERLAY
========================= */

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 100%);
}

/* =========================
CONTENT
========================= */

.cat-con {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
}

/* MINI */

.cat-con span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 13px;
}

/* TITLE */

.cat-con h3 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
}

/* TEXT */

.cat-con p {
    font-size: 15px;
    line-height: 1.8;
    color: #E2E8F0;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px) {
    .cat-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .cat-sec {
        padding: 85px 20px;
    }
    .cat-head {
        margin-bottom: 50px;
    }
    .cat-head h2 {
        font-size: 34px;
        line-height: 1.24;
    }
    .cat-head p {
        font-size: 16px;
        line-height: 1.85;
    }
    .cat-wrap {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .cat-card {
        height: 430px;
    }
    .cat-con h3 {
        font-size: 28px;
    }
}

/* =========================
GALLERY CTA SECTION
========================= */

.gal-cta-sec {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background: linear-gradient( 180deg, #071226 0%, #050816 100%);
}

/* =========================
GLOW
========================= */

.gal-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

/* LEFT */

.glow-left {
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.10);
}

/* RIGHT */

.glow-right {
    right: -120px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    background: rgba(168, 85, 247, 0.10);
}

/* =========================
WRAP
========================= */

.gal-cta-wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* =========================
TAG
========================= */

.gal-cta-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    margin-bottom: 30px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* =========================
TITLE
========================= */

.gal-cta-wrap h2 {
    margin-bottom: 34px;
    font-size: 46px;
    line-height: 1.18;
    color: #ffffff;
}

/* =========================
TEXT
========================= */

.gal-cta-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.gal-cta-text p {
    font-size: 17px;
    line-height: 1.95;
    color: #CBD5E1;
}

/* LINKS */

.gal-cta-text a {
    color: #60A5FA;
    text-decoration: none;
    transition: 0.3s ease;
}

.gal-cta-text a:hover {
    color: #93C5FD;
}

/* =========================
CTA BOX
========================= */

.gal-cta-box {
    padding: 50px 40px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* TITLE */

.gal-cta-box h3 {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
}

/* TEXT */

.gal-cta-box p {
    max-width: 700px;
    margin: auto auto 34px;
    font-size: 16px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
BUTTONS
========================= */

.gal-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* BUTTON */

.gal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 58px;
    padding: 0 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    color: #ffffff;
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* HOVER */

.gal-cta-btn:hover {
    transform: translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .gal-cta-wrap h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .gal-cta-sec {
        padding: 85px 20px;
    }
    .gal-cta-wrap h2 {
        font-size: 34px;
        line-height: 1.24;
    }
    .gal-cta-text p {
        font-size: 16px;
        line-height: 1.85;
    }
    .gal-cta-box {
        padding: 40px 28px;
    }
    .gal-cta-box h3 {
        font-size: 28px;
    }
    .gal-cta-btn {
        width: 100%;
    }
}

/* =========================
MINI GALLERY SECTION
========================= */

.mini-gal-sec {
    padding: 110px 20px;
    background: linear-gradient( 180deg, #050816 0%, #071226 100%);
}

/* =========================
HEAD
========================= */

.mini-gal-head {
    max-width: 850px;
    margin: auto auto 70px;
    text-align: center;
}

/* TAG */

.mini-gal-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.mini-gal-head h2 {
    margin-bottom: 28px;
    font-size: 48px;
    line-height: 1.16;
    color: #ffffff;
}

/* TEXT */

.mini-gal-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID OVERRIDE
========================= */

.mini-gal-sec .gal-grid {
    max-width: 1200px;
    margin: auto;
    grid-template-columns: repeat(4, 1fr);
}

/* =========================
BUTTON
========================= */

.mini-gal-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

/* BUTTON */

.mini-gal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 60px;
    padding: 0 34px;
    border-radius: 60px;
    text-decoration: none;
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* HOVER */

.mini-gal-btn:hover {
    transform: translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:1100px) {
    .mini-gal-sec .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .mini-gal-sec {
        padding: 85px 20px;
    }
    .mini-gal-head {
        margin-bottom: 50px;
    }
    .mini-gal-head h2 {
        font-size: 34px;
        line-height: 1.24;
    }
    .mini-gal-head p {
        font-size: 16px;
        line-height: 1.85;
    }
    .mini-gal-sec .gal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .mini-gal-btn {
        width: 100%;
        max-width: 320px;
    }
}