/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5a623;
    display: inline-block;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab:hover,
.tab.active {
    color: #f5a623;
    border-bottom-color: #f5a623;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f5a623;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 24px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-overlay-content {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f5a623;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-close:hover {
    background: #e09612;
    transform: rotate(90deg);
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #f5a623;
    padding: 20px 60px 20px 0;
    font-size: 24px;
    background: transparent;
    outline: none;
    font-family: Arial, sans-serif;
}

.search-input::placeholder {
    color: #ccc;
}

.search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #f5a623;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.search-submit:hover {
    transform: translateY(-50%) scale(1.1);
}
