:root {
    --primary: #2c3e50;
    --secondary: #d4af37;
    --accent: #d4af37;
    --gold-primary: #d4af37;
    --gold-hover: #c5a028;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    --bg-light: #fcfaf7;
    --text-main: #34495e;
    --text-muted: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

/* Logo Header */
.top-logo-container {
    padding: 40px 0 20px;
    text-align: center;
    background-color: var(--bg-light);
}

.top-logo {
    max-width: 300px;
    height: auto;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary);
    font-family: 'Cormorant', serif;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.3)), url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-block {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p:first-of-type {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

/* Guidelines */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guideline-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.guideline-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent);
}

.guideline-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.3rem;
}

.guideline-card p {
    color: var(--text-muted);
}

.terms-expand {
    margin-top: 50px;
    text-align: center;
}

details {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

summary {
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    color: var(--primary);
}

.details-content {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.details-content p {
    margin-bottom: 15px;
}

/* Form Section */
.apply-section {
    background-color: var(--primary);
    color: var(--white);
}

.form-wrapper {
    background: var(--white);
    color: var(--text-main);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
}

/* Thank You */
.thank-you-message {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.hidden {
    display: none;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px 0;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}