* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #0a0a0c;
    --card-bg: #121216;
    --gold: #dfb15b;
    --gold-hover: #f7ca76;
    --text-white: #ffffff;
    --text-gray: #a0a0aa;
    --border-color: #27272a;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.gold-text {
    color: var(--gold);
}

/* Top Luxury Bar */
.top-bar {
    background: linear-gradient(90deg, #16161a, #24242e);
    padding: 10px 5%;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}
.top-bar i {
    color: var(--gold);
    margin-right: 5px;
}

/* Header */
header {
    background-color: rgba(10, 10, 12, 0.95);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}
.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}
nav a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 5%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920') no-repeat center center/cover;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.85);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.badge {
    background-color: rgba(223, 177, 91, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
}
.hero-buttons .btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    display: inline-block;
    transition: all 0.3s;
}
.btn-primary {
    background-color: var(--gold);
    color: #000;
}
.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
}

/* Admin Notice Section */
.admin-section {
    padding: 60px 5%;
    background-color: #0f0f13;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
.announcement-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(223, 177, 91, 0.3);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.admin-profile {
    text-align: center;
    min-width: 200px;
    border-right: 1px solid var(--border-color);
    padding-right: 30px;
}
.admin-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 10px;
}
.role {
    color: var(--gold);
    font-size: 13px;
    margin-top: 4px;
}
.live-tag {
    color: #ef4444;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}
.notice-text {
    font-size: 18px;
    line-height: 1.6;
    color: #e4e4e7;
    font-style: italic;
}
.date {
    display: block;
    margin-top: 15px;
    color: var(--text-gray);
    font-size: 13px;
}

/* Services Grid */
.services-section {
    padding: 80px 5%;
}
.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: -30px;
    margin-bottom: 50px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
}
.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(223, 177, 91, 0.05);
}
.card-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}
.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Apply Form Area */
.apply-section {
    padding: 80px 5%;
    background-color: #0f0f13;
}
.apply-box {
    display: flex;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.apply-info {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, #121216, #1a1a24);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.apply-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
.apply-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}
.apply-info ul {
    list-style: none;
}
.apply-info li {
    margin-bottom: 12px;
    font-weight: 500;
}
.apply-info i {
    margin-right: 10px;
}
.apply-form-container {
    flex: 1;
    padding: 50px;
    border-left: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #e4e4e7;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 15px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-submit:hover {
    background-color: #20ba5a;
}

/* Footer */
footer {
    background-color: #060608;
    padding: 60px 5% 20px;
    border-top: 1px solid var(--border-color);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-col p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: #52525b;
    font-size: 13px;
}
.designed-by {
    margin-top: 5px;
    color: var(--gold);
    font-weight: 500;
}

/* Responsive Custom Details */
@media(max-width: 768px) {
    .top-bar { flex-direction: column; text-align: center; gap: 5px; }
    header { flex-direction: column; gap: 15px; }
    nav a { margin: 0 10px; }
    .hero h1 { font-size: 32px; }
    .announcement-card { flex-direction: column; text-align: center; }
    .admin-profile { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
    .apply-box { flex-direction: column; }
    .apply-form-container { border-left: none; border-top: 1px solid var(--border-color); }
}
