:root {
    --primary-color: #B8860B;
    --primary-dark: #8B6508;
    --secondary-color: #e0ac1c;
    --accent-color: #ffffff;
    --text-color: #2D2D2D;
    --light-bg: #FDFBF7;
    --white: #ffffff;
    --gray: #505050;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: var(--primary-color);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--white);
    line-height: 1;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 20px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--gray);
}

.mision-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-block h3 {
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.mv-block p {
    font-size: 0.95rem;
}

.icon-accent {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.about-image {
    position: relative;
    padding-bottom: 20px;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.rounded { border-radius: 10px; }
.shadow { box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.values-card {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 35px;
    border-radius: 10px;
    width: 320px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.values-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.values-card ul {
    list-style: none;
}

.values-card li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.values-card i {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Services Section */
.services {
    background-color: var(--primary-color);
}

.text-white { color: var(--white) !important; }
.bg-white { background: var(--white) !important; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-10px);
}

.card-icon i {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Capacity Section */
.capacity-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.capacity-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.capacity-list {
    list-style: none;
    margin-top: 30px;
}

.capacity-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.capacity-list i {
    margin-right: 15px;
    color: var(--primary-color);
}

/* Footer & Contact */
footer {
    background: var(--light-bg);
    padding: 80px 0 30px;
    color: var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.slogan { font-weight: 300; font-size: 1.2rem; margin-bottom: 5px; }
.tagline { font-style: italic; color: var(--gray); margin-bottom: 30px; }

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 15px;
    width: 20px;
}

.footer-form h3 {
    margin-bottom: 30px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

#contact-form button {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .capacity-wrapper, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-btns-reveal-delay { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
    .hero-content h1 { font-size: 2.5rem; }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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