/* Apple stílusú design - Időpontfoglaló rendszer */

:root {
    --primary: #0071e3;
    --primary-hover: #0077ed;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --text-color: #1d1d1f;
    --text-secondary: #86868b;
    --light-bg: #f5f5f7;
    --white: #ffffff;
    --border-radius: 18px;
    --transition: all 0.3s ease;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #0dcaf0;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Alap stílusok */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

/* Gombok globális stílusai */
.btn-primary, .btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
}

.btn-primary:hover, .btn.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff !important;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
}

/* Időpontfoglaló Banner Stílusok */
.booking-banner-section {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f7;
    border-radius: 24px;
    margin: 3rem 0;
}

.booking-banner-content {
    position: relative;
    z-index: 2;
}

.booking-banner-image img {
    transition: transform 0.5s ease;
}

.booking-banner-image:hover img {
    transform: scale(1.03);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-feature {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.booking-feature i {
    font-size: 1.2rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .booking-banner-section {
        border-radius: 16px;
        margin: 2rem 0;
    }
    
    .booking-banner-content {
        text-align: center;
    }
    
    .booking-features {
        align-items: center;
    }
}

/* Kiknek ajánljuk szekció - Minimal Design */
.for-who-section {
    background-color: #f5f5f7;
    padding: 4rem 0;
}

/* Service Box */
.service-box {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1d1d1f;
}

.service-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.service-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Minimal gomb */
.btn-minimal {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background-color: var(--primary);
    color: white;
}

.btn-minimal-large {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-minimal-large:hover {
    background-color: #0071e3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Szolgáltató tagek */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-tag {
    background-color: #ffffff;
    color: #1d1d1f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid #e6e6e6;
}

.service-tag:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Szolgáltató pillék */
.provider-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.provider-pill {
    background-color: #ffffff;
    color: #1d1d1f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid #e6e6e6;
}

.provider-pill:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Apple-stílusú feature elemek */
.apple-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.apple-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary), #0077ed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 113, 227, 0.2);
}

.apple-feature-text {
    flex: 1;
}

.apple-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: #1d1d1f;
}

.apple-feature-text p {
    font-size: 0.9rem;
    color: #86868b;
    margin: 0;
    line-height: 1.4;
}

/* Hover effekt a feature elemekhez */
.apple-feature-item:hover .apple-feature-icon {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 113, 227, 0.3);
}

.apple-feature-item:hover .apple-feature-text h4 {
    color: var(--primary);
}

@media (max-width: 768px) {
    .apple-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .apple-feature-icon {
        margin-bottom: 0.5rem;
    }
}

/* Elakadtál? Kérdésed van? szekció stílusok */
.contact-help-section {
    margin: 5rem 0;
}

.contact-help-container {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-help-content {
    position: relative;
    z-index: 2;
}

.contact-help-content h2 {
    color: #1d1d1f;
    font-size: 2.5rem;
    line-height: 1.2;
}

.contact-help-content h3 {
    color: #1d1d1f;
    font-weight: 500;
}

.contact-help-content p {
    color: #86868b;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-help-image {
    background-image: url('/image/foglalj-idopontot.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

/* Diagonális elválasztó */
.contact-help-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    background: #ffffff;
    width: 100px;
    transform: skewX(-10deg);
    transform-origin: top;
    z-index: 1;
}

@media (max-width: 992px) {
    .contact-help-container:before {
        display: none;
    }
    
    .contact-help-image {
        min-height: 300px;
    }
    
    .contact-help-content h2 {
        font-size: 2rem;
    }
    
    /* Mobilbarát stílusok a minimális designhoz */
    .service-box {
        margin-bottom: 2rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-list li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-minimal {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-minimal-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-tags {
        padding: 0 1rem;
    }
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.service-tag {
    background-color: #ffffff;
    color: #1d1d1f;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .services-showcase-section {
        border-radius: 16px;
        padding: 2rem 0;
    }
    
    .service-card-image img {
        height: 200px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Navigációs gombok stílusai */
.navbar .btn {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.navbar .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.navbar .btn-outline-primary {
    background-color: transparent;
    color: #ffffff;
    border-color: var(--primary);
}

.navbar .btn-outline-primary:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Hero háttér */
.hero-background {
    background: linear-gradient(135deg, #000000 0%, #444444 100%);
    position: relative;
    overflow: hidden;
}

.hero-background h1 {
    background: linear-gradient(90deg, #6a11cb, #fc466b, #3f5efb, #6a11cb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-weight: 700;
    background-size: 300% 100%;
    animation: gradient-text 8s ease infinite;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background p {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-background .text-white-50 {
    color: rgba(255,255,255,0.8) !important;
}

/* Színes gombok */
.btn-gradient-primary {
    background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.5);
    color: white;
}

.btn-gradient-secondary {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.4);
}

.btn-gradient-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 147, 176, 0.5);
    color: white;
}

/* Fejléc - Fekete átlátszó */
.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Apple-stílusú hamburger menü gomb */
.apple-menu-btn {
    border: none !important;
    background-color: transparent !important;
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.apple-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.apple-menu-btn:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
    outline: none !important;
}

.apple-menu-icon {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.apple-menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animáció a hamburger menü gombhoz, amikor nyitva van */
.navbar-toggler[aria-expanded="true"] .apple-menu-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .apple-menu-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .apple-menu-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-link {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero rész */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.hero .lead {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.2);
    color: #ffffff !important;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 113, 227, 0.3);
}

.hero-buttons .btn-outline-primary {
    border-width: 2px;
    background: white;
    color: var(--primary);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Megbízhatósági elemek */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 113, 227, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.trust-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
}

/* Hero kép stílusok */
.hero-img-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
}

.hero-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    animation: float 6s ease-in-out infinite;
}

.hero-badge-content {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* iPhone bemutató kártyák */
.iphone-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.iphone-card {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    background-color: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

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

.card-header {
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: left;
}

@media (max-width: 768px) {
    .card-header {
        text-align: center;
    }
}

.card-label {
    font-size: 0.85rem;
    color: #6e6e73;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
    line-height: 1.2;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: auto;
}

.card-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Szolgáltatói kártya stílusok */
.provider-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.provider-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.provider-card-header {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.provider-card-header-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: rgba(255, 255, 255, 0.8);
}

/* Színátmenetes hátterek a különböző szolgáltatásokhoz */
.gradient-purple {
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
}

.gradient-pink {
    background: linear-gradient(135deg, #FF6CAB, #7366FF);
}

.gradient-green {
    background: linear-gradient(135deg, #0BAB64, #3BB78F);
}

.gradient-orange {
    background: linear-gradient(135deg, #FF8359, #FFDF40);
}

.gradient-blue {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.gradient-teal {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.gradient-red {
    background: linear-gradient(135deg, #f85032, #e73827);
}

.gradient-indigo {
    background: linear-gradient(135deg, #4776E6, #8E54E9);
}

.provider-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.provider-card-modern:hover .provider-card-header img {
    transform: scale(1.05);
}

.provider-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.provider-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.provider-rating-badge i {
    color: #ffc107;
}

.provider-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.provider-card-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.provider-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    border: 2px solid #f0f0f0;
}

.provider-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card-avatar i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
    font-size: 24px;
}

.provider-card-name {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 4px 0;
    color: #333;
}

.provider-card-business {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.provider-card-meta {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.provider-card-meta i {
    margin-right: 8px;
    color: #999;
}

.provider-card-action {
    margin-top: auto;
    padding-top: 15px;
}

.elegant-section {
    padding: 2rem 0 3rem;
    color: #1d1d1f;
}

.card-dark .card-icon-container {
    color: #f5f5f7;
}

.card-action {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.action-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.action-circle:hover {
    transform: scale(1.1);
    background-color: #333;
}

.action-plus {
    background-color: #000;
}

/* Különböző színű kártyák */
.card-blue {
    background-color: #f0f4ff;
}

.card-dark {
    background-color: #1d1d1f;
    color: #f5f5f7;
}

.card-dark .card-title,
.card-dark .card-label {
    color: #f5f5f7;
}

.card-gold {
    background-color: #faf6e9;
}

.card-light {
    background-color: #f5f5f7;
}

/* Színes kártyák - erősebb színek */
.card-red {
    background-color: #FF3B30;
    color: white;
    border: none;
}

.card-red .card-title,
.card-red .card-label {
    color: white;
}

.card-purple {
    background-color: #5856D6;
    color: white;
    border: none;
}

.card-purple .card-title,
.card-purple .card-label {
    color: white;
}

.card-teal {
    background-color: #5AC8FA;
    color: white;
    border: none;
}

.card-teal .card-title,
.card-teal .card-label {
    color: white;
}

.card-orange {
    background-color: #FF9500;
    color: white;
    border: none;
}

.card-orange .card-title,
.card-orange .card-label {
    color: white;
}

/* Reszponzív beállítások */
@media (max-width: 767.98px) {
    .iphone-card {
        min-width: 100%;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}

/* Elegáns színes widget */
.elegant-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.elegant-widget {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.elegant-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.elegant-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.widget-gradient-1 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    color: #1d1d1f;
}

.widget-gradient-2 {
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 50%, #FFCC70 100%);
    color: white;
}

.widget-gradient-3 {
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    color: white;
}

.widget-gradient-4 {
    background: linear-gradient(135deg, #8EC5FC 0%, #E0C3FC 100%);
    color: #1d1d1f;
}

.widget-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.widget-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.widget-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.widget-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
}

.widget-link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.widget-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .elegant-widget {
        min-width: 100%;
    }
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 113, 227, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 0.75rem;
}

.hero-badge h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-badge p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Reszponzív beállítások */
@media (max-width: 991.98px) {
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .apple-widget {
        margin-bottom: 2rem;
    }
    
    .widget-title {
        font-size: 1.5rem;
    }
    
    .hero .lead {
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .hero-img-container {
        margin-top: 3rem;
    }
}

/* Gombok */
.btn {
    border-radius: 980px;
    padding: 0.6rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Szolgáltatás kártyák */
.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Ár és gomb elrendezése */
.service-body > div:last-child {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Értékelések */
.text-warning {
    color: #ffc107 !important;
}

/* Badge stílusok */
.badge {
    font-weight: 600;
    padding: 0.5em 0.8em;
    border-radius: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

/* Szakaszok */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Kapcsolati űrlap */
.contact-form .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 113, 227, 0.25);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: vertical;
}

/* Lábléc */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

footer h5, footer h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    padding-left: 5px;
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Reszponzív stílusok */
@media (max-width: 991.98px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero::before {
        width: 100%;
        opacity: 0.2;
        border-radius: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p.lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    /* Fejléc mobilnézetben */
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar .btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.9rem;
    }
    
    /* Hero és widget mobilnézetben */
    .hero {
        text-align: center;
        padding: 5rem 0 3rem;
    }
    
    .apple-widget {
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.35rem;
    }
    
    .widget-body {
        padding: 0.5rem 1.25rem 1.25rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    footer {
        text-align: center;
    }
    
    footer .text-md-end {
        text-align: center !important;
        margin-top: 2rem;
    }
}

/* Ügyfél regisztrációs oldal stílusok */
.login-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
}

.login-card-header {
    margin-bottom: 2rem;
}

.login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0071e3, #40a9ff);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-col {
    flex: 1;
}

.form-card {
    background-color: rgba(245, 247, 250, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d;
    text-align: center;
    white-space: nowrap;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.5rem 0 0 0.5rem;
    border-right: none;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0 0.5rem 0.5rem 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Egyedi görgetési sáv */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Animációk */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Apple-style Hero Section */
.apple-hero {
    position: relative;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-color: #000;
    background-image: url('https://images.pexels.com/photos/3243090/pexels-photo-3243090.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-hero {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.btn-hero-text {
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-text:hover {
    color: rgba(255,255,255,0.8);
}

.hero-features {
    background-color: #fff;
    padding: 4rem 0;
    margin-top: -2rem;
    border-radius: 2rem 2rem 0 0;
    position: relative;
    z-index: 3;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

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

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.feature-text p {
    font-size: 1rem;
    color: #6e6e73;
    margin: 0;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Registration Form Styles */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 33.333%;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8e8e93;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #8e8e93;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    border-color: #007aff;
    background-color: #007aff;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.step.active .step-label {
    color: #007aff;
    font-weight: 600;
}

.step.completed .step-icon {
    border-color: #4cd964;
    background-color: #4cd964;
    color: #fff;
}

.step.completed .step-label {
    color: #4cd964;
}

.form-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1d1d1f;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f5f5f7;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input .phone-prefix {
    width: 180px;
    flex-shrink: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007aff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
    background-color: #fff;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
}

.form-check-label {
    font-weight: normal;
    cursor: pointer;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input,
.checkbox-group input {
    margin-right: 10px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #007aff;
    color: #007aff;
}

.btn-primary {
    background-color: #007aff;
    border: none;
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(0, 122, 255, 0.1);
}

.btn-primary:hover {
    background-color: #0066cc;
}

.salon-types {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.salon-type-item {
    position: relative;
}

.salon-type-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.salon-type-item label {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #f5f5f7;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.salon-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #007aff;
    transition: all 0.3s;
}

.salon-type-item label:hover {
    background-color: #e5e5ea;
}

.salon-type-item input[type="checkbox"]:checked + label {
    background-color: rgba(0, 122, 255, 0.1);
    border-color: #007aff;
}

.salon-type-item input[type="checkbox"]:checked + label .salon-type-icon {
    background-color: #007aff;
    color: #fff;
}

/* Utility classes */
.d-flex {
    display: flex;
}

.gap-4 {
    gap: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.fw-bold {
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .salon-type-item label {
        font-size: 14px;
    }
}

/* Login Page Styles */
.login-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.login-card-header {
    margin-bottom: 25px;
}

.login-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.login-icon i {
    font-size: 40px;
    color: #007aff;
}

.login-provider-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-provider-icon i {
    font-size: 24px;
    color: #007aff;
}

.text-sm {
    font-size: 14px;
}

.text-primary {
    color: #007aff !important;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #8e8e93;
    text-align: center;
    white-space: nowrap;
    background-color: #f5f5f7;
    border: 1px solid #e0e0e0;
    border-radius: 12px 0 0 12px;
    border-right: none;
}

.input-group .form-control {
    border-radius: 0 12px 12px 0;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.staff-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.staff-option input[type="radio"] {
    display: none;
}

.staff-card {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    background-color: #f5f5f7;
}

.staff-option input[type="radio"]:checked + label .staff-card {
    border-color: #007aff;
    background-color: rgba(0, 122, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.1);
}

.staff-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.staff-avatar i {
    font-size: 30px;
    color: #8e8e93;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    flex-grow: 1;
}

.staff-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
}

.staff-info p {
    margin: 0;
    color: #8e8e93;
    font-size: 14px;
}

.staff-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    margin-left: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.staff-option input[type="radio"]:checked + label .staff-check {
    background-color: #007aff;
    color: #fff;
    transform: scale(1.1);
}

.alert-danger {
    background-color: #ffebee;
    color: #d32f2f;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

@media (max-width: 767.98px) {
    .login-card {
        padding: 20px;
    }
    
    .staff-info h3 {
        font-size: 16px;
    }
    
    .staff-avatar {
        width: 50px;
        height: 50px;
    }
}
