/* Hero Section */
.home-page {
    margin-top: 0;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 10%) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-text {
    text-align: center;
    color: var(--neutral-50);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Glass Tabs Container — cam panel + dönen accent border */
.glass-tabs-container {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: none !important;
    isolation: isolate;
}

.glass-tabs-container::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 210deg,
        #f3123d 250deg,
        #f3123d 280deg,
        #f3123d 310deg,
        #f3123d 340deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderMove 4s linear infinite;
    pointer-events: none;
    z-index: 5;
}

.glass-tabs-container > * {
    position: relative;
    z-index: 2;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderMove {
    from {
        --border-angle: 0deg;
    }
    to {
        --border-angle: 360deg;
    }
}

/* Tab Header */
.tab-header {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover {
    color: var(--neutral-50);
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    color: var(--neutral-50);
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid var(--neutral-50);
}

/* Tab Content */
.tab-content {
    padding: 30px;
    display: none;
    animation: fadeEffect 0.5s;
}

.tab-content.active-content {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Search Form */
.search-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.input-group {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 8px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    transition: var(--transition);
}

.input-group:hover {
    background-color: var(--neutral-50);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.input-group.wide {
    flex: 2;
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
    flex-shrink: 0;
}

.input-icon i {
    font-size: 18px;
}

.input-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.input-group select,
.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-900);
    background: transparent;
    padding: 0;
    appearance: none;
    cursor: pointer;
    line-height: 1.5;
}

.input-group input {
    cursor: text;
}

.input-group input::placeholder {
    color: var(--neutral-500);
    font-weight: 400;
}

.input-group select {
    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='%23222222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 24px;
}

.input-group select option:first-child {
    color: var(--neutral-500);
    font-weight: 500;
}

/* Search Buttons */
.search-btn {
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: var(--neutral-50);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

.btn-blue {
    background-color: var(--primary-500);
    box-shadow: 0 4px 12px rgba(243, 18, 61, 0.3);
}

.btn-blue:hover {
    background-color: var(--primary-600);
    box-shadow: 0 6px 16px rgba(243, 18, 61, 0.4);
}

.btn-green {
    background-color: #48a93e;
    box-shadow: 0 4px 12px rgba(72, 169, 62, 0.3);
}

.btn-green:hover {
    background-color: #3d8f35;
    box-shadow: 0 6px 16px rgba(72, 169, 62, 0.4);
}

.btn-orange {
    background-color: #f58a0b;
    box-shadow: 0 4px 12px rgba(245, 138, 11, 0.3);
}

.btn-orange:hover {
    background-color: #e67d0a;
    box-shadow: 0 6px 16px rgba(245, 138, 11, 0.4);
}

/* Quick Tags */
.quick-tags {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.quick-tags a {
    color: var(--neutral-50);
    text-decoration: underline;
    transition: var(--transition);
}

.quick-tags a:hover {
    color: var(--primary-500);
}

.mt-3 {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .tab-content {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .tab-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        justify-content: flex-start;
        padding: 12px 20px;
    }
    
    .tab-btn.active {
        border-bottom: none;
        border-left: 3px solid var(--neutral-50);
    }
    
    .search-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .input-group {
        width: 100%;
    }
    
    .input-group.wide {
        flex: 1;
    }
    
    .search-btn {
        width: 100%;
        padding: 15px;
    }
    
    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 16px;
    }
    
    .tab-content {
        padding: 16px;
    }
    
    .input-group {
        padding: 10px 12px;
    }
    
    .input-group label {
        font-size: 11px;
    }
    
    .input-group select,
    .input-group input {
        font-size: 14px;
    }
    
    .search-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}


