/* ==========================================================================
   გლობალური სექციების კონტროლი
   ========================================================================== */
.full-page-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#sec-three { background-color: #161616; }
#sec-four { background-color: #1c1c1c; }
#sec-five { background-color: #222222; }

#sec-two h2 {
    font-family: 'BPG_Header', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    padding-left: 50px;
}

/* ==========================================================================
   ჰერო სექცია და ვიდეო ბექგრაუნდი
   ========================================================================== */
#sec-hero { 
    position: relative; 
    background-color: #0d0d0d; 
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #0d0d0d;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity, transform;
}

#hero-video.video-ready { 
    opacity: 1; 
}

/* ვიდეოს მუქი გადაფარვა (Overlay) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

/* ჰეროს ტექსტური კონტენტი და ღილაკი (ცენტრირებული ფორმატი) 🎯 */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;       /* სინქრონიზაცია ფუტერის/სექციების 1200px ბადესთან */
    padding: 0 40px;         /* სინქრონიზაცია ფუტერის დაცვასთან */
    margin: 0 auto;
    display: flex;
    justify-content: center; /* გასწორდა ცენტრში flex-start-ის ნაცვლად */
}

.hero-text-content { 
    width: 100%;
    text-align: center;      /* ტექსტის შიდა გაცენტრება */
}

.hero-subtitle {
    font-family: 'BPG_Header', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a880;
    display: inline-block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

/* ორი ხაზის კონტეინერი */
.hero-title {
    font-family: 'BPG_Header', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ზედა ხაზი: წვრილი შიფტი */
.hero-title__top {
    font-weight: 300;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    letter-spacing: 6px;
    line-height: 1.2;
}

/* ქვედა ხაზი: მსხვილი შიფტი */
.hero-title__bottom {
    font-weight: 800;
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    letter-spacing: 4px;
    line-height: 1.1;
    margin-top: 5px;
}

/* GSAP ტექსტის ანიმაციის მასკები */
.anim-mask {
    display: block;
    overflow: hidden;
    position: relative;
}

.anim-line {
    display: block;
    will-change: transform;
}

.hero-description {
    font-family: 'Arial_Geo', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

/* პრემიუმ ეფექტიანი ღილაკი */
.btn-premium {
    font-family: 'Arial_Geo', sans-serif;
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: border-color 0.4s ease, color 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.btn-premium span {
    position: relative;
    z-index: 2;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.btn-premium:hover { 
    border-color: #ffffff; 
    color: #000000; 
}

.btn-premium:hover::before { 
    left: 0; 
}

/* ვიდეოს კონტროლები და სქროლის ხაზი */
.hero-video-controls { 
    position: absolute; 
    bottom: 40px; 
    right: 50px; 
    z-index: 4; 
}

.control-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.control-btn:hover { 
    background-color: #ffffff; 
    color: #000000; 
    border-color: #ffffff; 
}

.hidden { 
    display: none !important; 
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background-color: rgba(255,255,255,0.1);
    z-index: 4;
    overflow: hidden;
}

.scroll-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c5a880;
    transform: translateY(-100%);
}

/* ==========================================================================
   სექცია 2 - ODA სტატისტიკა
   ========================================================================== */
.sec-two {
    padding: 140px 0;
    background-color: #111111;
    color: #ffffff;
    overflow: hidden;
}

.sec-two__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.sec-two__subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b0b0b0;
    margin-bottom: 20px;
    padding-left: 50px;
}

.sec-two__title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.sec-two__text {
    font-size: 17px;
    line-height: 1.75;
    color: #cdcdcd;
    max-width: 540px;
    margin-bottom: 50px;
    padding-left: 50px;
}

/* ინტერაქტიული ქაუნთერები */
.sec-two__stats {
    display: flex;
    gap: 60px;
    padding-left: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
    font-size: 32px;
    vertical-align: super;
    color: #b0b0b0;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8a8f;
}

/* ასიმეტრიული ორმაგი გალერეა */
.sec-two__gallery {
    position: relative;
    width: 100%;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.overflow-hidden {
    overflow: hidden;
}

.main-img-box {
    width: 85%;
    height: 550px;
}

.main-img-box img, .sub-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sub-img-box {
    position: absolute;
    width: 55%;
    height: 350px;
    left: 0;
    bottom: -50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 4px solid #000000;
}

/* ==========================================================================
   მედია ქუერები (რესპონსივი)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .full-page-section {
        height: auto;
        min-height: 100svh;
        padding: 140px 0 60px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #sec-two h2 {
        padding-left: 0 !important;
        text-align: center;
    }

    /* ჰეროს მობილურის ადაპტაცია (ცენტრირებული ფორმატი) 🎯 */
    .hero-container { 
        display: flex !important; 
        justify-content: center !important; 
        width: 100% !important; 
        padding: 0 24px !important; 
    }

    .hero-text-content { 
        max-width: 100% !important; 
        text-align: center !important; /* გასწორდა ცენტრში მობილურზეც */
    }

    .hero-title { 
        margin-bottom: 20px; 
    }

    .hero-title__top {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .hero-title__bottom {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .hero-description { 
        font-size: 0.95rem; 
        line-height: 1.6; 
        margin-bottom: 35px; 
    }

    .btn-premium { 
        width: 100%; 
        text-align: center; 
    }

    .hero-video-controls { 
        bottom: 25px; 
        right: 24px; 
    }

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

    /* სექცია 2-ის მობილურის ცენტრირება */
    .sec-two {
        padding: 60px 0 100px 0;
    }

    .sec-two__container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px !important;
    }

    .sec-two__subtitle {
        text-align: center;
        width: 100%;
        padding-left: 0px;
    }

    .sec-two__title {
        text-align: center;
        width: 100%;
        padding-left: 0 !important;
    }

    .sec-two__text {
        text-align: center;
        margin: 0 auto 40px auto !important;
        width: 100%;
        padding-left: 0px;
    }

    .sec-two__stats {
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        gap: 30px; 
        padding-left: 0px;
    }

    .stat-item {
        align-items: center;
        text-align: center;
    }

    /* გალერეის მობილურის ზომები */
    .sec-two__gallery {
        margin-top: 20px;
    }

    .gallery-wrapper {
        justify-content: center;
    }

    .main-img-box {
        width: 100%;
        height: 340px;
    }

    .sub-img-box {
        width: 55%;
        height: 200px;
        bottom: -40px;
        left: 5%;
    }
}

/* ==========================================================================
   SECTION FOUR (PREMIUM FEATURES GRID)
   ========================================================================== */
.section-four {
    background-color: #0d0d0d; 
    color: #ffffff;
    padding: 120px 0;
    border-top: 1px solid #1a1a1a;
}

.section-four__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; 
}

/* სექციის ზედა ნაწილი */
.section-four__header {
    margin-bottom: 80px;
}

.section-four__subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666666;
    display: block;
    margin-bottom: 12px;
}

.section-four__title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* გრიდის სისტემა - 3 თანაბარი სვეტი */
.section-four__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

/* თითოეული უპირატესობის ბლოკი */
.section-four__item {
    border-top: 1px solid #1a1a1a; 
    padding-top: 30px;
    transition: transform 0.3s ease;
}

.section-four__item:hover {
    transform: translateY(-5px); 
}

/* დიდი მინიმალისტური ციფრები */
.section-four__number {
    font-size: 14px;
    font-weight: 700;
    color: #555555;
    display: block;
    margin-bottom: 20px;
    font-family: monospace; 
}

.section-four__item-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-four__item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
}

/* ==========================================================================
   📱 რესპონსივი მობილურებისთვის
   ========================================================================== */
@media (max-width: 992px) {
    .section-four__grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .section-four {
        padding: 80px 0;
    }

    .section-four__container {
        padding: 0 20px; 
    }

    .section-four__header {
        margin-bottom: 50px;
    }

    .section-four__title {
        font-size: 26px;
    }
}