/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Georgian', sans-serif;
}

body {
    background-color: #121212;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Colors */
:root {
    --bg-dark: #121212;
    --card-dark: #1E1E1E;
    --gems-blue: #0052FF;
    --emerald-green: #10B981;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
}

.highlight {
    color: var(--gems-blue);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px; /* ოპტიმალური ზომა ნავიგაციისთვის */
    width: auto;
    object-fit: contain;
    border-radius: 8px; /* ოდნავ მომრგვალებული კუთხეები, თუ კვადრატულია */
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gems-blue);
}

.btn-login {
    background-color: var(--emerald-green);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 5% 60px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 450px;
}

/* Pricing Cards */
.pricing {
    padding: 60px 5%;
    text-align: center;
}

.pricing h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: var(--card-dark);
    padding: 30px;
    border-radius: 16px;
    width: 250px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.card h3 {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--gems-blue);
    margin-bottom: 15px;
}

.highlight-card {
    border: 1px solid var(--gems-blue);
}

/* FAQ */
.faq-section {
    padding: 60px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.accordion-btn {
    background-color: var(--card-dark);
    color: var(--text-light);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid #333;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
    margin-top: 10px;
}

.accordion-btn:hover, .accordion-btn.active {
    background-color: #2A2A2A;
}

.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: var(--text-muted);
}

.panel p {
    padding: 15px 0;
}

/* Contact Form */
.contact {
    text-align: center;
    padding: 60px 5% 100px;
}

.contact h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.contact p {
    color: var(--text-muted);
    margin-bottom: 30px;
}



/* Contact Info Styling */
.contact-info {
    max-width: 400px;
    margin: 0 auto 40px auto;
    background-color: var(--card-dark);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item a {
    color: var(--gems-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #003ECC;
    text-decoration: underline;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: var(--card-dark);
    color: white;
    font-size: 16px;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--gems-blue);
}

.btn-submit {
    background-color: var(--gems-blue);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #003ECC;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* მარტივი მობაილისთვის ვმალავთ */
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .video-container iframe {
        height: 250px;
    }
}