/* ROOT VARIABLES */
:root {
    --brand-teal: #24b8cb;
    --brand-dark: #2f3640;
    --brand-light: #f4f7f6;
    --white: #ffffff;
    --text-dark: #333333;
    --border-light: #e0e0e0;
    --accent-green: #2ecc71;
    --b2c-bar: #24b8cb;
    --b2b-bar: #FF6B6B;
}

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER & NAVIGATION */
header {
    background: var(--white);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--brand-teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--brand-teal);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a {
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.header-icons a:hover {
    transform: scale(1.2);
}

.icon-phone { color: var(--accent-green); }
.icon-fb { color: #1877F2; }
.icon-wa { color: #25D366; }

/* BURGER MENU BUTTON */
.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
}

/* DROPDOWN MENU */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-item.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: var(--brand-light);
    color: var(--brand-teal);
    padding-left: 25px;
}

/* MOBILE MENU */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1999;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 40px 0 0 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list li a {
    display: block;
    padding: 15px 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-nav-list li a:hover {
    color: var(--brand-teal);
    padding-left: 20px;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(36, 184, 203, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1ea3b4;
    transform: translateY(-3px);
}

/* CAROUSEL SECTION - FULLY FLUID (works on every resolution) */
.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.carousel {
    position: relative;
    width: 100%;
    height: auto;
}

.carousel-slide {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 0.5s;
}

.carousel-slide.active {
    display: block;
    position: relative;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Carousel Controls */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 206, 209, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 100;
}

.carousel-button:hover {
    background: rgba(0, 206, 209, 1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: var(--brand-teal);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 480px) {
    .carousel-indicators {
        bottom: 10px;
        gap: 6px; /* დავაპატარაოთ დაშორება */
        width: 90%; /* შევზღუდოთ სიგანე */
        justify-content: center;
        flex-wrap: wrap; /* თუ ვერ დაეტია, გადავიდეს მეორე ხაზზე */
    }

    .indicator {
        width: 8px; /* დავაპატარაოთ წერტილები */
        height: 8px;
    }
}

/* HERO SECTION */
.hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1a1f28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,206,209,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 300;
}

/* SERVICES SECTION */
.services-section {
    padding: 60px 40px;
    background: var(--brand-light);
    min-height: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-teal);
    margin: 15px auto 0;
}

/* CATEGORY SECTIONS */
.services-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.category-bar {
    width: 5px;
    height: 40px;
    border-radius: 3px;
}

.b2c-bar {
    background: var(--b2c-bar);
}

.b2b-bar {
    background: var(--b2b-bar);
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* SERVICE CARDS GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,206,209,0.25);
}

.service-image {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #00b8ba 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-content .service-subtitle {
    font-size: 0.85rem;
    color: var(--brand-teal);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more {
    color: var(--brand-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s;
    gap: 7px;
}

.service-card:hover .read-more {
    gap: 10px;
}

/* Old contact-section removed - now combined with footer */

/* SERVICE PAGE STYLES */
.breadcrumb {
    padding: 20px 40px;
    background: var(--brand-light);
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb a {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-page-hero {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #00b8ba 100%);
    color: var(--white);
    padding: 80px 40px;
    text-align: center;
}

.service-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-page-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-teal);
}

.content-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: var(--brand-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--brand-teal);
}

.feature-card h3 {
    color: var(--brand-teal);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-card ul li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    flex-shrink: 0;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-image {
    background: var(--brand-light);
    border-radius: 10px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-teal);
}

.service-contact {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #00b8ba 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

.service-contact h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-contact h2::after {
    background: var(--white);
}

.service-contact p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: gap 0.3s;
}

.back-button:hover {
    gap: 12px;
}

/* CONTENT PAGES */
.content-section {
    min-height: calc(100vh - 200px);
    padding: 60px 40px;
    background: var(--brand-light);
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.content-section h2 {
    font-size: 2rem;
    margin: 40px 0 30px 0;
    color: var(--text-dark);
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.info-box h3 {
    color: var(--brand-teal);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box ul li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

/* TIPS GRID */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,206,209,0.2);
}

.tip-card i {
    font-size: 3rem;
    color: var(--brand-teal);
    margin-bottom: 20px;
}

.tip-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tip-card p {
    color: #666;
    line-height: 1.8;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--brand-light);
}

.faq-question i {
    color: var(--brand-teal);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    border-top: 2px solid var(--border-light);
    background: rgba(0,206,209,0.05);
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* CONTACT INFO GRID */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.contact-card i {
    font-size: 2.5rem;
    color: var(--brand-teal);
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-card p, .contact-card a {
    color: #666;
}

.contact-card a {
    text-decoration: none;
    color: var(--brand-teal);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #00b8ba;
}

/* CONTACT FORM */
.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-teal);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--brand-teal);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #00b8ba;
    transform: translateY(-2px);
}

/* BLOG */
.blog-post {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.blog-post h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.post-date {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.blog-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* VIDEOS SECTION */
.videos-section {
    padding: 60px 40px;
    background: var(--brand-light);
    min-height: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.video-card iframe {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* FOOTER */
.footer {
    background: #1e242c;
    color: #999;
    padding: 30px 40px 20px;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.footer-links-container {
    display: flex;
    gap: 60px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links li {
    font-size: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-teal);
}

.footer-copyright {
    font-size: 0.8rem;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #333;
}

.cta-button {
    background: var(--accent-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .nav-container {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    header {
        padding: 15px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-links-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }

    .carousel-button {
        padding: 12px 15px;
        font-size: 1.2rem;
    }

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

    .footer-links-container {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .tips-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 25px;
    }

    .blog-post {
        padding: 25px;
    }

    .blog-content p {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ჯერ დავრწმუნდეთ, რომ ჰედერს აქვს ნორმალური სიმაღლე */
header {
    min-height: 80px; /* ან რამდენიც გსურთ, რომ იყოს ჰედერის სიმაღლე */
    display: flex;
    align-items: center;
}

/* ლოგოს კონ���ეინერი */
.logo {
    display: flex;
    align-items: center;
    height: 100%; /* იკავებს ჰედერის სრულ სიმაღლეს */
    padding: 5px 0; /* მცირე დაშორება ზემოდან/ქვემოდან */
}

/* უშუალოდ სურათი */
.logo img {
    height: 100%;    /* იკავებს კონტეინერის სრულ სიმაღლეს */
    max-height: 80px; /* მაგრამ არ აჭარბებს ამ ნიშნულს */
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 480px) {
    header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        font-size: 1.4rem;
        order: 2;
    }

    .nav-container {
        order: 3;
        width: 100%;
    }

    .nav-menu {
        width: 100%;
        gap: 15px;
        justify-content: center;
    }

    .nav-link {
        padding: 5px 8px;
        font-size: 0.9rem;
    }

    .header-icons {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-page-hero h1 {
        font-size: 2rem;
    }

    .service-page-hero {
        padding: 50px 20px;
    }

    .service-page-content {
        margin: 40px auto;
        padding: 0 20px;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-contact {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 10px;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-page-hero h1 {
        font-size: 1.5rem;
    }

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

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .category-header h3 {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .footer-section {
        justify-content: center;
    }

    .footer {
        padding: 25px 15px;
    }

    .footer-links li {
        font-size: 0.8rem;
    }
}


/* --- მობილური ჰედერის სპეციალური გასწორება --- */
@media (max-width: 768px) {
    header {
        display: flex !important;
        flex-direction: row !important; /* აიძულებს ერთ ხაზზე დალაგებას */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
    }

    .burger-menu {
        display: flex !important; /* ვრთავთ ბურგერს */
        order: 1 !important;      /* ვსვამთ მარცხნივ */
        flex: 1 !important;
        justify-content: flex-start !important;
    }

    .logo {
        display: flex !important;
        order: 2 !important;      /* ვსვამთ შუაში */
        flex: 2 !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
        font-size: 1.1rem !important; /* რომ დაეტიოს */
    }

    .header-icons {
        display: flex !important;
        order: 3 !important;      /* ვსვამთ მარჯვნივ */
        flex: 1 !important;
        justify-content: flex-end !important;
        gap: 8px !important;
    }

    /* ვმალავთ დიდ ნავიგაციას მობილურზე */
    .nav-container {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {  
    /* სლაიდერი რჩება სრულად დინამიური - სურათი თავად განსაზღვრავს სიმაღლეს */
    .carousel-container {
        height: auto !important; 
        min-height: auto !important;
        aspect-ratio: auto !important;
    }

    .carousel-slide, 
    .carousel-slide img {
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
    }
} 

/* 1. სერვისების ბარათების გასწორება (რომ 4-ვე ერთ ხაზზე იყოს) */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
}

/* 2. სლაიდერის ერთიანი სრულად მოქნილი (FULLY FLUID) სტილი ყველა ეკრანისთვის */
/* სურათი თავად განსაზღვრავs სიმაღლეს - არანაირი შავი ზოლი და არანაირი მოჭრა ნებისმიერ რეზოლუციაზე */
.carousel-container {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    background-color: #000;
    line-height: 0;
}

.carousel-slide,
.carousel-slide img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}


/* კონტეინერი, რომელიც უზრუნველყოფს გვერდებიდან თანაბარ დაშორებას */
.content-section.container {
    max-width: 1200px; /* საიტის მაქსიმალური სიგანე */
    margin: 0 auto;    /* ცენტრირება */
    padding: 0 20px;   /* გვერდითა დაშორებები (Padding) */
}

/* ტექსტის ბარათი */
.branch-text-card {
    margin-bottom: 40px; /* დაშორება რუკამდე */
    max-width: 400px;    /* ბარათის სიგანე */
}

/* რუკის კონტეინერი */
.full-width-map-container {
    width: 100%;
    display: flex;
    justify-content: center; /* რუკის ცენტრირება */
    margin-top: 20px;
}

/* რუკის სურათის სტილი */
.full-map-img {
    width: 100%;         /* იკავებს მთელ ხელმისაწვდომ სიგანეს */
    height: auto;        /* ინარჩუნებს პროპორციებს */
    max-width: 1000px;   /* შეგიძლიათ შეზღუდოთ მაქსიმალური სიგანე სილამაზისთვის */
    border-radius: 20px; /* მომრგვალებული კუთხეები */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* ჩრდილი */
    display: block;
}

/* მობილურისთვის */
@media screen and (max-width: 768px) {
    .full-map-img {
        border-radius: 10px;
    }
}

/* მობილურისთვის (ეკრანის სიგანე 768px-მდე) */
@media screen and (max-width: 768px) {
    /* იპოვეთ თქვენი რუკის კონტეინერი ან კლასი */
    .map-image-wrapper img, 
    .full-width-map-container img {
        /* 1. სიმაღლე დავაყენოთ ავტომატურზე */
        height: auto !important; 
        
        /* 2. სიგანე იყოს 100%, რომ ეკრანს მოერგოს */
        width: 100% !important; 
        
        /* 3. contain უზრუნველყოფს, რომ ფოტო არასდროს მოიჭრას ან გაიწელოს */
        object-fit: contain !important; 
        
        /* 4. თუ contain-ის გამო გვერდებზე თეთრი ადგილები დარჩება, 
           შეგვიძლია ფონი შავი გავაკეთოთ, როგორც Slider-ში */
        background-color: #000;
        border-radius: 8px; /* ოდნავ მომრგვალება სილამაზისთვის */
    }

    /* თუ ფოტო კონტეინერის გარეთ გადის, კონტეინერსაც დავუწეროთ: */
    .map-image-wrapper, 
    .full-width-map-container {
        height: auto !important;
        overflow: hidden;
    }
}

/* გალერეის სტილები */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* ავტომატური სვეტები */
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* სურათი არ გაიწელოს */
    transition: transform 0.5s ease;
}

/* მაუსის მიტანის ეფექტი */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 168, 255, 0.4); /* ლურჯი გამჭვირვალე ფონი */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 30px;
}

.gallery-item:hover img {
    transform: scale(1.1); /* სურათის ოდნავ გაზრდა */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* ფონის გამოჩენა */
}

/* მობილურისთვის */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* მობილურზე თითო სურათი რიგში */
    }
}
/* გალერეის ბადე */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* თითოეული ფოტოს ბლოკი */
.gallery-item {
    position: relative;
    height: 250px; /* ყველა ფოტო იქნება ერთი სიმაღლის */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #f0f0f0;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ფოტო ივსება ისე რომ არ გაიწელოს */
    transition: transform 0.5s ease;
}

/* ეფექტი მაუსის მიტანისას */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 168, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-overlay i {
    color: white;
    font-size: 30px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ვაიძულებთ Lightbox-ის ღილაკებს გამოჩნდეს ყველაფერზე ზემოთ */
.lb-data .lb-close, .lb-prev, .lb-next {
    opacity: 1 !important;
    display: block !important;
}

.lightboxOverlay {
    z-index: 99999 !important; /* რომ დარწმუნდეთ, რომ ჰედერი არ ფარავს */
}

.lightbox {
    z-index: 100000 !important;
}

.pricing-page {
    background-color: #f4f7f6; /* Light grey background like in photo 1 */
    padding: 60px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.card-title {
    color: #00a8b5; /* Teal color from photo 1 */
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.second-title {
    margin-top: 40px;
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Bottom line for each item */
    display: flex;
    align-items: center;
}

.pricing-list li i {
    color: #2ecc71; /* Green checkmark */
    margin-right: 15px;
}

.pricing-list.no-border li {
    border-bottom: none;
}

.pricing-footer {
    text-align: center;
    margin-top: 30px;
}

.pricing-footer-center {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.pricing-footer-center a {
    color: #6156ac; /* Matches the color in your photo */
    text-decoration: underline;
    font-weight: bold;
}


/* Comparison Section */
.comparison-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

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

.comparison-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.comparison-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.comparison-card i {
    color: #3498db;
    margin-right: 10px;
}

/* Tip Cards */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tip-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}

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

.status-tags {
    margin-bottom: 15px;
}

.tag-red { color: #e74c3c; font-weight: bold; margin-right: 10px; }
.tag-green { color: #27ae60; font-weight: bold; }

.mini-list {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
}

.mini-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.mini-list li::before {
    content: "•";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.cta-banner {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
}

.brand-text {
    color: #27ae60;
    font-weight: 500;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.common-traits {
    background: #fdfdfd;
    padding: 15px;
    border-left: 4px solid #3498db;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tag-red { color: #e74c3c; font-weight: bold; }
.tag-green { color: #27ae60; font-weight: bold; }

.mini-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* პასუხის საწყისი მდგომარეობა */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    padding: 0 20px; /* თავიდან პადინგი ნულია */
}

/* როცა პასუხს ემატება კლასი .active */
.faq-answer.active {
    max-height: 500px; /* საკმარისი სიმაღლე */
    opacity: 1;
    padding: 15px 20px; /* აქ ჩნდება დაშორებები */
}

/* კითხვის ღილაკის სტილი, როცა ის აქტიურია */
.faq-question.active {
    background-color: #f8f9fa; /* მაგალითად, ოდნავ იცვლის ფერს */
}

/* ისრის შეტრიალება */
.faq-question.active i {
    transform: rotate(180deg);
}

/* ისრის ანიმაცია */
.faq-question i {
    transition: transform 0.3s ease;
}

.text-center {
    text-align: center;
    width: 100%;
    margin-top: 30px; /* დაშორება ზედა ბლოკიდან */
    margin-bottom: 30px; /* დაშორება ფუტერიდან */
}

.text-center p {
    font-size: 1rem;
    color: #666;
}

.text-center a {
    color: #27ae60;
    text-decoration: underline;
    font-weight: bold;
}

/* Accordion ძირითადი კონტეინერი */
.tips-accordion-section {
    max-width: 900px;
    margin: 0 auto;
}

.main-section-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #00b4d8;
    padding-bottom: 10px;
}

/* თითოეული ელემენტის ბლოკი */
.accordion-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item[open] {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-color: #00b4d8;
}

/* სათაურის ზოლი, რომელზეც ხდება კლიკი */
.accordion-header {
    padding: 18px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    list-style: none; /* აქრობს ბრაუზერის სტანდარტულ ისარს */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background: #fdfdfd;
}

.accordion-header::-webkit-details-marker {
    display: none; /* Safari-სთვის სტანდარტული ისრის გაქრობა */
}

.accordion-header:hover {
    background: #f5fafd;
    color: #00b4d8;
}

/* ისრის ანიმაცია კლიკის დროს */
.arrow-icon {
    transition: transform 0.3s ease;
    color: #888;
}

.accordion-item[open] .arrow-icon {
    transform: rotate(180deg);
    color: #00b4d8;
}

/* ჩამოშლილი კონტენტის შიდა სივრცე */
.accordion-content {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #ffffff;
    line-height: 1.6;
}

/* თეგების სტილი მითებისთვის */
.status-tags .tag-red {
    color: #d90429;
    font-weight: bold;
    font-size: 16px;
}

.status-tags .tag-green {
    color: #2b9348;
    font-weight: bold;
    font-size: 16px;
}

.brand-text {
    margin-top: 15px;
    font-style: italic;
    color: #2b9348;
}
