/* Global Reset & Fonts */
:root {
    --stinc-green: #0f6a36;
    /* Main Stinc Green */
    --stinc-dark-green: #0a4a25;
    /* Darker shade for Topbar/Bottom Footer */
    --accent-yellow: #FFD700;
    /* Yellow for Buttons/Active States */

    --primary-color: #FFD700;
    --text-color: #666666;
    --heading-color: #1a1a1a;
    --bg-light: #ffffff;

    /* THEME VARIABLES */
    --site-header-bg: var(--stinc-green);
    --footer-bg: var(--stinc-green);
    --footer-bottom-bg: var(--stinc-dark-green);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--heading-color);
}

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* --- ROYAL PRELOADER --- */
.royal_preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--stinc-dark-green);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.royal_preloader_loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    border-radius: 2px;
}

.royal_preloader_bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-yellow);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.royal_preloader_percentage {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    width: 100px;
    text-align: center;
}

/* --- HEADER (Green Theme) --- */
.header-topbar {
    background: var(--stinc-dark-green);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.octf-main-header {
    background-color: var(--stinc-green) !important;
    border-bottom: none;
    /* Removed Yellow Border for cleaner look, or keep if preferred */
    padding: 0;
    position: relative;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.octf-mainbar-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* LOGO */
.site-logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid white;
    /* White Border */
    padding: 5px 15px;
    text-align: center;
    color: white;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1;
    color: white;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    border-top: 1px solid white;
    margin-top: 2px;
    padding-top: 2px;
    color: white;
}

/* NAVIGATION */
.main-navigation,
.main-navigation ul {
    height: 100%;
}

.main-navigation .menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    color: white !important;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li a:hover {
    color: var(--accent-yellow) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* --- HERO & CONTENT --- */
.page-header {
    background: #1a1a1a;
    padding: 80px 0;
    border-bottom: 4px solid var(--accent-yellow);
    text-align: center;
}

.section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--stinc-green);
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--stinc-green);
}

.btn:hover {
    background: white;
    color: var(--stinc-green);
    border-color: var(--stinc-green);
}

.btn-primary {
    background: var(--accent-yellow);
    color: black;
    border-color: var(--accent-yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-yellow);
}


/* --- FOOTER (Green Theme) --- */
.stinc-footer-wrapper {
    background-color: var(--stinc-green);
    color: white;
    font-family: 'Manrope', sans-serif;
    border-top: 5px solid var(--stinc-dark-green);
}

.stinc-footer-top {
    padding: 80px 0;
}

.widget-footer h6 {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-list a,
.footer-desc,
.contact-item {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-list a:hover {
    color: white !important;
    text-decoration: underline !important;
}

.footer-socials a {
    color: white;
    margin-right: 15px;
}

.stinc-footer-bottom {
    background-color: var(--stinc-dark-green);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .main-navigation {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    .footer-row {
        flex-direction: column;
        gap: 40px;
    }
}