* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    height: 80px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0d2d2a1;
}

header span {
    color: #00d4a5;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 60px; 
    width: auto;
    border-radius: 8px;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #555;
    text-decoration: none;
    margin-left: 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #00d4a5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

nav a:hover {
    color: #00d4a5;
}

nav a:hover::after {
    width: 100%;
    opacity: 1;
}

nav a:last-child {
    border: 2px solid #00d4a5;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

nav a:last-child::after {
    display: none; 
}

nav a:last-child:hover {
    background: #00d4a5;
    color: #fff;
    transform: translateY(-2px);
}

.btn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-more:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.premium-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.premium-card .btn-more {
    margin-top: 0;
    border-color: #ffd700; 
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #111;
    margin: 5px;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2000') center/cover;
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 35px;
    color: #e0e0e0;
    max-width: 600px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #00d4a5;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

:root{
    --accent: #ff4d4d;
    --text: #222;
    --speed: .25s;
}

.lang-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:18px;
    padding:9px 18px;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.8px;
    color:var(--text);
    background:transparent;
    border:1.8px solid var(--accent);
    border-radius:6px; 
    cursor:pointer;
    transition: all var(--speed) ease;
}

.lang-btn:hover{
    color:var(--accent);
    border-color:var(--accent);
    background:rgba(255,77,77,0.08);
    transform:translateY(-2px);
}

.lang-btn:active{
    transform:translateY(0);
    background:rgba(255,77,77,0.15);
}

@media (max-width:768px){

    .lang-btn{
        margin-top:15px;
        margin-left:0;
        width:150px;
        padding:10px;
    }}

.services {
    padding: 120px 8%;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.sub-title {
    color: #00d4a5;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}

.services-title {
    font-size: 45px;
    font-weight: 900;
    margin-top: 10px;
}

.accent { color: #00d4a5; font-style: italic; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: all 0.5s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.6s;
}

.card:hover .card-image { transform: scale(1.1); }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));
}

.card-body {
    position: absolute;
    bottom: 0;
    padding: 45px;
    color: white;
    z-index: 2;
}

.card-tag {
    background: #00d4a5;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.card-tag.gold { background: #ffd700; }
.card h3 { font-size: 28px; margin-bottom: 10px; }
.card p { font-size: 16px; opacity: 0.8; }

.full-width {
    grid-column: span 2;
    background: #0a0a0a;
    min-height: 500px;
    display: flex;
}

.premium-layout {
    display: flex;
    width: 100%;
    height: 100%;
}

.premium-text {
    flex: 1;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.premium-text h3 { font-size: 45px; margin-bottom: 20px; color: white; }
.premium-text p { color: #aaa; font-size: 18px; margin-bottom: 35px; line-height: 1.7; }

.premium-gallery {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #111;
}

.gallery-item {
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.item-1 { transform: translateY(-20px); }
.item-2 { transform: translateY(20px); }
.gallery-item:hover img { transform: scale(1.1) rotate(2deg); }

.badge-discount {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #f43f5e;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 13px;
    z-index: 10;
}

.wa-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.wa-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.wa-button img {
    width: 30px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

.wa-chat-box {
    width: 280px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.wa-header {
    background: #25D366;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header span{
    cursor: pointer;
}

.wa-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-body input {
    padding: 8px;
    border-radius: 8px;
    border: none;
}

.wa-body button {
    background: #25D366;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}



footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 13px;
}

.contact {
    padding: 100px 8%;
    background: #ffffff;
    margin-top: -100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: 45px;
    font-weight: 900;
    margin: 15px 0;
}

.contact-desc {
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.method-item:hover {
    transform: translateX(10px);
    border-color: #00d4a5;
}

.method-item .icon {
    font-size: 20px;
    color: #00d4a5;
    background: rgba(0, 212, 165, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.method-item h4 { font-size: 11px; text-transform: uppercase; color: #999; }
.method-item p { font-weight: 700; font-size: 17px; }

/* Branding Box (Right) */
.contact-branding-box {
    background: #0a0a0a;
    border-radius: 40px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    margin-bottom: 30px;
}

.float-img{
    max-width: 120px;
    border-radius: 10px;
}

.card-img-top {
    height: 60px;
    margin-bottom: 15px;
}

.card-logo {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-logo span { color: #00d4a5; }

.excellence-text {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin: 10px 0 30px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4a5;
}

.dot {
    width: 7px;
    height: 7px;
    background: #00d4a5;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4a5;
    animation: blink 2s infinite;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-icon-img {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
    overflow: hidden;
}

.social-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon-img:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon-img[aria-label="TikTok"] img {
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}

.circle-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    background: #00d4a5;
    filter: blur(100px);
    opacity: 0.15;
    top: -50px;
    right: -50px;
}

.icon-img-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0; 
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.method-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.method-item:hover .icon-img-box {
    background: rgba(0, 212, 165, 0.15);
    transform: scale(1.05);
}

.method-item:hover .method-img {
    transform: scale(1.1); 
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background: #f9f9f9;
    border-radius: 20px;
    text-decoration: none;
    color: #111;
    transition: 0.3s;
    border: 1px solid transparent; 
}

.method-item:hover {
    background: #ffffff;
    border-color: #00d4a5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* FAQ Static Section */
.faq-static {
    padding: 100px 8%;
    background: #ffffff;
    margin-top: -120px;
}

.faq-static-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-static-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-static-card {
    background: #f3f1f1ca;
    padding: 35px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.faq-static-card:hover {
    background: #fff;
    border-color: #00d4a5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.faq-q-box {
    display: flex;
    align-items: center; 
    gap: 15px;
    margin-bottom: 15px;
}

.faq-logo-box {
    width: 100px;
    height: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-q-box h3 {
    font-size: 19px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
}

.faq-a-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 55px; 
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0; 
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }

.referral-program {
    padding: 100px 5%;
    background-color: #0b0b0b;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.referral-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background: #151515;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #333;
}

.ref-content-side {
    flex: 1;
}

.badge {
    background: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ref-content-side h2 {
    font-size: 3rem;
    margin-top: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
}

.ref-content-side p {
    color: #aaa;
    margin: 20px 0;
    font-size: 1.1rem;
}

.income-info {
    margin: 30px 0;
}

.income-item {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 215, 0, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #ffd700;
}

.your-profit {
    font-weight: bold;
    color: #ffd700;
}

.simple-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.s-step {
    text-align: center;
    flex: 1;
}

.s-step img {
    width: 40px;
    filter: invert(1); 
    margin-bottom: 10px;
}

.s-step p {
    font-size: 0.9rem;
    color: #fff;
}

.btn-cash {
    display: inline-block;
    padding: 18px 40px;
    background: #ffd700;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-cash:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.ref-image-side {
    flex: 1;
}

.money-img-wrapper {
    position: relative;
}

.money-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cash-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffd700;
    color: #000;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: #111;
    margin: 5px;
    transition: all 0.3s ease;
}

/* მობილურზე რომ გამოჩნდეს */
@media (max-width: 900px) {
    .burger {
        display: block !important;
    }
    .ref-content-side h2 {
        font-size: 2rem;
    }
    .ref-image-side {
        margin-top: 40px;
    }
     .faq-static-grid {
        grid-template-columns: 1fr;
    }
    .faq-static-card {
        padding: 25px;
    }
    .faq-static {
        padding: 60px 5%;
    }
    .faq-a-box p {
        padding-left: 0; 
        margin-top: 10px;
    }
    
    nav a:last-child {
    border:none;

}

    .contact-container {
     grid-template-columns: 1fr; 
    }

    .contact { 
    padding: 60px 5%; 
 }

    header {
        padding: 0 5%;
    }

    .burger {
        display: block;
        cursor: pointer;
        z-index: 1100; 
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%; 
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 40px;
        box-shadow: -15px 0 35px rgba(0,0,0,0.1);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    .nav-active {
        transform: translateX(0%);
    }

    nav a {
        margin: 10px 0;
        margin-left: 0;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #111;
        display: block;
    }

    nav a:last-child {
        border-bottom: none;
        background: transparent;
        color: #00d4a5;
        padding: 15px 0;
        border-radius: 0;
        font-weight: 800;
    }

    nav a:last-child:hover {
        background: transparent;
        color: #111;
        transform: none;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: #00d4a5;
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: #00d4a5;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .full-width {
        grid-column: span 1;
        flex-direction: column;
    }

    .card {
        min-height: 350px;
    }

    .premium-layout {
        flex-direction: column;
    }

    .premium-text {
        padding: 40px 25px;
        order: 2;
    }

    .premium-text h3 {
        font-size: 30px;
    }

    .premium-gallery {
        flex: none;
        height: 350px;
        padding: 20px;
        order: 1;
    }

    .item-1, .item-2 {
        transform: translateY(0); 
    }

    .hero h1 {
        font-size: 35px;
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media screen and (max-width:1300px) {
    .hero{
        height: 70vh;
    }
}

@media screen and (max-width:600px) {
    .hero-content{
        margin-top: 50px;
    }
}