
/* Landing Page Styles */
body.landing-page {
    overflow-x: hidden;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hex-logo {
    width: 40px;
    height: 40px;
    position: relative;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 60%;
    height: 60%;
}

.hex-dot {
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    border-radius: 2px;
}

.brand-name {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logout-btn {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
                url('two.jpg') center/cover no-repeat;
    filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-scissors {
    font-size: 40px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 24px;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 20px 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
    margin: 20px 0;
}

.hero-divider {
    width: 200px;
    height: 2px;
    background: white;
    margin: 30px auto;
    opacity: 0.8;
}

.btn-primary {
    background: #2a2a2a;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.hero-side-buttons {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
}

.btn-orange {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
    border-radius: 4px;
}

.btn-orange:hover {
    background: #ff7b45;
    transform: translateX(-5px);
}

.btn-blue {
    background: #5dade2;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
    border-radius: 4px;
}

.btn-blue:hover {
    background: #6dbde5;
    transform: translateX(-5px);
}

.hex-logo-small {
    width: 20px;
    height: 20px;
    position: relative;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-inner-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 60%;
    height: 60%;
}

.hex-dot-small {
    width: 100%;
    height: 100%;
    background: #5dade2;
    border-radius: 1px;
}

.signup-btn {
    position: fixed;
    top: 80px;
    right: 40px;
    background: #c9a23f;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    transition: background 0.3s, transform 0.2s;
    border-radius: 4px;
}

.signup-btn:hover {
    background: #d9b24f;
    transform: translateY(-2px);
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.chat-widget:hover {
    transform: scale(1.1);
}

.chat-widget i {
    color: white;
    font-size: 24px;
}

/* Sign Up Modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 0.7;
}

.modal-content h2 {
    color: white;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input,
.modal-content select {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 5px;
    font-size: 14px;
}

.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: #c9a23f;
}

.btn-submit {
    background: #c9a23f;
    color: white;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d9b24f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-side-buttons {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: row;
        padding: 15px 20px;
        position: relative;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.nav-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav a {
        padding: 12px 15px;
        border-radius: 5px;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .header-right {
        display: none;
    }
    
    /* Show user info and social icons in mobile menu */
    .main-nav::after {
        content: '';
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        padding-top: 15px;
    }
    
    /* Mobile menu user info section */
    .mobile-user-info {
        display: block;
        padding: 15px;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-user-info .user-name {
        color: white;
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }
    
    .mobile-user-info .logout-btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 15px;
        justify-content: center;
        padding: 15px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-icons a {
        color: white;
        font-size: 20px;
        padding: 0;
        width: auto;
        display: inline-block;
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Adjust padding for mobile sections */
    .hero-section,
    .services-hero,
    .events-welcome-section,
    .hire-section,
    .employer-panel-section,
    .auth-section {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .hero-side-buttons {
        display: none;
    }
    
    .signup-btn {
        top: auto;
        bottom: 100px;
        right: 20px;
    }
}

/* Sign Up / Login Page Styles */
.brand-name-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.auth-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    filter: blur(3px);
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.auth-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: #c9a23f;
    border-bottom-color: #c9a23f;
}

.auth-tab:hover {
    color: white;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .hex-logo-small {
    margin: 0 auto 15px;
}

.auth-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 15px 0 10px;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a23f;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #c9a23f;
}

.forgot-password {
    color: #c9a23f;
    text-decoration: none;
    transition: opacity 0.3s;
}

.forgot-password:hover {
    opacity: 0.7;
}

.btn-auth-submit {
    width: 100%;
    background: #c9a23f;
    color: white;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-auth-submit:hover {
    background: #d9b24f;
    transform: translateY(-2px);
}

.auth-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    display: none;
}

.auth-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.auth-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Services Page Styles */
.nav-active {
    background: #c9a23f !important;
    padding: 8px 15px;
    border-radius: 4px;
    color: white !important;
}

.services-hero {
    background: #1a1a1a;
    padding: 80px 20px 60px;
    text-align: center;
    margin-top: 60px;
}

.search-hero-icon {
    font-size: 100px;
    color: #c9a23f;
    margin-bottom: 30px;
}

.search-hero-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.services-main {
    padding: 40px 20px;
    background: #0b0b0b;
    min-height: calc(100vh - 300px);
}

.services-card {
    background: white;
    border-radius: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.services-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-filter-group {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.service-search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.service-search-input:focus {
    outline: none;
    border-color: #c9a23f;
}

.filter-dropdown-wrapper {
    position: relative;
    min-width: 200px;
}

.filter-dropdown-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.employee-filter {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: white;
    appearance: none;
    cursor: pointer;
}

.employee-filter:focus {
    outline: none;
    border-color: #c9a23f;
}

.services-tabs {
    display: flex;
    gap: 5px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 8px;
}

.service-tab {
    padding: 10px 20px;
    border: 1px solid transparent;
    background: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.service-tab.active {
    background: white;
    border-color: #ddd;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-tab:hover {
    color: #333;
}

.services-content-wrapper {
    display: flex;
    gap: 30px;
}

.services-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 12px 15px;
    color: #666;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.category-item:hover {
    background: #f5f5f5;
    color: #333;
}

.category-item.active {
    background: #c9a23f;
    color: white;
    font-weight: 600;
}

.services-content {
    flex: 1;
}

.services-header {
    margin-bottom: 25px;
}

.available-count {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-tag {
    background: #4caf50;
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    border-radius: 4px;
}

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 20px;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.service-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.service-duration {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #c9a23f;
}

.service-select-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.service-select-btn:hover {
    background: #c9a23f;
}

.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

.services-floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #5dade2;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-floating-btn:hover {
    transform: translateY(-3px);
}

.services-floating-btn .hex-logo-small {
    width: 18px;
    height: 18px;
}

.services-floating-btn .hex-inner-small {
    width: 60%;
    height: 60%;
}

.services-floating-btn .hex-dot-small {
    background: #5dade2;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-content-wrapper {
        flex-direction: column;
    }
    
    .services-sidebar {
        width: 100%;
    }
    
    .category-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
    }
    
    .category-item {
        white-space: nowrap;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .search-hero-icon {
        font-size: 60px;
    }
    
    .search-hero-text {
        font-size: 16px;
    }
    
    .services-card {
        padding: 20px;
    }
    
    .services-top-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filter-group {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-floating-btn {
        display: none;
    }
}

/* Hire Page Styles */
.hire-section {
    padding: 80px 20px 40px;
    background: #0b0b0b;
    min-height: calc(100vh - 60px);
}

.hire-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hire-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hire-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.hire-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hire-header p {
    font-size: 16px;
    color: #666;
}

.application-status {
    margin-bottom: 30px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.status-card i {
    font-size: 32px;
}

.status-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.status-text {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 14px;
}

.status-date {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.status-pending {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.status-pending i {
    color: #ffc107;
}

.status-accepted {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.status-accepted i {
    color: #28a745;
}

.status-rejected {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.status-rejected i {
    color: #dc3545;
}

.hire-form-container {
    margin-top: 30px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #c9a23f;
}

.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a23f;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-area {
    margin-top: 10px;
}

.upload-placeholder {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #f9f9f9;
}

.upload-placeholder:hover {
    border-color: #c9a23f;
    background: #fff8e1;
}

.upload-placeholder.drag-over {
    border-color: #c9a23f;
    background: #fff8e1;
}

.upload-placeholder.file-selected {
    border-color: #4caf50;
    background: #e8f5e9;
}

.upload-placeholder i {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
}

.upload-placeholder p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.upload-placeholder span {
    font-size: 12px;
    color: #999;
}

.file-name {
    margin-top: 15px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    display: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-submit-application {
    background: #c9a23f;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit-application:hover {
    background: #d9b24f;
    transform: translateY(-2px);
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

/* Employer Panel Styles */
.employer-panel-section {
    padding: 80px 20px 40px;
    background: #0b0b0b;
    min-height: calc(100vh - 60px);
}

.employer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-card {
    background: white;
    border-radius: 15px;
    padding: 30px 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.welcome-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.welcome-card h1 span {
    color: #c9a23f;
}

.welcome-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 40px;
    color: #c9a23f;
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.stat-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.appointments-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: #c9a23f;
}

.filter-tabs {
    display: flex;
    gap: 5px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 8px;
}

.filter-tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.filter-tab.active {
    background: white;
    color: #c9a23f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-tab:hover {
    color: #333;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.appointment-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.appointment-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-accepted {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #cce5ff;
    color: #004085;
}

.appointment-date {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.appointment-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.appointment-client {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.appointment-client i {
    color: #c9a23f;
}

.appointment-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.appointment-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.detail-item i {
    color: #c9a23f;
}

.appointment-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-view-details,
.btn-accept,
.btn-complete {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-details {
    background: #333;
    color: white;
}

.btn-view-details:hover {
    background: #555;
}

.btn-accept {
    background: #28a745;
    color: white;
}

.btn-accept:hover {
    background: #218838;
}

.btn-complete {
    background: #17a2b8;
    color: white;
}

.btn-complete:hover {
    background: #138496;
}

.no-appointments {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-appointments i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-appointments p {
    font-size: 18px;
    margin: 0;
}

.large-modal {
    max-width: 600px;
    width: 90%;
}

.appointment-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row.full-width {
    flex-direction: column;
    gap: 10px;
}

.detail-row label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 120px;
}

.detail-row span,
.detail-row p {
    color: white;
    text-align: right;
    flex: 1;
}

.detail-row.full-width p {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Design for Hire and Employer Panel */
@media (max-width: 768px) {
    .hire-card {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit-application,
    .btn-cancel {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tabs {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-tab {
        flex: 1;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-actions {
        flex-direction: column;
    }
    
    .appointment-actions button {
        width: 100%;
    }
}

/* Events Page Styles */
.events-welcome-section {
    background: #1a1a1a;
    padding: 100px 20px 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-welcome-content {
    max-width: 1200px;
    margin: 0 auto;
}

.events-welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.events-welcome-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.events-icon-container {
    margin: 40px 0;
}

.events-main-icon {
    position: relative;
    display: inline-block;
}

.events-main-icon i.fa-cut {
    font-size: 120px;
    color: #c9a23f;
    text-shadow: 0 0 20px rgba(201, 162, 63, 0.5);
    filter: drop-shadow(0 0 10px rgba(201, 162, 63, 0.3));
}

.icon-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.icon-stars i {
    position: absolute;
    font-size: 16px;
    color: #c9a23f;
    animation: twinkle 2s infinite;
}

.icon-stars i:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.icon-stars i:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.icon-stars i:nth-child(3) {
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
}

.icon-stars i:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.events-section-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 40px;
}

.events-listing-section {
    padding: 40px 20px;
    background: #0b0b0b;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.events-card {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.events-header {
    margin-bottom: 25px;
}

.events-available-count {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.events-search-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.events-search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: white;
}

.events-search-input:focus {
    outline: none;
    border-color: #c9a23f;
}

.filters-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.filters-btn:hover {
    background: #f5f5f5;
    border-color: #c9a23f;
}

.filters-btn i {
    color: #666;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #c9a23f;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.event-content {
    padding: 20px;
}

.event-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.event-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.event-detail-item i {
    color: #c9a23f;
    width: 16px;
}

.event-book-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.event-book-btn:hover {
    background: #c9a23f;
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* Event Booking Modal Styles */
.event-booking-details {
    color: white;
}

.booking-event-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-details-row div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-details-row strong {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form {
    margin-top: 20px;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #c9a23f;
    background: rgba(255, 255, 255, 0.08);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.booking-actions .btn-submit {
    flex: 1;
}

.booking-actions .btn-cancel {
    flex: 1;
}

/* Responsive Design for Events Page */
@media (max-width: 1024px) {
    .events-welcome-title {
        font-size: 24px;
    }
    
    .events-welcome-subtitle {
        font-size: 16px;
    }
    
    .events-main-icon i.fa-cut {
        font-size: 80px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .events-welcome-section {
        padding: 80px 15px 40px;
    }
    
    .events-welcome-title {
        font-size: 20px;
    }
    
    .events-welcome-subtitle {
        font-size: 14px;
    }
    
    .events-main-icon i.fa-cut {
        font-size: 60px;
    }
    
    .events-card {
        padding: 20px;
    }
    
    .events-search-bar {
        flex-direction: column;
    }
    
    .search-input-wrapper {
        min-width: 100%;
    }
    
    .filters-btn {
        width: 100%;
        justify-content: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-details-row {
        grid-template-columns: 1fr;
    }
    
    .booking-actions {
        flex-direction: column;
    }
}
