/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ddd0c0;  /* Main beige from logo */
    --primary-dark: #c9bca3;
    --primary-light: #eee6db;
    --secondary: #1a1a1e;  /* Darker color for better contrast */
    --secondary-light: #2a2a2f;
    --accent: #8b7d65;     /* Muted gold/brown accent */
    --accent-light: #a89b83;
    --text-light: #f5f5f5;
    --text-muted: #b3a58f;
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e1e24 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Header styles */
.header {
    text-align: center;
    margin: 3rem 0 5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Logo */
.logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #b39b7d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 5px 15px rgba(221, 208, 192, 0.3));
    color: #fff;
}

.logo:active {
    transform: translateY(1px) scale(0.98);
}

/* Buttons container */
.buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto 0;
    max-width: 1200px;
    padding: 0 2rem;
}

/* Custom Scrollbar */
/* Width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* For Webkit-based browsers (Chrome, Safari, Opera) */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For dark mode support */
@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track {
        background: #2d2d2d;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #666;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #888;
    }
    
    * {
        scrollbar-color: #666 #2d2d2d;
    }
}

/* Department Buttons */
.department-btn {
    background: linear-gradient(145deg, rgba(33, 33, 36, 0.85), rgba(20, 20, 25, 0.9));
    border: 2px solid rgba(221, 208, 192, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: center;
    text-decoration: none !important;
}

/* Loading state */
.department-btn.loading {
    position: relative;
    cursor: wait;
    color: var(--text-muted);
    opacity: 0.8;
    pointer-events: none;
    background: rgba(33, 33, 36, 0.9) !important;
    border: 2px solid rgba(221, 208, 192, 0.2) !important;
}

.department-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.department-btn.loading .btn-text,
.department-btn.loading .btn-subtext,
.department-btn.loading .btn-icon {
    opacity: 0.5;
}

.department-btn.loading::after {
    opacity: 1;
}

/* Disabled state */
/* Available state */
.department-btn {
    border: 2px solid rgba(76, 175, 80, 0.5); /* Semi-transparent green border */
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px; /* Space for status text */
}

/* Unavailable state */
.department-btn.unavailable {
    border: 2px solid rgba(255, 68, 68, 0.5); /* Semi-transparent red border */
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.department-btn.unavailable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 68, 68, 0.1);
    z-index: 1;
    pointer-events: none;
}

/* Hover Effect Background */
.department-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 33, 36, 0.7), rgba(20, 20, 25, 0.8));
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 1;
}

/* Hover Effect Overlay */
.department-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 208, 192, 0.1), rgba(221, 208, 192, 0.05));
    z-index: 1;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.department-btn:hover::after {
    opacity: 1;
}

/* Glow Effect */
.department-btn .btn-hover-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 208, 192, 0.1) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.department-btn:hover .btn-hover-effect {
    transform: scale(1);
    opacity: 1;
}

/* Status text */
.status-text {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.9rem;
    color: #ff4d4d;
    font-weight: 500;
    background: rgba(255, 77, 77, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hide status text by default */
.status-text {
    display: none;
}

/* Show status text only for unavailable buttons */
.department-btn.unavailable .status-text {
    display: block;
}

.department-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 208, 192, 0.1) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
    transition: var(--transition);
}

.department-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.department-btn:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(221, 208, 192, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.department-btn:hover::before {
    background: rgba(33, 33, 36, 0.8);
}

.department-btn:hover::after {
    transform: translateX(100%);
}

.btn-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(221, 208, 192, 0.3);
}

.department-btn:hover .btn-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--primary-light);
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(221, 208, 192, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.department-btn:hover .btn-hover-effect {
    opacity: 1;
    transform: scale(1.2);
}

.department-btn:nth-child(1) { animation-delay: 0.2s; }
.department-btn:nth-child(2) { animation-delay: 0.4s; }
.department-btn:nth-child(3) { animation-delay: 0.6s; }

.department-btn:hover {
    transform: translateY(-8px) scale(1.02) !important;
    background: linear-gradient(145deg, rgba(33, 33, 36, 0.95), rgba(30, 30, 35, 0.95));
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-text {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
    max-width: 90%;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow animation for text */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(221, 208, 192, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(221, 208, 192, 0.6);
    }
}

.title {
    animation: textGlow 4s ease-in-out infinite;
}

/* Subtle background pulse */
@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.circle {
    animation: subtlePulse 8s ease-in-out infinite;
}

/* Background elements */
.animation-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(45, 45, 50, 0.8) 0%, rgba(20, 20, 25, 0.95) 100%);
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,208,192,0.1) 0%, rgba(0,0,0,0) 70%);
    opacity: 0.6;
    filter: blur(40px);
    z-index: 0;
}

.circle:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(139, 125, 101, 0.2) 0%, rgba(0,0,0,0) 70%);
    animation: float 25s infinite ease-in-out;
}

.circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(201, 188, 163, 0.15) 0%, rgba(0,0,0,0) 70%);
    animation: float 30s infinite ease-in-out reverse;
}

.circle:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 60%;
    left: 20%;
    background: radial-gradient(circle, rgba(221, 208, 192, 0.15) 0%, rgba(0,0,0,0) 70%);
    animation: float 35s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, 10px) rotate(-5deg);
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button click animation */
@keyframes clickPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(221, 208, 192, 0.4);
    }
    70% {
        transform: scale(0.98);
        box-shadow: 0 0 0 15px rgba(221, 208, 192, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(221, 208, 192, 0);
    }
}

a.department-btn,
.department-btn {
    text-decoration: none;
}

a.department-btn:active,
.department-btn:active {
    animation: clickPulse 0.5s ease-out;
}

/* Responsive adjustments */
/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 30, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(221, 208, 192, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26, 26, 30, 0.1) 0%, rgba(20, 20, 25, 0.97) 80%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    padding: 2rem;
    margin-left: 5%;
    background: rgba(20, 20, 25, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(221, 208, 192, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(139, 125, 101, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn i {
    font-size: 1.1em;
}

.cta-btn.primary {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.hero-image:hover {
    transform: translateY(-50%) translateX(0) perspective(1000px) rotateY(0deg);
}

.floating-logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    position: relative;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(221, 208, 192, 0.3));
    opacity: 0.95;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(0deg) scale(1);
    will-change: transform, filter;
}

.floating-logo:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.03);
    animation: none;
    filter: drop-shadow(0 15px 50px rgba(221, 208, 192, 0.4));
    opacity: 1;
}

/* ===== SECTIONS ===== */
section {
    padding: 7rem 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(20, 20, 25, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto 0;
    max-width: 1200px;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(33, 33, 36, 0.7);
    border: 1px solid rgba(221, 208, 192, 0.08);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(139, 125, 101, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== DEPARTMENTS SECTION ===== */
.departments-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.departments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-section {
    text-align: center;
    margin: 6rem auto 0;
    padding: 4rem 2rem;
    background: rgba(33, 33, 36, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(221, 208, 192, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shine 3s infinite;
}

.cta-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn.outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn.outline:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.main-footer {
    background: rgba(12, 12, 15, 0.98);
    color: var(--text-muted);
    padding: 6rem 0 0;
    position: relative;
    border-top: 1px solid rgba(221, 208, 192, 0.1);
    margin-top: 4rem;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

/* Ban Appeal Button Styles */
.ban-appeal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 77, 77, 0.3);
    margin-left: 5px;
}

.ban-appeal-btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.ban-appeal-btn:hover {
    background: rgba(255, 77, 77, 0.2);
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.15);
}

.ban-appeal-btn:hover i {
    transform: rotate(-15deg);
}

.ban-appeal-btn::after {
    display: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(221, 208, 192, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(221, 208, 192, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal span {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes shine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-logo {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 5rem 2rem;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features-grid,
    .buttons-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 30, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        clip-path: circle(0% at 50% 0);
        transition: clip-path 0.5s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: circle(150% at 50% 0);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

/* Guidelines Button */
.guidelines-btn-container {
    grid-column: 1 / -1;
    margin-top: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.guidelines-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.2) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(139, 125, 101, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.guidelines-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.guidelines-btn:hover {
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.3) 0%, rgba(0,0,0,0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-light);
}

.guidelines-btn:hover i {
    transform: rotate(10deg);
}

.guidelines-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.guidelines-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .buttons-container {
        grid-template-columns: 1fr;
    }
    
    .guidelines-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
