* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, transparent 48%, rgba(0,0,0,0.01) 48%, rgba(0,0,0,0.01) 52%, transparent 52%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 48%, rgba(0,0,0,0.01) 48%, rgba(0,0,0,0.01) 52%, transparent 52%, transparent 100%);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* Alert Messages */
.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999999;
    min-width: 400px;
    animation: slideDown 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
}

.alert-error {
    background: rgba(255, 59, 48, 0.95);
    color: white;
    border-left: 4px solid #ff3b30;
}

.alert-success {
    background: rgba(52, 199, 89, 0.95);
    color: white;
    border-left: 4px solid #34c759;
}

.alert-info {
    background: rgba(0, 122, 255, 0.95);
    color: white;
    border-left: 4px solid #007aff;
}

.alert i {
    font-size: 1.5rem;
}

.alert span {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.alert-close {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.alert-close:hover {
    background: rgba(255,255,255,0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 1.2rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 99999;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.92);
    transition: box-shadow 0.4s ease, padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.97);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.nav-brand i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2c3e50 0%, #5a6d7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c3e50;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.user-info {
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: #f5f5f7;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.85rem;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info i {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    border: 1.5px solid #2c3e50;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-admin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-admin i {
    font-size: 0.9rem;
}

.btn-primary {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #34495e;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #2c3e50;
    padding: 6rem 0 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Zebra Pattern Accent */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.02) 20px,
        rgba(0,0,0,0.02) 40px
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 9000;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 40%, #5a6d7e 60%, #2c3e50 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out, shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #666;
    font-weight: 400;
    animation: fadeInUp 1s 0.3s both;
}

.search-box {
    background: #ffffff;
    padding: 1rem;
    border-radius: 60px;
    display: flex;
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    z-index: 9998;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.search-input:last-of-type {
    border-right: none;
}

.search-input i {
    color: #2c3e50;
    font-size: 1.1rem;
}

.search-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.search-input input::placeholder {
    color: #999;
}

.btn-search {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-search:hover {
    transform: scale(1.02);
    background: #34495e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-search:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.search-input input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    z-index: 9998;
}

.custom-dropdown input[readonly] {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    z-index: 9999;
    margin-top: 0.5rem;
}

.dropdown-menu.show {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
}

.dropdown-item:hover {
    background: #f5f5f7;
    color: #2c3e50;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.015) 10px,
        rgba(0,0,0,0.015) 20px
    );
    border-radius: 50%;
    transition: transform 0.5s;
}

.feature-card:hover::before {
    transform: translate(-20%, 20%) scale(1.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0 0 1px rgba(44,62,80,0.06);
    border-color: rgba(44,62,80,0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
}

.feature-card i {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}

.feature-card:hover i {
    transform: translateY(-6px) scale(1.1);
    color: #34495e;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background: #fafafa;
}

.jobs-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -1px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.job-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(0,0,0,0.02) 5px,
        rgba(0,0,0,0.02) 10px
    );
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.12);
}

.job-card:hover::before {
    opacity: 1;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2c3e50 0%, #3d5266 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.job-card:hover .company-logo {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(44,62,80,0.2);
}

.job-header h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
}

.company-name {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.9rem;
}

.job-details i {
    color: #2c3e50;
}

.btn-apply {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44,62,80,0.25);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.btn-apply:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(44,62,80,0.15);
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #2c3e50;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.btn-submit {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #34495e;
}

.btn-reset {
    width: 100%;
    background: #f5f5f7;
    color: #2c3e50;
    border: 1.5px solid rgba(0,0,0,0.08);
    padding: 0.9rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-reset:hover {
    background: #e8e8ea;
    border-color: rgba(0,0,0,0.12);
}

/* Auth Pages — Split Screen Layout */
.auth-page {
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.auth-split {
    display: flex;
    min-height: 100vh;
}

/* — Left Brand Panel — */
.auth-brand {
    width: 44%;
    background: linear-gradient(160deg, #0f1923 0%, #1a252f 30%, #2c3e50 60%, #34495e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.auth-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.015) 30px,
        rgba(255,255,255,0.015) 60px
    );
    pointer-events: none;
}

.auth-brand::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.auth-brand-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2.5rem 3rem;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: opacity 0.3s;
}

.auth-logo:hover {
    opacity: 0.85;
}

.auth-logo i {
    font-size: 1.6rem;
    opacity: 0.9;
}

.auth-brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.auth-brand-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 1rem;
}

.auth-brand-content > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 380px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.auth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.auth-feature-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.15);
}

.auth-feature-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-feature-item:hover .auth-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.auth-feature-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #ffffff;
}

.auth-feature-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.auth-brand-footer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* — Right Form Panel — */
.auth-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: relative;
}

.auth-form-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2.5rem;
}

.auth-form-topbar span {
    font-size: 0.88rem;
    color: #8a94a0;
    font-weight: 500;
}

.auth-topbar-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.4rem;
    border: 1.5px solid #2c3e50;
    border-radius: 30px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.auth-topbar-btn:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44,62,80,0.2);
}

.auth-form-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem 3rem;
}

.auth-form-box {
    width: 100%;
    max-width: 380px;
}

.auth-form-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.8px;
    margin-bottom: 0.4rem;
}

.auth-form-box > p {
    color: #8a94a0;
    font-size: 0.92rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.auth-field {
    margin-bottom: 1.1rem;
}

.auth-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.4rem;
    letter-spacing: 0.2px;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-wrap i {
    position: absolute;
    left: 14px;
    color: #b0b8c4;
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.3s;
}

.auth-input-wrap input {
    width: 100%;
    padding: 0.78rem 0.9rem 0.78rem 2.6rem;
    border: 1.5px solid #e2e6ec;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #2c3e50;
    background: #fafbfc;
    transition: all 0.25s;
    font-family: inherit;
}

.auth-input-wrap input::placeholder {
    color: #c0c7d0;
}

.auth-input-wrap input:focus {
    outline: none;
    border-color: #2c3e50;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(44,62,80,0.08);
}

.auth-input-wrap input:focus + i,
.auth-input-wrap:focus-within i {
    color: #2c3e50;
}

.auth-hint {
    margin-top: 0.4rem;
    font-size: 0.76rem;
    color: #a0a8b4;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.auth-hint i {
    font-size: 0.72rem;
}

.auth-btn {
    width: 100%;
    padding: 0.85rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    transition: all 0.3s;
    font-family: inherit;
    letter-spacing: 0.2px;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44,62,80,0.3);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.auth-btn:hover i {
    transform: translateX(3px);
}

.auth-form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-form-footer a {
    color: #8a94a0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.auth-form-footer a:hover {
    color: #2c3e50;
}

.auth-form-footer a i {
    font-size: 0.78rem;
    transition: transform 0.3s;
}

.auth-form-footer a:hover i {
    transform: translateX(-3px);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.about-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2c3e50;
    transform: scaleY(0);
    transition: transform 0.3s;
}

.about-feature:hover::before {
    transform: scaleY(1);
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.12);
}

.about-feature i {
    font-size: 2rem;
    color: #2c3e50;
}

.about-feature h4 {
    margin-bottom: 0.3rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    color: #2c3e50;
    opacity: 0.05;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    75% { transform: translateY(10px) rotate(-1deg); }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #fafafa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info > p {
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(44,62,80,0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
}

.contact-item i {
    font-size: 1.4rem;
    color: #2c3e50;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44,62,80,0.08), 0 0 0 3px rgba(44,62,80,0.04);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 1rem;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.5);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 0.6rem;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-wp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transform: scale(1); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); transform: scale(1.05); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    max-width: 800px;
}

.cookie-text i {
    font-size: 1.4rem;
    color: #f0c040;
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.cookie-text a {
    color: #f0c040;
    text-decoration: underline;
}

.cookie-accept {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cookie-accept:hover {
    background: #f0c040;
    color: #2c3e50;
    transform: scale(1.05);
}

/* Google Maps Section */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Password toggle */
.password-toggle {
    position: absolute;
    right: 14px;
    color: #b0b8c4;
    font-size: 0.9rem;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.3s;
    z-index: 2;
}

.password-toggle:hover {
    color: #2c3e50;
}

/* Login warning tooltip */
.login-warning-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-warning-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.login-warning-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ff6b6b;
}

.search-box-wrapper {
    position: relative;
}

.form-wrapper {
    position: relative;
}

.contact-form-tooltip {
    top: -50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .nav-menu a::after {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-input {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 1rem;
    }
    
    .search-input:last-of-type {
        border-bottom: none;
    }
    
    .btn-search {
        width: 100%;
        border-radius: 15px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        gap: 0.4rem;
    }
    
    .btn-outline, .btn-primary {
        padding: 0.45rem 0.8rem;
        font-size: 0.78rem;
    }

    .user-info {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
        max-width: 140px;
    }

    .btn-admin {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .btn-admin .admin-label {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Auth responsive */
    .auth-split {
        flex-direction: column;
    }

    .auth-brand {
        width: 100%;
    }

    .auth-brand-inner {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .auth-brand-content {
        padding: 1rem 0;
    }

    .auth-brand-content h1 {
        font-size: 1.6rem;
    }

    .auth-features {
        display: none;
    }

    .auth-brand-footer {
        display: none;
    }

    .auth-form-topbar {
        padding: 1rem 1.5rem;
    }

    .auth-form-center {
        padding: 0 1.5rem 2rem;
    }

    .auth-form-box h2 {
        font-size: 1.5rem;
    }

    /* WhatsApp and back to top responsive */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        bottom: 18px;
        right: 14px;
    }

    .back-to-top {
        width: 36px;
        height: 36px;
        bottom: 76px;
        right: 18px;
        font-size: 0.8rem;
    }

    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.8rem;
    }

    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .alert {
        min-width: auto;
        max-width: 90vw;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .map-section iframe {
        height: 250px;
    }
}

/* ============================================
   GÖRSEL GELİŞTİRMELER - Tatlı Efektler
   ============================================ */

/* Section heading dekorasyon */
.jobs-section h2,
.about-section h2,
.contact-section h2 {
    position: relative;
    display: inline-block;
    width: 100%;
}

.jobs-section h2::after,
.about-section h2::after,
.contact-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #5a6d7e);
    border-radius: 2px;
    margin: 0.8rem auto 0;
    animation: expandLine 1s ease-out both;
}

@keyframes expandLine {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}

/* Staggered card reveal - kademeli görünürlük */
.feature-card:nth-child(1), .job-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2), .job-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3), .job-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4), .job-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5), .job-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6), .job-card:nth-child(6) { transition-delay: 0.5s; }

/* Feature card gradient border on hover */
.feature-card {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, transparent 0%, transparent 100%) border-box;
    border: 1.5px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%) padding-box,
                linear-gradient(135deg, #2c3e50 0%, #5a6d7e 100%) border-box;
    border-color: transparent;
}

/* Search box glow effect */
.search-box {
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 10px 50px rgba(44,62,80,0.12), 0 0 0 3px rgba(44,62,80,0.04);
    transform: translateY(-2px);
}

/* Nav brand hover effect */
.nav-brand {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-brand i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-brand:hover i {
    transform: rotate(-8deg) scale(1.1);
}

/* Button ripple-like glow */
.btn-primary,
.btn-search,
.btn-apply,
.btn-submit,
.auth-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-search::after,
.btn-apply::after,
.btn-submit::after,
.auth-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after,
.btn-search:hover::after,
.btn-apply:hover::after,
.btn-submit:hover::after,
.auth-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Contact item hover - colored left accent */
.contact-item {
    border-left: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item:hover {
    border-left-color: #2c3e50;
}

/* Job card - numbered subtle indicator */
.job-card {
    counter-increment: job-counter;
}

/* About feature - pulse on hover icon */
.about-feature i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}

.about-feature:hover i {
    transform: scale(1.2);
    color: #34495e;
}

/* Cookie accept button glow */
.cookie-accept:hover {
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.4);
}

/* Hero section gradient overlay */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 40%, #edf2f8 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, #ffffff);
    pointer-events: none;
    z-index: 1;
}

/* Sections alternating subtle backgrounds */
.features {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.jobs-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #f3f5f8 50%, #f8f9fb 100%);
}

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

.contact-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f5 50%, #f8f9fb 100%);
}

/* Map section top decoration */
.map-section {
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #5a6d7e, #2c3e50);
    z-index: 1;
}

/* Auth brand floating shapes */
.auth-brand::after {
    animation: floatBubble 8s ease-in-out infinite;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, -20px); }
    50% { transform: translate(5px, -10px); }
    75% { transform: translate(-5px, 10px); }
}

/* Auth input focus glow */
.auth-input-wrap input:focus {
    box-shadow: 0 0 0 3px rgba(44,62,80,0.06), 0 4px 12px rgba(44,62,80,0.06);
}

/* User info badge pulse */
.user-info {
    transition: all 0.3s ease;
}

.user-info:hover {
    background: #eef0f3;
    transform: translateY(-1px);
}

/* Selection color */
::selection {
    background: rgba(44,62,80,0.15);
    color: #1a252f;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
}

::-webkit-scrollbar-thumb {
    background: #c0c8d4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a8b4;
}

/* Smooth image/iframe load */
iframe {
    transition: opacity 0.4s ease;
}

/* Loading skeleton shimmer for future use */
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

/* Password toggle smooth */
.password-toggle {
    transition: color 0.3s, transform 0.2s;
}

.password-toggle:hover {
    transform: scale(1.1);
}

/* Active nav link indicator */
.nav-menu a:hover {
    color: #1a252f;
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(44,62,80,0.4);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .navbar, .whatsapp-float, .back-to-top, .cookie-consent, .hamburger { display: none !important; }
    .hero { padding: 2rem 0; }
    body::before { display: none; }
}