/* ============================================================
   HOMEPAGE STYLES (nextime-v2.html)
   Page-specific sections - NOT shared with other pages.
   ============================================================ */


/* ------------------------------------------------------------
   1. HERO SLIDER
   ------------------------------------------------------------ */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.3) 100%);
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 50px 120px;
}

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

.hero-slide-text {
    max-width: 700px;
}

.hero-slide-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide-status.active-sale {
    background: var(--gold);
    color: var(--black);
}

.hero-slide-status.coming-soon {
    background: var(--accent-blue);
    color: var(--white);
}

.hero-slide-status .pulse-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
}

.hero-slide-title {
    font-family: 'Noto Serif Georgian', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-slide-title .highlight {
    color: var(--gold);
}

.hero-slide-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slide-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(20,20,20,0.8);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--gray);
    min-width: 250px;
}

.hero-slide-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-slide-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-slide-info-item span {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

/* Hero Controls */

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0s;
}

.hero-dot.active::after {
    width: 100%;
    transition: width 6s linear;
}

.hero-dot.active {
    background: rgba(255,255,255,0.15);
}

.hero-counter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    min-width: 60px;
    text-align: right;
}

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

/* Hero Arrows */

.hero-arrows {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.hero-arrow:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
}


/* ------------------------------------------------------------
   2. MARQUEE
   ------------------------------------------------------------ */

.marquee-section {
    padding: 35px 0;
    background: var(--gold);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item svg {
    width: 24px;
    height: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}


/* ------------------------------------------------------------
   3. ABOUT SECTION
   ------------------------------------------------------------ */

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

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

.about-images {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid var(--black);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-year-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px var(--gold-glow);
}

.about-year-badge .year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.about-year-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.about-content h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

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

.about-feature:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

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

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

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

.about-feature p {
    font-size: 13px;
    color: var(--light-gray);
    margin: 0;
}


/* ------------------------------------------------------------
   4. PROJECTS SECTION
   ------------------------------------------------------------ */

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

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

/* Project Tabs */

.project-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 50px;
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 5px;
    border: 1px solid var(--gray);
    width: fit-content;
    position: relative;
}

.project-tab {
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--light-gray);
    font-family: 'Noto Sans Georgian', sans-serif;
    border: none;
    background: none;
    position: relative;
    z-index: 2;
}

.project-tab.active {
    color: var(--black);
}

.project-tab:hover:not(.active) {
    color: var(--white);
}

.tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background: var(--gold);
    border-radius: 12px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* Tab Content Animation */

.project-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}

.project-tab-content.active {
    display: block;
    animation: tabFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Project Grid & Cards */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(13,13,13,0.95) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.project-card:hover::before {
    background: linear-gradient(180deg, rgba(201,162,39,0.2) 0%, rgba(13,13,13,0.98) 100%);
}

.project-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 3;
}

.project-status {
    display: inline-block;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project-status.sale {
    background: var(--gold);
    color: var(--black);
}

.project-status.soon {
    background: var(--accent-blue);
    color: var(--white);
}

.project-status.sold {
    background: var(--gray);
    color: var(--light-gray);
}

.project-title {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-info {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 18px;
}

.project-link svg {
    width: 20px;
    height: 20px;
}


/* ------------------------------------------------------------
   5. STATS MARQUEE
   ------------------------------------------------------------ */

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

.stats-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.stats-content {
    display: flex;
    gap: 100px;
    padding-right: 100px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.stat-card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-card-text {
    font-size: 14px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 120px;
    line-height: 1.4;
}


/* ------------------------------------------------------------
   6. ADVANTAGES
   ------------------------------------------------------------ */

.advantages {
    padding: 150px 0;
    background: var(--black);
}

.advantages-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

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

.advantages-header p {
    font-size: 17px;
    color: var(--light-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.advantage-card {
    padding: 40px 30px;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.advantage-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gold-glow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.6;
}


/* ------------------------------------------------------------
   7. TESTIMONIALS
   ------------------------------------------------------------ */

.testimonials {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,0.05) 0%, transparent 70%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-info h5 {
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: var(--gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}


/* ------------------------------------------------------------
   8. FAQ
   ------------------------------------------------------------ */

.faq {
    padding: 150px 0;
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-content h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
}

.faq-content p {
    font-size: 17px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.faq-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.7;
}


/* ------------------------------------------------------------
   9. CTA / CONTACT
   ------------------------------------------------------------ */

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

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content h2 {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--gold);
}

.cta-content > p {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.cta-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--white);
}

.cta-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.cta-contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.cta-map {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--gray);
    height: 100%;
    min-height: 500px;
}

.cta-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: grayscale(0.6) brightness(0.8);
    transition: filter 0.3s;
}

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


/* ============================================================
   10. RESPONSIVE - HOMEPAGE SECTIONS
   ============================================================ */

/* --- 1200px breakpoint --- */

@media (max-width: 1200px) {
    .hero-slide-content {
        padding: 0 30px 120px;
    }

    .about-grid,
    .faq-grid,
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-arrows {
        right: 20px;
    }

    .hero-slide-content .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-slide-info {
        flex-direction: row;
        min-width: unset;
    }
}

/* --- 900px breakpoint --- */

@media (max-width: 900px) {
    .projects-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-arrows {
        display: none;
    }

    .hero-slide-title {
        font-size: clamp(24px, 5vw, 40px);
    }

    .hero-slide-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* --- 600px breakpoint (Mobile) --- */

@media (max-width: 600px) {

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

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

    .hero-slide-content {
        padding: 0 16px 75px;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: flex-end;
    }

    .hero-slide-content .container {
        padding: 0;
        gap: 16px;
        width: 100%;
    }

    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-status {
        font-size: 10px;
        padding: 6px 12px;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .hero-slide-status .pulse-dot {
        width: 6px;
        height: 6px;
    }

    .hero-slide-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-slide-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-slide-buttons {
        flex-direction: row;
        gap: 8px;
    }

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

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

    .hero-slide-buttons .btn-outline {
        border-width: 1.5px;
    }

    .hero-slide-info {
        flex-direction: row;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 12px;
        flex-wrap: wrap;
        background: rgba(20,20,20,0.8);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,0.08);
        min-width: unset;
        width: 100%;
    }

    .hero-slide-info-item {
        gap: 8px;
    }

    .hero-slide-info-item span {
        font-size: 12px;
    }

    .hero-slide-info-item svg {
        width: 14px;
        height: 14px;
    }

    .hero-controls {
        bottom: 16px;
        gap: 10px;
    }

    .hero-dot {
        width: 22px;
        height: 3px;
    }

    .hero-counter {
        font-size: 11px;
        min-width: 40px;
    }

    .hero-counter .current {
        font-size: 14px;
    }

    /* Section headings - Mobile */
    .section-header h2,
    .about-content h2,
    .advantages-header h2,
    .testimonials-header h2,
    .faq-content h2,
    .cta-content h2 {
        font-size: 24px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Section padding - Mobile */
    .about { padding: 60px 0; }
    .projects { padding: 60px 0; }
    .advantages { padding: 60px 0; }
    .testimonials { padding: 60px 0; }
    .faq { padding: 60px 0; }
    .cta { padding: 60px 0; }

    .section-header {
        margin-bottom: 25px;
    }

    /* About - Mobile */
    .about-grid {
        gap: 30px;
    }

    .about-image-main {
        height: 300px;
        border-radius: 20px;
    }

    .about-image-secondary {
        width: 140px;
        height: 170px;
        right: -5px;
        bottom: -15px;
        border-width: 4px;
        border-radius: 14px;
    }

    .about-year-badge {
        left: -5px;
        top: 15px;
        padding: 12px 18px;
        border-radius: 10px;
    }

    .about-year-badge .year {
        font-size: 28px;
    }

    .about-year-badge .text {
        font-size: 10px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-feature {
        padding: 14px;
        gap: 12px;
    }

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

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

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

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

    /* Projects - Mobile */
    .projects-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 280px;
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-info {
        font-size: 13px;
    }

    .project-status {
        font-size: 10px;
        padding: 6px 14px;
    }

    .project-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 30px;
    }

    .project-tabs::-webkit-scrollbar {
        display: none;
    }

    .project-tab {
        flex-shrink: 0;
        text-align: center;
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Marquee - Mobile */
    .marquee-section {
        padding: 18px 0;
    }

    .marquee-item {
        font-size: 12px;
        gap: 8px;
        letter-spacing: 1px;
    }

    .marquee-item svg {
        width: 14px;
        height: 14px;
    }

    .marquee-content {
        gap: 35px;
        padding-right: 35px;
    }

    /* Stats Marquee - Mobile */
    .stat-card-number {
        font-size: 36px;
    }

    .stat-card-text {
        font-size: 10px;
        letter-spacing: 1px;
        max-width: 100px;
    }

    .stats-marquee {
        padding: 30px 0;
    }

    .stats-content {
        gap: 50px;
        padding-right: 50px;
    }

    /* Advantages - Mobile */
    .advantages-header {
        margin-bottom: 40px;
    }

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

    .advantage-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .advantage-icon svg {
        width: 24px;
        height: 24px;
    }

    .advantage-card h4 {
        font-size: 15px;
    }

    .advantage-card p {
        font-size: 12px;
    }

    /* Testimonials - Mobile */
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-quote {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }

    .testimonial-info h5 {
        font-size: 14px;
    }

    .testimonial-info span {
        font-size: 12px;
    }

    .testimonial-dots {
        margin-top: 25px;
        gap: 8px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    /* FAQ - Mobile */
    .faq-grid {
        gap: 25px;
    }

    .faq-content p {
        font-size: 14px;
    }

    .faq-image {
        max-width: 100%;
        border-radius: 14px;
    }

    .faq-question {
        font-size: 13px;
        padding: 16px 18px;
        gap: 10px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 13px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .faq-item {
        border-radius: 14px;
    }

    /* CTA - Mobile */
    .cta-content > p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-contact-list {
        gap: 16px;
    }

    .cta-contact-item {
        font-size: 13px;
        gap: 10px;
    }

    .cta-contact-item svg {
        width: 20px;
        height: 20px;
    }

    .cta-map {
        min-height: 280px;
        border-radius: 18px;
    }

    .cta-map iframe {
        min-height: 280px;
    }

    /* Animation speed - Mobile */
    .marquee-track {
        animation-duration: 12s;
    }

    .stats-track {
        animation-duration: 15s;
    }
}

/* --- 380px breakpoint (Small phones) --- */

@media (max-width: 380px) {
    .hero-slide-title {
        font-size: 20px;
    }

    .hero-slide-description {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

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

    .hero-slide-info-item span {
        font-size: 11px;
    }

    .hero-slide-info {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .stat-card-number {
        font-size: 30px;
    }

    .project-image {
        height: 240px;
    }

    .section-header h2,
    .about-content h2,
    .advantages-header h2,
    .testimonials-header h2,
    .faq-content h2,
    .cta-content h2 {
        font-size: 20px;
    }
}

/* --- Landscape on short screens --- */

@media (max-height: 500px) and (orientation: landscape) {
    .hero,
    .hero-slider {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-slide-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-slide-content {
        padding: 0 20px 16px;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: flex-end;
    }

    .hero-slide-content .container {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
    }

    .hero-slide-text {
        max-width: 55%;
    }

    .hero-slide-status {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 4px;
    }

    .hero-slide-status .pulse-dot {
        width: 5px;
        height: 5px;
    }

    .hero-slide-title {
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 4px;
    }

    .hero-slide-description {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-slide-buttons {
        gap: 6px;
    }

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

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

    .hero-slide-buttons .btn-outline {
        border-width: 1.5px;
    }

    .hero-slide-info {
        flex-direction: column;
        gap: 6px;
        padding: 10px 14px;
        border-radius: 10px;
        min-width: unset;
        max-width: 200px;
        background: rgba(20,20,20,0.85);
        backdrop-filter: blur(15px);
    }

    .hero-slide-info-item span {
        font-size: 11px;
    }

    .hero-slide-info-item svg {
        width: 13px;
        height: 13px;
    }

    .hero-controls {
        bottom: 6px;
        gap: 8px;
    }

    .hero-dot {
        width: 18px;
        height: 2px;
    }

    .hero-counter {
        font-size: 10px;
        min-width: 35px;
    }

    .hero-counter .current {
        font-size: 12px;
    }
}
