/* ============================================================
   PROJECT PAGE STYLES (kutkhe.html equivalent)
   Page-specific sections for individual project pages.
   Shared styles (nav, footer, chat, buttons, etc.) are in theme.css.
   ============================================================ */


/* ============================================================
   1. HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* -- Hero Background -- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* -- Overlay -- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.9) 0%,
        rgba(13, 13, 13, 0.5) 40%,
        rgba(13, 13, 13, 0.3) 70%,
        rgba(13, 13, 13, 0.6) 100%
    );
}

/* -- Grain Texture -- */
.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* -- Hero Content Layout -- */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 0 100px;
    width: 100%;
}

.hero-content .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

/* -- Breadcrumb -- */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--light-gray);
}

.hero-breadcrumb a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--gold);
}

.hero-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

/* -- Hero Badge with Pulse Dot -- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}

/* -- Hero Title with Outline Text -- */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.hero-title .outline {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
}

/* -- Hero Subtitle -- */
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 35px;
}

/* -- Hero Buttons -- */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* -- Hero Stats Panel (Glass Card) -- */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
    padding: 35px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.hero-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.hero-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.hero-stat-text {
    font-size: 14px;
    color: var(--light-gray);
}

.hero-stat-text strong {
    display: block;
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}

/* -- Scroll Hint -- */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--light-gray);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-hint .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {
    0%, 100% { height: 50px; opacity: 1; }
    50%      { height: 30px; opacity: 0.5; }
}


/* ============================================================
   2. FLOOR PICKER SECTION
   ============================================================ */

.floor-picker {
    padding: 120px 0 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* -- Golden top-border gradient line -- */
.floor-picker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* -- Header -- */
.floor-picker-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.floor-picker-header h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.floor-picker-header h2 span {
    color: var(--gold);
}

.floor-picker-header p {
    font-size: 17px;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* -- Stats Row -- */
.floor-picker-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.fp-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fp-stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.fp-stat-text {
    font-size: 13px;
    color: var(--light-gray);
}

.fp-stat-text strong {
    display: block;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* -- Full-Width Canvas (Image Map Pro container) -- */
.floor-picker-canvas {
    width: 100%;
    position: relative;
    background: var(--black);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-picker-canvas .imp-wrap {
    width: 100% !important;
    max-width: 100% !important;
}

/* -- Placeholder (visible until Image Map Pro loads) -- */
.fp-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 30px;
    text-align: center;
    color: var(--light-gray);
    width: 100%;
}

.fp-placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--gold-glow), rgba(201, 162, 39, 0.05));
    border: 1px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fpIconFloat 3s ease-in-out infinite;
}

.fp-placeholder-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
}

@keyframes fpIconFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.fp-placeholder h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.fp-placeholder p {
    font-size: 14px;
    max-width: 400px;
}

/* -- Feature Cards Grid (3-column) -- */
.floor-picker-features {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fp-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--gray);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.fp-feature:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fp-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.fp-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.fp-feature p {
    font-size: 13px;
    color: var(--light-gray);
    line-height: 1.6;
}


/* ============================================================
   3. ADVANTAGES MARQUEE
   ============================================================ */

.adv-marquee {
    padding: 60px 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    overflow: hidden;
    background: var(--dark);
}

/* -- Track (infinite scroll container) -- */
.adv-track {
    display: flex;
    animation: advMarqueeScroll 40s linear infinite;
}

.adv-content {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

/* -- Individual Marquee Items -- */
.adv-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
    white-space: nowrap;
}

.adv-item-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
}

.adv-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.adv-item p {
    font-size: 13px;
    color: var(--light-gray);
}

/* -- Diamond Dividers -- */
.adv-divider {
    color: var(--gold);
    font-size: 30px;
    opacity: 0.3;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

/* -- Infinite Scroll Animation -- */
@keyframes advMarqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================================
   4. GALLERY
   ============================================================ */

.gallery {
    padding: 150px 0;
    background: var(--black);
    position: relative;
}

/* -- Gallery Header -- */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 44px;
    font-weight: 700;
}

.gallery-header p {
    font-size: 17px;
    color: var(--light-gray);
    margin-top: 15px;
}

/* -- 4-Column Grid -- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* -- Gallery Items -- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -- Hover Overlay -- */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* -- Zoom Icon Overlay -- */
.gallery-zoom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-zoom svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   5. LIGHTBOX
   ============================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

/* -- Lightbox Image -- */
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* -- Close Button -- */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* -- Prev/Next Navigation -- */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-nav svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* -- Counter -- */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--light-gray);
    letter-spacing: 2px;
}

.lightbox-counter .curr {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
}


/* ============================================================
   6. MAP & CONTACT SECTION
   ============================================================ */

.map-section {
    padding: 150px 0;
    background: var(--dark);
}

/* -- 2-Column Grid -- */
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* -- Text / Heading -- */
.map-text h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
}

.map-text h2 span {
    color: var(--gold);
}

.map-text > p {
    font-size: 17px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* -- Contact Cards -- */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
}

.contact-card a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card span {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* -- Map iFrame -- */
.map-frame {
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--gray);
    height: 100%;
    min-height: 500px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: grayscale(0.5) brightness(0.85);
    transition: filter 0.3s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0) brightness(1);
}


/* ============================================================
   7. ABOUT / CHOOSE SECTION (Optional expanded content)
   ============================================================ */

.about {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

/* -- Large watermark text behind content -- */
.about::before {
    content: attr(data-watermark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 300px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* -- About Visual -- */
.about-visual {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
    border: 1px solid var(--gray);
}

.about-float-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--black);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-float-card .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.about-float-card .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* -- About Text -- */
.about-text h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text h2 span {
    color: var(--gold);
}

.about-text > p {
    font-size: 17px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* -- Feature List Items -- */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.about-feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-feature-item p {
    font-size: 13px;
    color: var(--light-gray);
    line-height: 1.6;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */


/* ------------------------------------------------------------
   Breakpoint: 1200px (Large tablets / Small desktops)
   ------------------------------------------------------------ */

@media (max-width: 1200px) {

    /* Hero */
    .hero-content .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: unset;
        width: 100%;
    }

    .hero-stat {
        flex: 1;
        min-width: 180px;
        border-bottom: none;
        border-right: 1px solid var(--gray);
        padding-right: 20px;
        padding-bottom: 0;
    }

    .hero-stat:last-child {
        border-right: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Map */
    .map-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ------------------------------------------------------------
   Breakpoint: 900px (Tablets)
   ------------------------------------------------------------ */

@media (max-width: 900px) {

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 240px;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(50px, 8vw, 90px);
    }

    /* Floor Picker Features */
    .floor-picker-features {
        grid-template-columns: 1fr 1fr;
    }
}


/* ------------------------------------------------------------
   Breakpoint: 600px (Mobile)
   ------------------------------------------------------------ */

@media (max-width: 600px) {

    /* === Hero - Mobile === */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 0 70px;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(13, 13, 13, 0.6) 0%,
            rgba(13, 13, 13, 0.2) 25%,
            rgba(13, 13, 13, 0.5) 55%,
            rgba(13, 13, 13, 0.92) 100%
        ) !important;
    }

    .hero-breadcrumb {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 7px 16px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
        margin-bottom: 12px;
    }

    .hero-title .outline {
        -webkit-text-stroke-width: 1.5px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 8px;
    }

    .hero-buttons .btn-primary {
        clip-path: none;
        border-radius: 8px;
    }

    .hero-stats {
        padding: 18px;
        border-radius: 16px;
        gap: 14px;
        flex-direction: column;
    }

    .hero-stat {
        flex-direction: row;
        min-width: unset;
        border-right: none;
        border-bottom: 1px solid var(--gray);
        padding-bottom: 14px;
        padding-right: 0;
    }

    .hero-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .hero-stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-stat-text {
        font-size: 12px;
    }

    .hero-stat-text strong {
        font-size: 15px;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* === About - Mobile === */
    .about {
        padding: 70px 0;
    }

    .about::before {
        font-size: 120px;
    }

    .about-main-img {
        height: 300px;
        border-radius: 18px;
    }

    .about-float-card {
        right: -10px;
        bottom: -20px;
        padding: 20px;
        border-radius: 14px;
    }

    .about-float-card .number {
        font-size: 36px;
    }

    .about-float-card .label {
        font-size: 10px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text > p {
        font-size: 14px;
    }

    .about-feature-item {
        padding: 16px;
    }

    .about-feature-item h4 {
        font-size: 14px;
    }

    .about-feature-item p {
        font-size: 12px;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
    }

    /* === Floor Picker - Mobile === */
    .floor-picker {
        padding: 70px 0 0;
    }

    .floor-picker-header h2 {
        font-size: 26px;
    }

    .floor-picker-header p {
        font-size: 14px;
    }

    .floor-picker-stats {
        gap: 20px;
    }

    .fp-stat-text strong {
        font-size: 16px;
    }

    .fp-stat-text {
        font-size: 12px;
    }

    .fp-stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .floor-picker-canvas {
        min-height: 400px;
    }

    .floor-picker-features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 50px 0;
    }

    .fp-feature {
        padding: 20px;
        border-radius: 16px;
    }

    .fp-feature h4 {
        font-size: 14px;
    }

    .fp-feature p {
        font-size: 12px;
    }

    /* === Advantages Marquee - Mobile === */
    .adv-item-number {
        font-size: 36px;
    }

    .adv-item h4 {
        font-size: 15px;
    }

    .adv-item p {
        font-size: 11px;
    }

    .adv-item {
        padding: 0 30px;
    }

    .adv-track {
        animation-duration: 20s;
    }

    /* === Gallery - Mobile === */
    .gallery {
        padding: 70px 0;
    }

    .gallery-header h2 {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
        border-radius: 12px;
    }

    .gallery-zoom {
        width: 34px;
        height: 34px;
        bottom: 10px;
        right: 10px;
        border-radius: 8px;
    }

    .gallery-zoom svg {
        width: 15px;
        height: 15px;
    }

    /* === Lightbox - Mobile === */
    .lightbox img {
        max-width: 95vw;
        max-height: 75vh;
        border-radius: 8px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .lightbox-close svg {
        width: 18px;
        height: 18px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-nav svg {
        width: 18px;
        height: 18px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 12px;
    }

    .lightbox-counter .curr {
        font-size: 16px;
    }

    /* === Map & Contact - Mobile === */
    .map-section {
        padding: 70px 0;
    }

    .map-text h2 {
        font-size: 26px;
    }

    .map-text > p {
        font-size: 14px;
    }

    .map-frame {
        min-height: 300px;
        border-radius: 18px;
    }

    .map-frame iframe {
        min-height: 300px;
    }

    .contact-card {
        padding: 16px 18px;
    }

    .contact-card a,
    .contact-card span {
        font-size: 13px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .contact-card-icon svg {
        width: 18px;
        height: 18px;
    }
}


/* ------------------------------------------------------------
   Breakpoint: 380px (Small phones)
   ------------------------------------------------------------ */

@media (max-width: 380px) {

    .hero-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 13px;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-buttons .btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 6px 14px;
    }

    .hero-stat-text strong {
        font-size: 14px;
    }

    .hero-stat-text {
        font-size: 11px;
    }

    .floor-picker-header h2,
    .gallery-header h2,
    .map-text h2,
    .about-text h2 {
        font-size: 22px;
    }

    .gallery-item {
        height: 150px;
    }

    .adv-item-number {
        font-size: 30px;
    }

    .adv-item h4 {
        font-size: 13px;
    }

    .adv-item p {
        font-size: 10px;
    }

    .adv-item {
        padding: 0 20px;
    }
}


/* ------------------------------------------------------------
   Landscape on short screens (Mobile landscape)
   ------------------------------------------------------------ */

@media (max-height: 500px) and (orientation: landscape) {

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 0 20px;
    }

    .hero-content .container {
        flex-direction: row;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(13, 13, 13, 0.92) 0%,
            rgba(13, 13, 13, 0.6) 40%,
            rgba(13, 13, 13, 0.2) 100%
        ) !important;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-badge {
        font-size: 9px;
        padding: 5px 12px;
        margin-bottom: 8px;
    }

    .hero-buttons .btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    .hero-stats {
        padding: 14px;
        gap: 8px;
        max-width: 220px;
    }

    .hero-stat-icon {
        width: 32px;
        height: 32px;
    }

    .hero-stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-stat-text {
        font-size: 11px;
    }

    .hero-stat-text strong {
        font-size: 13px;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-breadcrumb {
        display: none;
    }

    /* Lightbox landscape */
    .lightbox img {
        max-height: 80vh;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        width: 38px;
        height: 38px;
        top: 12px;
        right: 12px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}
