﻿/* =============================================
   RESET & BASE
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    background: #f7fafc;
    color: #2d3748;
    line-height: 1.6;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.site-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================
   HEADER
============================================= */
.site-header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header-row-container-inner {
    background: #ffffff;
}

.site-header-row {
    display: flex;
    align-items: center;
    min-height: 80px;
}

.site-header-row-has-sides {
    justify-content: space-between;
}

.site-header-main-section-left,
.site-header-main-section-right {
    display: flex;
    align-items: center;
}

/* Logo */
.site-branding a.brand {
    display: inline-block;
}

    .site-branding a.brand img {
        max-width: 104px;
        height: auto;
    }

/* Desktop Navigation */
#main-header {
    display: block;
}

#mobile-header {
    display: none;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu-container > ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

    .primary-menu-container > ul > li {
        position: relative;
    }

        .primary-menu-container > ul > li > a {
            display: block;
            padding: 0.6rem 0.8rem;
            font-size: 15px;
            font-weight: 500;
            color: #4a5568;
            transition: color 0.2s;
        }

            .primary-menu-container > ul > li > a:hover {
                color: #2b6cb0;
            }

        .primary-menu-container > ul > li.current-menu-item > a {
            color: #1a202c;
            font-weight: 600;
        }

/* Dropdown Toggle */
.nav-drop-title-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-nav-toggle {
    font-size: 12px;
    margin-left: 2px;
}

/* Sub Menu */
.primary-menu-container ul li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a202c;
    min-width: 200px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 999;
}

.primary-menu-container ul li:hover > .sub-menu,
.primary-menu-container ul li:focus-within > .sub-menu {
    display: block;
}

.primary-menu-container ul li .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .primary-menu-container ul li .sub-menu li:last-child {
        border-bottom: none;
    }

    .primary-menu-container ul li .sub-menu li a {
        display: block;
        padding: 0.6rem 1.5rem;
        font-size: 13px;
        color: #f7fafc;
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
    }

        .primary-menu-container ul li .sub-menu li a:hover {
            background: #2d3748;
            color: #ffffff;
        }

.primary-menu-container ul li .sub-menu .sub_title_nav a {
    font-weight: 700;
    font-size: 14px;
    color: #fccf34;
    pointer-events: none;
    cursor: default;
}

.primary-menu-container ul li .sub-menu .blank_list {
    display: none;
}

/* Get in Touch Button */
.primary-menu-container > ul > li.linkbtn a {
    background: #fccf34;
    border-radius: 10px;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    color: #000;
    transition: box-shadow 0.2s;
}

    .primary-menu-container > ul > li.linkbtn a:hover {
        box-shadow: 0 8px 25px rgba(252, 207, 52, 0.35);
    }

/* =============================================
   MOBILE HEADER & DRAWER
============================================= */
@media (max-width: 1024px) {
    #main-header {
        display: none;
    }

    #mobile-header {
        display: block;
    }

    .site-header-row {
        min-height: 60px;
    }

    body {
        padding-top: 60px;
    }
}

.mobile-toggle-open-container .menu-toggle-open {
    background: none;
    border: none;
    padding: 0.4rem 0.6rem;
    font-size: 18px;
    color: #4a5568;
    cursor: pointer;
}

    .mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon {
        font-size: 22px;
    }

    .mobile-toggle-open-container .menu-toggle-open:hover {
        color: #2b6cb0;
    }

/* Drawer */
.popup-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

    .popup-drawer.show-drawer {
        visibility: visible;
        opacity: 1;
    }

    .popup-drawer .drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }

    .popup-drawer .drawer-inner {
        position: absolute;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 90%;
        height: 100%;
        background: #137528;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .popup-drawer.show-drawer .drawer-inner {
        transform: translateX(0);
    }

    .popup-drawer .drawer-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 1rem;
    }

        .popup-drawer .drawer-header .drawer-toggle {
            background: none;
            border: none;
            font-size: 28px;
            color: #ffffff;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }

/* Mobile Menu */
.mobile-drawer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-drawer-content ul li {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .mobile-drawer-content ul li:last-child {
            border-bottom: none;
        }

        .mobile-drawer-content ul li a {
            display: block;
            padding: 0.8rem 0;
            color: #ffffff;
            font-size: 15px;
            transition: color 0.2s;
        }

            .mobile-drawer-content ul li a:hover,
            .mobile-drawer-content ul li.current-menu-item > a {
                color: #e7b841;
            }

        .mobile-drawer-content ul li.linkbtn a {
            background: #fccf34;
            color: #000;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            margin-top: 0.5rem;
        }

/* Drawer Dropdown Toggle */
.drawer-nav-drop-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .drawer-nav-drop-wrap .drawer-sub-toggle {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 16px;
        padding: 0.4rem 0.6rem;
        cursor: pointer;
        transition: transform 0.3s;
    }

        .drawer-nav-drop-wrap .drawer-sub-toggle.open {
            transform: rotate(180deg);
        }

/* Mobile Sub Menu */
.mobile-drawer-content .sub-menu {
    display: none;
    padding-left: 1.2rem;
}

    .mobile-drawer-content .sub-menu.show-drawer {
        display: block;
    }

    .mobile-drawer-content .sub-menu .sub_title_nav a {
        color: #fccf34;
        font-weight: 700;
        pointer-events: none;
        cursor: default;
    }

    .mobile-drawer-content .sub-menu .blank_list {
        display: none;
    }

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a202c;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

    .hero-background-video video,
    .hero-background-video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
    }

    .hero-background-video iframe {
        pointer-events: none;
        border: none;
    }

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 3rem 1.5rem;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    color: #ffffff;
}

.hero-title {
    font-family: 'Varela Round', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInLeft 1s ease forwards;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInLeft 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-button {
    display: inline-block;
    background: #fccf34;
    color: #000000;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hero-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(252, 207, 52, 0.4);
    }

/* Hero Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-overlay {
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-overlay {
        padding: 1.5rem;
        min-height: 60vh;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        text-align: center;
    }

    .hero-button {
        display: block;
        max-width: 260px;
        margin: 0 auto;
        text-align: center;
    }
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background: #161515;
    color: #ffffff;
}

    .site-footer h2.widget-title {
        color: #ffffff;
        font-size: 18px;
        font-family: 'Varela Round', sans-serif;
        margin-bottom: 1.2rem;
    }

    .site-footer a {
        color: #ffffff;
        transition: color 0.2s;
    }

        .site-footer a:hover {
            color: #fccf34;
        }

/* Footer Grid */
.site-top-footer-inner-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 50px 0 40px;
}

.site-footer-section {
    min-width: 0;
}

/* Footer Widgets */
.footer-widget-area {
    margin-bottom: 1.5rem;
}

.textcolor {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* Footer Menu */
.footer-widget-area ul li a {
    display: inline-block;
    padding: 0.3rem 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

    .footer-widget-area ul li a::before {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #fccf34;
        font-size: 11px;
        top: 50%;
        transform: translateY(-50%);
    }

/* Contact Info */
.contact-text,
.contact-phone,
.contact-email {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

    .contact-text i,
    .contact-phone i,
    .contact-email i {
        color: #fccf34;
        width: 18px;
        flex-shrink: 0;
    }

    .contact-phone a,
    .contact-email a {
        color: #ffffff;
    }

        .contact-phone a:hover,
        .contact-email a:hover {
            color: #fccf34;
        }

/* Social Icons */
.footer-social {
    margin-top: 0.5rem;
}

.footer-social-inner-wrap {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #194637;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}

    .social-button:hover {
        background: #fccf34;
        color: #000;
        transform: translateY(-2px);
    }

/* Bottom Footer */
.site-bottom-footer-wrap {
    background: #1b1b1b;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.site-bottom-footer-inner-wrap {
    display: flex;
    justify-content: center;
    padding: 1.2rem 0;
}

.footer-html {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .site-top-footer-inner-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .site-top-footer-inner-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 30px 0 20px;
    }

    .site-footer-section {
        text-align: center;
    }

    .footer-social-inner-wrap {
        justify-content: center;
    }

    .contact-text,
    .contact-phone,
    .contact-email {
        justify-content: center;
    }
}

/* =============================================
   UTILITY
============================================= */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.hidden {
    display: none !important;
}
