/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #1a1a1a;
}

/* TOP BAR */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    font-size: 0.75rem;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.top-bar a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    text-decoration: none;
    margin-left: 20px;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar .separator {
    color: rgba(255,255,255,0.2);
    margin: 0 15px;
}

/* NAVIGATION */
.navbar {
    background: #fff !important;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #1a1a1a !important;
}

.navbar-brand span {
    color: #c9a84c;
}

.navbar-nav .nav-link {
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem !important;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c9a84c !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #c9a84c;
    margin: 2px auto 0;
}

.navbar .dropdown-toggle {
    background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 20px;
    padding: 5px 15px !important;
    font-size: 0.75rem;
    color: #1a1a1a !important;
}

.navbar .dropdown-toggle:hover {
    border-color: #c9a84c !important;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: #f8f5f0;
    color: #c9a84c;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .tag {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #c9a84c;
    text-transform: uppercase;
    font-weight: 600;
}

.hero h1 {
    font-weight: 800;
    font-size: 4.5rem;
    color: #fff;
    margin: 20px 0 15px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero h1 span {
    color: #c9a84c;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-weight: 300;
}

.hero .btn-outline-light {
    border: 2px solid #c9a84c;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero .btn-outline-light:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

/* STATS */
.stats {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stats .stat-item {
    text-align: center;
    border-right: 1px solid #f0f0f0;
    padding: 10px 0;
}

.stats .stat-item:last-child {
    border-right: none;
}

.stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.stats .stat-number .plus {
    color: #c9a84c;
}

.stats .stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 5px;
}

/* SECTION TITLES */
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.section-subtitle {
    color: #888;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* PHILOSOPHY SECTION */
#philosophy {
    padding: 80px 0;
    background: #faf8f5;
}

#philosophy h2 {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #1a1a1a;
}

#philosophy h2 span {
    color: #c9a84c;
}

#philosophy p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

#philosophy .btn-outline-dark {
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#philosophy .btn-outline-dark:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer .brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer .brand span {
    color: #c9a84c;
}

.footer p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer hr {
    border-color: rgba(255,255,255,0.05);
    margin: 20px 0;
}

.footer .copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .stats .stat-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 0;
    }
    
    .stats .stat-item:last-child {
        border-bottom: none;
    }
    
    .stats .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #philosophy h2 {
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}
