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

#sec-four { background-color: #faf9f6; }
#sec-five { background-color: #faf9f6; }

#sec-two h2 {
    font-family: 'BPG_Header', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a1a1a;
    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%);
}