/* HoReCa Hero */
.horeca-hero {
    background: linear-gradient(135deg, 
        rgba(36, 45, 57, 0.95) 0%, 
        rgba(58, 71, 87, 0.92) 100%),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920') center/cover;
    min-height: 85vh;
    display: flex;
    flex-direction: column;   /* ელემენტები დალაგდეს ერთმანეთის ქვეშ */
    justify-content: center;  /* ვერტიკალური გაცენტრვა */
    align-items: center;      /* ჰორიზონტალური გაცენტრვა */
    text-align: center;       /* თავად ტექსტის შიდა გაცენტრვა */
}

.horeca-hero .hero-content h1 .highlight {
    color: #ff6b6b;
    position: relative;
    display: inline-block;
}

.horeca-hero .hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.3), transparent);
    border-radius: 4px;
    z-index: -1;
}

.horeca-hero .hero-tagline .highlight {
    color: #4cc9f0;
    font-weight: 700;
}

.horeca-hero .cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.horeca-hero .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff7b7b, #ff9a5c);
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.sector-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.sector-card.hotel-sector:hover {
    border-color: #4cc9f0;
    box-shadow: 0 25px 50px rgba(76, 201, 240, 0.2);
}

.sector-card.restaurant-sector:hover {
    border-color: #ffd166;
    box-shadow: 0 25px 50px rgba(255, 209, 102, 0.2);
}

.sector-card.bar-sector:hover {
    border-color: #9d4edd;
    box-shadow: 0 25px 50px rgba(157, 78, 221, 0.2);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.hotel-sector::before {
    background: linear-gradient(90deg, #4cc9f0, #6ee7b7);
}

.restaurant-sector::before {
    background: linear-gradient(90deg, #ffd166, #ffb347);
}

.bar-sector::before {
    background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.hotel-sector .sector-icon {
    color: #4cc9f0;
}

.restaurant-sector .sector-icon {
    color: #ffd166;
}

.bar-sector .sector-icon {
    color: #9d4edd;
}

.sector-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.sector-description {
    color: #b0b0c0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sector-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4cc9f0;
    margin-bottom: 8px;
    line-height: 1;
}

.hotel-sector .result-value { color: #4cc9f0; }
.restaurant-sector .result-value { color: #ffd166; }
.bar-sector .result-value { color: #9d4edd; }

.result-label {
    color: #8a8aa0;
    font-size: 0.9rem;
}

/* Problems Section */
.problems-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
}

.problems-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 25px 30px;
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.tab-btn[data-tab="hotel"].active::after {
    background: linear-gradient(90deg, #4cc9f0, #6ee7b7);
}

.tab-btn[data-tab="restaurant"].active::after {
    background: linear-gradient(90deg, #ffd166, #ffb347);
}

.tab-btn[data-tab="bar"].active::after {
    background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.tab-content {
    padding: 50px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.problem-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

#hotel .problem-icon {
    background: rgba(76, 201, 240, 0.15);
    color: #4cc9f0;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

#restaurant .problem-icon {
    background: rgba(255, 209, 102, 0.15);
    color: #ffd166;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

#bar .problem-icon {
    background: rgba(157, 78, 221, 0.15);
    color: #9d4edd;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.problem-content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.problem-content p {
    color: #b0b0c0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.problem-impact {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-label {
    color: #8a8aa0;
    font-size: 0.9rem;
}

.impact-value {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1rem;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.solutions-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.solution-tab-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-tab-btn {
    flex: 1;
    padding: 25px 30px;
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.solution-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.solution-tab-btn.active {
    color: white;
}

.solution-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.solution-tab-btn[data-solution="hotel-solution"].active::after {
    background: linear-gradient(90deg, #4cc9f0, #6ee7b7);
}

.solution-tab-btn[data-solution="restaurant-solution"].active::after {
    background: linear-gradient(90deg, #ffd166, #ffb347);
}

.solution-tab-btn[data-solution="bar-solution"].active::after {
    background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.solution-content {
    padding: 50px;
}

.solution-pane {
    display: none;
}

.solution-pane.active {
    display: block;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.solution-subtitle {
    color: #b0b0c0;
    font-size: 1.2rem;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#hotel-solution .feature-card:hover {
    border-color: rgba(76, 201, 240, 0.4);
}

#restaurant-solution .feature-card:hover {
    border-color: rgba(255, 209, 102, 0.4);
}

#bar-solution .feature-card:hover {
    border-color: rgba(157, 78, 221, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

#hotel-solution .feature-icon {
    color: #4cc9f0;
}

#restaurant-solution .feature-icon {
    color: #ffd166;
}

#bar-solution .feature-icon {
    color: #9d4edd;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card p {
    color: #b0b0c0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    color: #8a8aa0;
    font-size: 0.95rem;
}

.result-value {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Stories Section */
.stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.story-card.hotel-story:hover {
    border-color: #4cc9f0;
}

.story-card.restaurant-story:hover {
    border-color: #ffd166;
}

.story-card.bar-story:hover {
    border-color: #9d4edd;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.hotel-story::before {
    background: linear-gradient(90deg, #4cc9f0, #6ee7b7);
}

.restaurant-story::before {
    background: linear-gradient(90deg, #ffd166, #ffb347);
}

.bar-story::before {
    background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.story-type {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.story-type i {
    font-size: 1.2rem;
}

.hotel-story .story-type i { color: #4cc9f0; }
.restaurant-story .story-type i { color: #ffd166; }
.bar-story .story-type i { color: #9d4edd; }

.story-type span {
    color: #b0b0c0;
    font-weight: 500;
    font-size: 0.95rem;
}

.story-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    color: #b0b0c0;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.story-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4cc9f0;
    margin-bottom: 8px;
    line-height: 1;
}

.hotel-story .result-number { color: #4cc9f0; }
.restaurant-story .result-number { color: #ffd166; }
.bar-story .result-number { color: #9d4edd; }

.result-label {
    color: #8a8aa0;
    font-size: 0.9rem;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.story-author strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.story-author span {
    color: #8a8aa0;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 60px 0;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b6b, #9d4edd);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.step-content {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-content p {
    color: #b0b0c0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.step-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail i {
    color: #4cc9f0;
    font-size: 1.1rem;
}

.detail span {
    color: #b0b0c0;
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-cta .cta-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.process-cta .cta-content p {
    color: #b0b0c0;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-cta .cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.process-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 107, 107, 0.4);
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.integration-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-group h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.integration-item i {
    font-size: 1.5rem;
    color: #4cc9f0;
}

.integration-item span {
    color: #b0b0c0;
    font-weight: 500;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 60px 0 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature i {
    color: #00f5d4;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature span {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: white;
    color: #ff6b6b;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: center;
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: center;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 30px;
}

.cta-note i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .sectors-grid,
    .stories-grid,
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .process-flow::before {
        left: 30px;
    }
}

@media (max-width: 992px) {
    .horeca-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tab-buttons,
    .solution-tab-buttons {
        flex-direction: column;
    }
    
    .tab-content,
    .solution-content {
        padding: 30px;
    }
    
    .process-flow::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        gap: 25px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .horeca-hero {
        min-height: 70vh;
    }
    
    .horeca-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .problem-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .sector-results,
    .story-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 400px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .horeca-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature i {
        margin-top: 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

.horeca-hero .hero-subtitle {
    display: block;        /* აიძულებს ელემენტს დაიკავოს ხაზი */
    text-align: center;    /* ტექსტის გაცენტრვა */
    margin-left: auto;     /* ჰორიზონტალური დაშორება მარცხნიდან */
    margin-right: auto;    /* ჰორიზონტალური დაშორება მარჯვნიდან */
    width: 100%;           /* იკავებს სრულ სიგანეს */
    
    /* შენი დანარჩენი სტილები (მაგალითად) */
    font-size: 1.4rem;
    color: #b0e0ff;
    margin-bottom: 2rem;
}
