.business-info {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(13, 110, 253, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.business-info:hover {
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
}

.business-info.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 1.5rem;
}

.business-info.empty .empty-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.business-info.empty .empty-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.business-info.empty .empty-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    text-align: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.business-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.business-info p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0.5rem 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.business-info .category {
    font-weight: 500;
    color: #3cb8e6;
}

.business-info .rating i {
    color: #ffc107;
}

.business-info button {
    background: linear-gradient(135deg, #3CB8E6, #2a9fd6);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.business-info button:hover {
    background: linear-gradient(135deg, #2a9fd6, #1e8bc3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 184, 230, 0.3);
}

/* Hero image container javítása */
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Térkép méretezése mobil nézetben */
#map {
    height: 500px !important;
    width: 100% !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .business-info {
        margin-top: 1.5rem;
    }
    
    .hero-image {
        align-items: flex-start;
    }
    
    #map {
        height: 400px !important;
    }
}

@media (min-width: 1024px) {
    .business-info {
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    #map {
        height: 450px !important;
    }
    
    .mockup-container {
        max-width: 100%;
        width: 100%;
    }
}

.category-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.suggestion-tag {
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.3);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.suggestion-tag:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-1px);
}

.suggestion-tag.hidden {
    display: none;
}

.show-more-btn {
    background: transparent;
    border: 1px solid rgba(60, 184, 230, 0.3);
    color: #6c757d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.show-more-btn:hover {
    background: #3CB8E6;
    border-color: #3CB8E6;
    color: #ffffff;
}

.loading-categories {
    color: #6c757d;
    font-size: 14px;
    padding: 6px 12px;
}

/* Business Solutions Section */
.business-solutions {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.business-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .business-content-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

.badge-business {
    display: inline-block;
    background: rgba(60, 184, 230, 0.1);
    color: #3CB8E6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.business-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.business-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* =========================================
   MODERN HERO REDESIGN (User Facing)
   ========================================= */

.hero {
    background: linear-gradient(135deg, #fcfdff 0%, #f5fafc 100%);
    padding: 6rem 0 3rem;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #3CB8E6;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    width: calc(100% + 10px);
    height: 15px;
    background: rgba(60, 184, 230, 0.15);
    z-index: -1;
    border-radius: 8px;
    transform: rotate(-1deg);
}

.hero-description {
    font-size: 1.15rem;
    color: #5a6a7a;
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Modern Floating Search Bar */
.hero-search {
    margin-bottom: 3rem;
    max-width: 650px;
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    display: flex;
    background: #ffffff;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 15px 40px rgba(60, 184, 230, 0.08);
    border: 1px solid rgba(60, 184, 230, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-container:hover, .search-container:focus-within {
    box-shadow: 0 20px 50px rgba(60, 184, 230, 0.15);
    transform: translateY(-2px);
    border-color: rgba(60, 184, 230, 0.3);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 25px;
}

.search-icon {
    color: #3CB8E6;
    font-size: 1.3rem;
    margin-right: 15px;
    opacity: 0.8;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    color: #2c3e50;
    background: transparent;
    padding: 12px 0;
    font-weight: 500;
    text-align: center;
}

.hero-search-input::placeholder {
    color: #9aa5b1;
    font-weight: 400;
}

.hero-search-btn {
    background: linear-gradient(135deg, #3CB8E6 0%, #29a0d1 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(60, 184, 230, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(60, 184, 230, 0.4);
}

/* Category Pills */
.search-suggestions {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggestion-label {
    font-size: 0.9rem;
    color: #7a8a9a;
    font-weight: 500;
}

.category-suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: #fff;
    border: 1px solid rgba(60, 184, 230, 0.15);
    color: #5a6a7a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.suggestion-tag:hover {
    background: #eef9fd;
    color: #3CB8E6;
    border-color: #3CB8E6;
    transform: translateY(-1px);
}

/* Map Mockup Container */
.mockup-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: transparent;
    border: 10px solid #fff;
    transform: none;
    transition: transform 0.5s ease;
    min-height: 420px;
}

.mockup-container:hover {
}

.map-overlay-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    pointer-events: none;
    font-size: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.05);
    width: max-content;
}

.map-overlay-hint i {
    color: #3CB8E6;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 24px;
        padding: 12px;
    }
    
    .search-input-wrapper {
        padding-left: 10px;
        margin-bottom: 10px;
    }
    
    .hero-search-btn {
        width: 100%;
    }
    
    .mockup-container {
        transform: none;
        margin-top: 2rem;
    }
}

.business-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-small {
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3CB8E6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Business Card Mockup */
.business-card-mockup {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.business-card-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-stat {
    margin-bottom: 2rem;
}

.mockup-stat span {
    color: #6c757d;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mockup-stat h3 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-stat h3 i {
    color: #27c93f;
    font-size: 1.2rem;
}

.mockup-chart {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.chart-bar {
    flex: 1;
    background: #edf2f7;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
}

.chart-bar.highlight {
    background: #3CB8E6;
}

.mockup-integration {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.integration-badge {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.integration-badge i {
    color: #27c93f;
}

/* =========================================
   POPULAR CATEGORIES SECTION
   ========================================= */

.categories-section {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(60, 184, 230, 0.1);
    border-color: rgba(60, 184, 230, 0.3);
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(60, 184, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #3CB8E6;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
    background: #3CB8E6;
    color: #ffffff;
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.category-card p {
    font-size: 0.85rem;
    color: #7a8a9a;
    margin: 0;
}

/* =========================================
   HOW IT WORKS SECTION
   ========================================= */

.how-it-works {
    padding: 6rem 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .how-it-works-content {
        grid-template-columns: 1fr 1fr;
    }
}

.steps-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #eef2f6;
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #3CB8E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #3CB8E6;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px #f8fbff; /* Creates a gap around the line */
}

.step-item:hover .step-number {
    background: #3CB8E6;
    color: #ffffff;
}

.step-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-details p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Phone Mockup (CSS Only) */
.how-it-works-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #2c3e50;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 60px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.app-dots {
    width: 40px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
}

.app-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-calendar-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-calendar-item.active {
    border-color: #3CB8E6;
    background: #f0f9fc;
}

.app-time {
    font-weight: 600;
    color: #2c3e50;
}

.app-info {
    font-size: 0.85rem;
    color: #27c93f;
    font-weight: 500;
}

.app-btn {
    margin-top: auto;
    background: #3CB8E6;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(60, 184, 230, 0.3);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-list::before {
        left: 24px;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
}
