@font-face {
    font-family: 'Touche';
    src: url('/touche-font-family/Touche-Regular-BF642a2ebfe9ff0.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-green: #1c3b29;
    --secondary-green: #1c3b29;
    --accent-terracotta: #D4724B;
    --accent-gold: #E8B44A;
    --cream: #F9F5ED;
    --earth-brown: #8B6F47;
    --deep-forest: #1c3b29;
}

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

html {
    width: 100%;
    overflow-x: hidden;
}

body { 
    font-family: 'Touche', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: var(--deep-forest); 
    background: var(--cream);
    overflow-x: hidden;
    width: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
textarea,
select,
label,
li,
strong,
em,
small {
    font-family: 'Touche', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Organic Background Elements */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary-green) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(15deg);
    animation: float 20s infinite ease-in-out;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-terracotta) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: rotate(-25deg);
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(30px) rotate(20deg); }
}

/* Header & Navigation */
header { 
    background: #1c3b29;
    color: var(--cream); 
    position: fixed; 
    width: 100%; 
    left: 0;
    right: 0;
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 8px 32px rgba(28, 59, 41, 0.3);
    box-sizing: border-box;
    overflow: visible;
    backdrop-filter: blur(4px);
}

@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes quickCardPop {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.1);
    }
    100% {
        transform: translateY(-20px) scale(1.08);
    }
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1.15) rotate(8deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

header.scrolled {
    background: #1c3b29;
    color: white;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

/* Top Bar */
.top-bar { 
    background: #1c3b29; 
    padding: 0.35rem 5%; 
    font-size: 0.75rem; 
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-sizing: border-box;
    width: 100%;
}

header.scrolled .top-bar {
    background: #1c3b29;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.top-bar-content { 
    width: 100%;
    display: flex; 
    justify-content: flex-end;
    gap: 1.8rem;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-item i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.top-bar-item a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.top-bar-item a:hover {
    color: var(--accent-gold);
}

/* Main Navigation */
.main-nav { 
    width: 100%;
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    padding: 0.5rem 5%;
    gap: 1rem;
    box-sizing: border-box;
}

/* Logo Section */
.logo-section { 
    display: flex; 
    align-items: center; 
    gap: 1rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-section:hover {
    opacity: 0.9;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-img {
    max-width: 200px;
    height: auto;
    transition: filter 0.3s ease;
    filter: brightness(1.1);
}

.logo-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.8);
    margin: 0.15rem 0 0 0;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: 0.5rem;
    justify-content: flex-end;
}

.nav-links li {
    position: relative;
}

/* Hide mobile search item on desktop */
.mobile-search-item {
    display: none;
}

/* Desktop search toggle - visible on desktop */
.desktop-search-toggle {
    display: flex;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown {
    display: block;
    pointer-events: auto;
}

.nav-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.15);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown { 
    display: none; 
    position: absolute; 
    top: calc(100% + 0px);
    left: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f5ed 100%); 
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25); 
    border-radius: 15px; 
    backdrop-filter: blur(10px);
    z-index: 999;
    border: 1px solid rgba(212, 114, 75, 0.2);
    overflow: visible;
    animation: dropdownSlide 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    margin-top: 0;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    border-bottom: 2px solid rgba(212, 114, 75, 0.2);
    font-size: 0.85rem;
    letter-spacing: 1px;
    background: rgba(212, 114, 75, 0.05);
}

.dropdown-item { 
    color: var(--deep-forest); 
    padding: 0.5rem 1.3rem; 
    transition: all 0.3s ease; 
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    pointer-events: auto !important;
    cursor: pointer;
}

.dropdown-item i {
    width: 24px;
    text-align: center;
    color: var(--accent-terracotta);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dropdown-item strong {
    color: var(--primary-green);
    font-weight: 700;
}

.dropdown-item small {
    color: var(--earth-brown);
    font-size: 0.75rem;
    font-weight: 400;
}

.dropdown-item:hover { 
    background: linear-gradient(90deg, rgba(212, 114, 75, 0.15), rgba(232, 180, 74, 0.08));
    color: var(--accent-terracotta); 
    border-left-color: var(--accent-terracotta);
    padding-left: 1.8rem;
}

.dropdown-item:hover i {
    transform: translateX(5px) scale(1.15);
    color: var(--accent-gold);
}

.nav-links li:hover .dropdown { 
    display: block;
    pointer-events: auto;
}

.dropdown:hover {
    display: block;
    pointer-events: auto;
}

.dropdown-menu {
    min-width: 240px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: visible;
    pointer-events: auto !important;
}

.nav-links li:has(.dropdown-menu):hover .dropdown-menu {
    display: block;
    pointer-events: auto !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1005;
    position: relative;
    margin-left: auto;
}

/* Sidebar Overlay - Hidden by default (only visible on mobile) */
.sidebar-overlay {
    display: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero { 
    padding: 0;
    text-align: center; 
    position: relative; 
    overflow: visible;
    min-height: 350px;
    margin: 0;
    z-index: 1;
}

/* Remove margin-top from hero sections on mobile */
@media (max-width: 768px) {
    [style*="margin-top: 80px"] {
        margin-top: 0 !important;
        padding: 80px 5% 50px !important;
    }
}

@media (max-width: 480px) {
    [style*="margin-top: 80px"] {
        margin-top: 0 !important;
        padding: 60px 4% 40px !important;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(28, 59, 41, 0.85) 0%, 
        rgba(28, 59, 41, 0.75) 50%, 
        rgba(28, 59, 41, 0.8) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(232, 180, 74, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 114, 75, 0.12), transparent 50%);
    pointer-events: none;
}

.hero-slider { 
    max-width: 100%; 
    margin: 0; 
    position: relative; 
    z-index: 2;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero h2 { 
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem; 
    margin-bottom: 1rem; 
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.hero p { 
    color: var(--accent-gold);
    font-size: 1.25rem; 
    max-width: 800px; 
    margin: 0 auto 2rem; 
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #E8B44A 0%, #D4724B 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(232, 180, 74, 0.35), 0 0 20px rgba(232, 180, 74, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(232, 180, 74, 0.5), 0 0 30px rgba(232, 180, 74, 0.15);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: white;
}

.cta-button i {
    font-size: 0.95rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.cta-button:hover i {
    transform: translateX(4px) scale(1.1);
}

.slider-dots { 
    display: flex; 
    justify-content: center; 
    gap: 0.8rem; 
    margin-top: 2rem; 
    position: relative;
    z-index: 2;
}

.dot { 
    width: 14px; 
    height: 14px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.4); 
    cursor: pointer; 
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.6);
}

.dot.active { 
    background: var(--accent-gold); 
    transform: scale(1.2);
    border-color: white;
    box-shadow: 0 0 15px rgba(232, 180, 74, 0.5);
}

/* ============================================
   RESPONSIVE NAVBAR FOR ULTRA-WIDE SCREENS
   ============================================ */

/* Ultra Wide Screen (2560px+) */
@media (min-width: 2560px) {
    /* Top Bar */
    .top-bar { 
        padding: 0.6rem 3%; 
        font-size: 0.95rem; 
    }

    .top-bar-content { 
        max-width: none;
        gap: 2rem;
    }

    .top-bar-item {
        font-size: 1rem;
    }

    .top-bar-item i {
        font-size: 1.1rem;
    }

    /* Main Navigation */
    .main-nav { 
        max-width: none; 
        padding: 0.8rem 3%;
        gap: 1.5rem;
    }

    /* Logo */
    .logo-img {
        max-width: 260px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text p {
        font-size: 0.85rem;
    }

    /* Navigation Links */
    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.9rem 1.2rem;
    }

    .nav-link i {
        font-size: 1rem;
    }

    /* Dropdown */
    .dropdown { 
        min-width: 280px;
    }

    .dropdown-header {
        padding: 1.2rem 1.8rem;
        font-size: 1rem;
    }

    .dropdown-item { 
        padding: 0.65rem 1.6rem; 
        font-size: 1.05rem;
    }

    .dropdown-item i {
        width: 32px;
        font-size: 1.2rem;
    }
}

/* Extra Large Screen (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    /* Top Bar */
    .top-bar { 
        padding: 0.5rem 4%; 
        font-size: 0.9rem; 
    }

    .top-bar-content { 
        max-width: none;
        gap: 2.2rem;
    }

    .top-bar-item {
        font-size: 0.95rem;
    }

    .top-bar-item i {
        font-size: 1rem;
    }

    /* Main Navigation */
    .main-nav { 
        max-width: none; 
        padding: 0.7rem 4%;
        gap: 1.2rem;
    }

    /* Logo */
    .logo-img {
        max-width: 240px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    /* Navigation Links */
    .nav-links {
        gap: 0.4rem;
    }

    .nav-link {
        font-size: 0.98rem;
        padding: 0.8rem 1.1rem;
    }

    .nav-link i {
        font-size: 0.9rem;
    }

    /* Dropdown */
    .dropdown { 
        min-width: 260px;
    }

    .dropdown-header {
        padding: 0.65rem 1.6rem;
        font-size: 0.95rem;
    }

    .dropdown-item { 
        padding: 0.55rem 1.4rem; 
        font-size: 0.98rem;
    }

    .dropdown-item i {
        width: 28px;
        font-size: 1.1rem;
    }
}

/* ============================================
   RESPONSIVE NAVBAR FOR ULTRA-WIDE SCREENS
   ============================================ */

/* Ultra Wide Screen (2560px+) */
@media (min-width: 2560px) {
    /* Top Bar */
    .top-bar { 
        padding: 0.6rem 3%; 
        font-size: 0.95rem; 
    }

    .top-bar-content { 
        max-width: none;
        gap: 2.5rem;
    }

    .top-bar-item {
        font-size: 1rem;
    }

    .top-bar-item i {
        font-size: 1.1rem;
    }

    /* Main Navigation */
    .main-nav { 
        max-width: none; 
        padding: 0.8rem 3%;
        gap: 1.5rem;
    }

    /* Logo */
    .logo-img {
        max-width: 260px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text p {
        font-size: 0.85rem;
    }

    /* Navigation Links */
    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.9rem 1.2rem;
    }

    .nav-link i {
        font-size: 1rem;
    }

    /* Dropdown */
    .dropdown { 
        min-width: 280px;
    }

    .dropdown-header {
        padding: 1.2rem 1.8rem;
        font-size: 1rem;
    }

    .dropdown-item { 
        padding: 0.65rem 1.6rem; 
        font-size: 1.05rem;
    }

    .dropdown-item i {
        width: 32px;
        font-size: 1.2rem;
    }
}

/* Extra Large Screen (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    /* Top Bar */
    .top-bar { 
        padding: 0.5rem 4%; 
        font-size: 0.9rem; 
    }

    .top-bar-content { 
        max-width: none;
        gap: 2.2rem;
    }

    .top-bar-item {
        font-size: 0.95rem;
    }

    .top-bar-item i {
        font-size: 1rem;
    }

    /* Main Navigation */
    .main-nav { 
        max-width: none; 
        padding: 0.7rem 4%;
        gap: 1.2rem;
    }

    /* Logo */
    .logo-img {
        max-width: 240px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    /* Navigation Links */
    .nav-links {
        gap: 0.4rem;
    }

    .nav-link {
        font-size: 0.98rem;
        padding: 0.8rem 1.1rem;
    }

    .nav-link i {
        font-size: 0.9rem;
    }

    /* Dropdown */
    .dropdown { 
        min-width: 260px;
    }

    .dropdown-header {
        padding: 0.65rem 1.6rem;
        font-size: 0.95rem;
    }

    .dropdown-item { 
        padding: 0.55rem 1.4rem; 
        font-size: 0.98rem;
    }

    .dropdown-item i {
        width: 28px;
        font-size: 1.1rem;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1441px) and (max-width: 1919px) {
    /* Top Bar */
    .top-bar { 
        padding: 0.4rem 5%; 
        font-size: 0.8rem; 
    }

    .top-bar-content { 
        max-width: 1600px;
        gap: 2rem;
    }

    /* Main Navigation */
    .main-nav { 
        max-width: 1600px; 
        padding: 0.6rem 5%;
    }

    /* Logo */
    .logo-img {
        max-width: 220px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    /* Navigation Links */
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 0.9rem;
    }

    /* Dropdown */
    .dropdown { 
        min-width: 220px;
    }

    .dropdown-item { 
        padding: 0.8rem 1.2rem; 
        font-size: 0.95rem;
    }
}

/* Quick Links */
.quick-links { 
    background: linear-gradient(135deg, rgba(28, 59, 41, 0.03), rgba(232, 180, 74, 0.05)); 
    padding: 3rem 5%; 
    max-width: 1200px; 
    margin: -80px auto 0; 
    box-shadow: 0 25px 80px rgba(28, 59, 41, 0.2); 
    position: relative; 
    z-index: 10;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.quick-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem; 
}

.quick-card { 
    text-align: center; 
    padding: 2rem 1.5rem; 
    border-radius: 16px; 
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
    cursor: pointer;
    background: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-icon {
    position: relative;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1c3b29;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 6px 15px rgba(232, 180, 74, 0.4);
    border: 3px solid white;
    transition: box-shadow 0.4s ease;
}

.quick-card:hover .quick-badge {
    box-shadow: 0 10px 25px rgba(232, 180, 74, 0.6);
}

.quick-subtitle {
    font-size: 0.9rem;
    color: var(--earth-brown);
    margin-top: 0.6rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.4s ease;
}

.quick-card:hover .quick-subtitle {
    color: var(--primary-green);
}

.quick-card:hover { 
    background: linear-gradient(135deg, #ffffff, rgba(28, 59, 41, 0.05));
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(28, 59, 41, 0.18), 0 0 30px rgba(232, 180, 74, 0.08);
}

.quick-card i { 
    font-size: 3.2rem; 
    background: #1c3b29; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(212, 114, 75, 0.15));
}

.quick-card h3 { 
    font-size: 1.15rem; 
    color: #1c3b29; 
    font-weight: 700;
    transition: all 0.4s ease;
    letter-spacing: 0.3px;
    margin: 0.5rem 0 0 0;
    line-height: 1.3;
}
/* Content Section */
.content { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 100px 5%; 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.main h2 { 
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem; 
    margin-bottom: 2.5rem; 
    color: var(--deep-forest); 
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.main h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-terracotta) 50%, var(--accent-gold) 100%);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(232, 180, 74, 0.25);
}

.main h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-terracotta));
    width: 0;
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main:hover h2::before {
    width: 50%;
}

.news-card { 
    background: white; 
    border-radius: 18px; 
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    display: flex; 
    gap: 1.5rem; 
    margin-bottom: 2rem; 
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(232, 180, 74, 0.12);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-terracotta), var(--accent-gold));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.news-card:hover::before {
    transform: scaleY(1);
}

.news-card:hover { 
    transform: translateY(-10px) scale(1.01); 
    box-shadow: 0 25px 60px rgba(28, 59, 41, 0.18), 0 0 30px rgba(232, 180, 74, 0.08);
    border-color: rgba(212, 114, 75, 0.25);
}

.news-img { 
    width: 280px; 
    max-height: 500px; 
    background: #1c3b29; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-size: 3.2rem; 
    flex-shrink: 0; 
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.news-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 114, 75, 0.15), rgba(232, 180, 74, 0.08));
    pointer-events: none;
    z-index: 1;
}

.news-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.news-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) contrast(1);
}

.news-card:hover .news-img img {
    transform: scale(1.12);
    filter: brightness(1.05) contrast(1.05);
}

.news-body { 
    padding: 2rem; 
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date { 
    color: var(--accent-terracotta); 
    font-size: 0.8rem; 
    font-weight: 700; 
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-body h3 { 
    margin-bottom: 1rem; 
    font-size: 1.4rem; 
    color: var(--deep-forest);
    font-weight: 700;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    transition: color 0.4s ease;
}

.news-card:hover .news-body h3 {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-body p { 
    color: var(--earth-brown); 
    margin-bottom: 1.5rem; 
    line-height: 1.8;
    font-size: 0.98rem;
}

.read-more { 
    color: var(--accent-terracotta); 
    text-decoration: none; 
    font-weight: 700; 
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: fit-content;
}

.read-more::after {
    content: '→';
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.read-more:hover { 
    color: var(--secondary-green);
    gap: 0.9rem;
}

.read-more:hover::after {
    transform: translateX(6px);
}

/* Sidebar */
.sidebar-widget { 
    background: white; 
    padding: 2.2rem; 
    border-radius: 18px; 
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 114, 75, 0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-terracotta), var(--accent-gold));
    border-radius: 0 18px 18px 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sidebar-widget:hover::before {
    opacity: 1;
}

.sidebar-widget:hover {
    box-shadow: 0 20px 50px rgba(212, 114, 75, 0.15), 0 0 30px rgba(232, 180, 74, 0.08);
    transform: translateY(-4px);
    border-color: rgba(212, 114, 75, 0.2);
}

.sidebar-widget h3 { 
    color: var(--deep-forest); 
    margin-bottom: 1.2rem; 
    padding-bottom: 1rem; 
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, var(--earth-brown) 0%, var(--earth-brown) 100%);
    background-size: 0% 3px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sidebar-widget:hover h3 {
    background-size: 100% 3px;
    background-image: linear-gradient(90deg, var(--primary-green), var(--accent-terracotta));
}

.sidebar-widget ul { list-style: none; }

.sidebar-widget li { 
    padding: 0.9rem 0; 
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-widget li:last-child { border-bottom: none; }

.sidebar-widget a { 
    color: var(--earth-brown); 
    text-decoration: none; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    gap: 0.7rem;
    font-weight: 500;
}

.sidebar-widget a::before {
    content: '▸';
    color: var(--accent-terracotta);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sidebar-widget a:hover { 
    color: var(--accent-terracotta);
    transform: translateX(5px);
}

.sidebar-widget a:hover::before {
    transform: scaleX(1.5);
}

/* Info Box */
.info-box { 
    color: white; 
    padding: 0;
    border-radius: 15px; 
    text-align: center; 
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(212, 114, 75, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.info-box-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.info-box-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(28, 59, 41, 0.85) 0%, 
        rgba(212, 114, 75, 0.8) 100%
    );
    z-index: 1;
}

.info-box-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.info-box-overlay::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.info-box-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}

.info-box h3 { 
    color: white; 
    border: none; 
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.info-box p {
    position: relative;
    z-index: 1;
}

.info-box a { 
    display: inline-block; 
    margin-top: 1rem; 
    padding: 12px 30px; 
    background: var(--cream); 
    color: var(--primary-green); 
    text-decoration: none; 
    border-radius: 25px; 
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.info-box a:hover { 
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
footer { 
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--primary-green) 100%); 
    color: var(--cream); 
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(232, 180, 74, 0.05), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 114, 75, 0.05), transparent 50%);
    pointer-events: none;
}

.footer-content { 
    max-width: 1600px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 4rem; 
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 { 
    margin-bottom: 1rem; 
    color: var(--accent-gold); 
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-section ul { list-style: none; }

.footer-section li { 
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section a { 
    color: rgba(255,255,255,0.9); 
    text-decoration: none; 
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a::before {
    content: '›';
    color: var(--accent-gold);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-section a:hover { 
    color: var(--accent-terracotta); 
    font-weight: 600;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    transform: translateX(3px);
}

.footer-section p { 
    color: rgba(255,255,255,0.9); 
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-bottom { 
    text-align: center; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-social h3 {
    margin-bottom: 0.5rem;
}

.social-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link:active {
    transform: translateY(-3px) scale(1.05);
}

.social-link i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover i {
    transform: rotate(15deg) scale(1.1);
}

.social-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #5851DB);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #F56040, #E1306C, #C13584);
}

.social-tiktok {
    background: linear-gradient(135deg, #000000, #00F2EA);
}

.social-tiktok:hover {
    background: linear-gradient(135deg, #00F2EA, #FF0050);
}

.social-facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.social-facebook:hover {
    background: linear-gradient(135deg, #4A90E2, #1877F2);
}

.social-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-youtube:hover {
    background: linear-gradient(135deg, #FF4444, #FF0000);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
}

.social-link:hover::after {
    animation: pulse-ring 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

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

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

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .main-nav,
    .quick-links,
    .content,
    .footer-content {
        max-width: 1600px;
    }
    
    .hero h2 {
        font-size: 5rem;
    }
}

/* Extra Large Desktop (2000px+) */
@media (min-width: 2000px) {
    .footer-content {
        max-width: 1800px;
        gap: 5rem;
    }
    
    .footer-section h3 {
        font-size: 1.25rem;
    }
    
    .footer-section p {
        font-size: 1.05rem;
    }
    
    .footer-logo-img {
        max-width: 240px;
    }
}

/* Desktop (1200px - 1440px) */
@media (max-width: 1440px) {
    .quick-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Laptop/Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
    .top-bar {
        font-size: 0.7rem;
        padding: 0.4rem 4%;
    }
    
    .top-bar-content {
        gap: 1.5rem;
    }
    
    .main-nav {
        padding: 0.6rem 4%;
    }
    
    .logo-img {
        max-width: 150px;
    }
    
    .nav-links {
        gap: 0.3rem;
        margin-right: 0;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .content {
        padding: 60px 4%;
    }
}

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer;
        padding: 0.3rem;
    }
    
    .hamburger span {
        display: block !important;
        width: 24px;
        height: 3px;
        background: #F9F5ED !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Collapsible navbar on tablet */
    .nav-links {
        position: static !important;
        width: 100%;
        max-height: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 100vh;
        visibility: visible;
        overflow-y: auto;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-img {
        width: 100%;
        height: 220px;
        border-radius: 15px 15px 0 0;
    }
    
    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .hero {
        padding: 140px 4% 80px;
    }
    
    .slider-text-container {
        margin-top: 40px;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile (≤768px) - FIXED VERSION */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        padding: 0.4rem 4%;
    }
    
    .top-bar-content {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        font-size: 0.65rem;
        box-sizing: border-box;
    }
    
    .top-bar-item:nth-child(3) {
        display: none;
    }
    
    /* Header */
    .main-nav {
        padding: 0.5rem 2.5% !important;
        gap: 0.3rem;
        max-width: 100% !important;
        position: relative;
    }
    
    .logo-img {
        max-width: 110px;
    }
    
    /* Hamburger - Disembunyikan di mobile */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer;
        padding: 0.3rem;
    }

    /* Hide desktop search on mobile */
    .desktop-search-toggle {
        display: none !important;
    }
    
    /* Mobile Navigation - Below Header (Static) */
    .nav-links {
        position: absolute !important;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        background: linear-gradient(180deg, #0d4d2c 0%, #1c3b29 100%);
        padding: 0;
        margin: 0;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 999;
        transform: none;
        display: flex;
        max-height: 0;
        visibility: hidden;
        border-top: 2px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.active {
        transform: none;
        max-height: 100vh;
        visibility: visible;
    }
    
    /* Sidebar Overlay Backdrop - Hidden on mobile with navbar below header */
    .sidebar-overlay {
        display: none !important;
    }
    
    .nav-links.active ~ .sidebar-overlay,
    .sidebar-overlay.active {
        background: transparent;
        pointer-events: none;
    }
    
    /* Allow scrolling when navbar is active */
    body.sidebar-open {
        overflow: auto;
    }
    
    .nav-links > li {
        width: 100%;
        border-bottom: none;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 auto;
        display: block;
        overflow: visible;
    }
    
    .nav-links > li:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* FIX GAP MENU MOBILE TOTAL */
    ul.nav-links {
        margin: 0 !important;
        padding: 0 !important;
    }

    ul.nav-links li {
        margin: 0 !important;
        padding: 0 !important;
    }

    ul.nav-links li:first-child {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Mobile Search Item */
    .mobile-search-item {
        display: block !important;
        width: 100%;
        padding: 0 !important;
    }

    .mobile-search-item form {
        padding: 0.3rem 1rem !important;
    }

    .mobile-search-item form > div {
        padding: 0.5rem !important;
    }

    .mobile-search-item form input::placeholder {
        color: rgba(255,255,255,0.7);
    }

    .mobile-search-item form button:hover {
        background: rgba(255,255,255,0.3) !important;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 0;
        justify-content: space-between;
        margin: 0;
        line-height: 1.2;
        display: flex;
        align-items: center;
        height: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav-link span {
        line-height: 1.2;
        margin: 0;
        padding: 0;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255,255,255,0.15);
        transform: none;
    }
    
    .nav-link i.fa-caret-down {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .nav-link.dropdown-open i.fa-caret-down {
        transform: rotate(180deg);
    }
    
    /* Dropdown - Mobile FIXED */
    .dropdown {
        position: static !important;
        width: 100%;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        border: none;
        border-radius: 0;
        display: none !important;
        animation: none;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0.5rem 0 0 0 !important;
        margin: 0 !important;
        min-height: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links > li.has-dropdown {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown.active {
        display: block !important;
    }

    .nav-links li.has-dropdown .dropdown.active {
        display: block !important;
    }

    .nav-links li:hover .dropdown {
        display: none !important;
    }
    
    .dropdown-header {
        display: none;
    }
    
    .dropdown-item {
        padding: 0.6rem 1.5rem 0.6rem 3rem;
        margin: 0;
        border-left: none;
        background: transparent;
        color: rgba(255,255,255,0.9);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .dropdown-item i {
        color: rgba(255,255,255,0.7);
    }
    
    .dropdown-item strong {
        color: rgba(255,255,255,0.95);
    }
    
    .dropdown-item small {
        color: rgba(255,255,255,0.6);
    }
    
    .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        padding-left: 3.3rem;
        border-left: none;
    }

    /* Show hamburger as X when dropdown is open */
    .hamburger.dropdown-active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.dropdown-active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.dropdown-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 0 0;
        margin-top: 0;
        min-height: auto;
    }

    .hero-slider {
        height: 400px;
    }
    
    .slider-text-container {
        margin-top: 30px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 600px;
    }
    
    /* Quick Links */
    .quick-links {
        margin: -40px 1rem 0;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .quick-card {
        padding: 1.8rem 1rem;
    }
    
    .quick-card i {
        font-size: 2.5rem;
    }
    
    .quick-card h3 {
        font-size: 0.95rem;
    }
    
    /* Content */
    .content {
        padding: 40px 4%;
    }
    
    .main h2 {
        font-size: 2rem;
    }
    
    .news-card {
        margin-bottom: 1.5rem;
        gap: 0;
    }
    
    .news-img {
        height: 180px;
    }
    
    .news-body {
        padding: 1.2rem;
    }
    
    .news-body h3 {
        font-size: 1.1rem;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    /* Footer */
    footer {
        padding: 3rem 4% 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-section {
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-social {
        text-align: center;
        align-items: center;
    }
    
    .social-subtitle {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    /* Top Bar */
    .top-bar {
        padding: 0.3rem 3%;
    }
    
    .top-bar-content {
        width: 100%;
        gap: 0.8rem;
        font-size: 0.6rem;
        box-sizing: border-box;
    }
    
    .top-bar-item span {
        display: none;
    }
    
    .top-bar-item i {
        font-size: 0.85rem;
    }
    
    /* Header - Mobile */
    header {
        position: fixed !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .main-nav {
        padding: 0.4rem 2% !important;
        gap: 0.2rem;
        max-width: 100% !important;
        width: 100%;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    /* Hamburger - Disembunyikan di mobile kecil */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.45rem;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer;
        padding: 0.25rem;
    }
    
    .hamburger span {
        display: none !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: none;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 1;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: none;
    }
    
    .logo-img {
        max-width: 95px;
    }
    
    /* Navigation - Always Visible Below Header */
    .nav-links {
        position: absolute !important;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, #0d4d2c 0%, #1c3b29 100%);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        border-top: 2px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.active {
        max-height: 100vh;
        visibility: visible;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        padding: 0;
        margin-top: 0;
        min-height: auto;
    }

    .hero-slider {
        height: 350px;
    }
    
    .slider-text-container {
        margin-top: 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        gap: 0.6rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Quick Links */
    .quick-links {
        margin: -30px 0.8rem 0;
        padding: 1.5rem 1rem;
    }
    
    .quick-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-card {
        padding: 1.5rem 1rem;
    }
    
    .quick-card i {
        font-size: 2.2rem;
    }
    
    .quick-card h3 {
        font-size: 0.9rem;
    }
    
    /* Content */
    .content {
        padding: 30px 3%;
    }
    
    .main h2 {
        font-size: 1.5rem;
    }
    
    .news-card {
        border-radius: 12px;
    }
    
    .news-img {
        height: 150px;
        border-radius: 12px 12px 0 0;
    }
    
    .news-body {
        padding: 1rem;
    }
    
    .news-body h3 {
        font-size: 1rem;
    }
    
    .news-body p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 3% 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .footer-section li {
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-section a {
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .social-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Landscape Mobile (height < 500px) */
@media (max-height: 500px) and (max-width: 768px) {
    /* Sidebar maintains overlay behavior even in landscape */
    .nav-links {
        width: 70vw;
        max-width: 280px;
    }
    
    .nav-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .dropdown-item {
        padding: 0.6rem 1.2rem 0.6rem 2.5rem;
    }
    
    .hero {
        padding: 0;
        margin-top: 0;
        min-height: auto;
    }

    .hero-slider {
        height: 300px;
    }
    
    .slider-text-container {
        margin-top: 15px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .dropdown-item:hover,
    .quick-card:hover {
        background: transparent;
    }
    
    .nav-link:active {
        background: rgba(255,255,255,0.15);
    }
    
    .quick-card:active {
        transform: scale(0.98);
    }
}

/* Accessibility */
.social-link:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .nav-link,
    .dropdown-item,
    .social-link {
        border: 1px solid currentColor;
    }
}

/* ============================================
   RESPONSIVE QUICK LINKS FOR ULTRA-WIDE SCREENS
   ============================================ */

/* Ultra Wide Screen (2560px+) */
@media (min-width: 2560px) {
    .quick-links { 
        background: linear-gradient(135deg, rgba(28, 59, 41, 0.03), rgba(232, 180, 74, 0.05)); 
        padding: 4rem 1.5%; 
        max-width: none;
        width: 100%;
        margin: -100px 0 0; 
        box-shadow: 0 30px 100px rgba(28, 59, 41, 0.25); 
        position: relative; 
        z-index: 10;
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: none;
        animation: fadeInUp 0.5s ease-out 0.3s both;
    }

    .quick-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        gap: 1.6rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .quick-card { 
        text-align: center; 
        padding: 2.2rem 1.8rem; 
        border-radius: 18px; 
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
        cursor: pointer;
        background: white;
        border: 2px solid transparent;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    }

    .quick-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 24px 60px rgba(212, 114, 75, 0.3);
    }

    .quick-card i { 
        font-size: 3.8rem;
    }

    .quick-card h3 {
        font-size: 1.25rem;
        margin: 1rem 0 0.5rem 0;
    }

    .quick-subtitle {
        font-size: 0.95rem;
    }
}

/* Extra Large Screen (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .quick-links { 
        background: linear-gradient(135deg, rgba(28, 59, 41, 0.03), rgba(232, 180, 74, 0.05)); 
        padding: 3.5rem 2.5%; 
        width: 100%;
        max-width: none;
        margin: -90px 0 0; 
        box-shadow: 0 25px 80px rgba(28, 59, 41, 0.22); 
        border-radius: 20px;
        border: none;
    }

    .quick-grid { 
        display: grid; 
        grid-template-columns: repeat(6, minmax(220px, 1fr)); 
        gap: 1.4rem;
        max-width: 1800px;
        margin: 0 auto;
    }

    .quick-card { 
        padding: 2rem 1.6rem; 
        border-radius: 16px; 
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .quick-card:hover {
        transform: translateY(-10px) scale(1.015);
        box-shadow: 0 20px 50px rgba(212, 114, 75, 0.28);
    }

    .quick-card i { 
        font-size: 3.4rem;
    }

    .quick-card h3 {
        font-size: 1.15rem;
    }

    .quick-subtitle {
        font-size: 0.9rem;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1441px) and (max-width: 1919px) {
    .quick-links { 
        background: linear-gradient(135deg, rgba(28, 59, 41, 0.03), rgba(232, 180, 74, 0.05)); 
        padding: 3.2rem 2%; 
        width: 100%;
        max-width: none;
        margin: -85px 0 0 0; 
        box-shadow: 0 25px 80px rgba(28, 59, 41, 0.2); 
        border-radius: 20px;
        border: none;
    }

    .quick-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
        gap: 1.4rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .quick-card { 
        padding: 2rem 1.5rem; 
        border-radius: 16px; 
    }

    .quick-card i { 
        font-size: 3.2rem;
    }

    .quick-card h3 {
        font-size: 1.1rem;
    }
}

/* Standard Desktop (1024px - 1440px) */
@media (max-width: 1440px) {
    .quick-links { 
        width: 100%;
        max-width: none;
        padding: 3rem 2%; 
        margin: -80px 0 0 0; 
        border-radius: 20px;
        border: none;
    }

    .quick-grid { 
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
        gap: 1.6rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .quick-card { 
        padding: 2rem 1.5rem; 
        border-radius: 16px; 
    }
}

/* Tablet (769px - 1023px) */
@media (max-width: 1024px) {
    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hamburger span {
        display: block !important;
        background: #F9F5ED !important;
    }
    
    .quick-links { 
        width: 100%;
        max-width: none;
        margin: -60px 0 0 0; 
        padding: 2.5rem 2%; 
        border-radius: 15px;
    }

    .quick-grid { 
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
        gap: 1.2rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .quick-card { 
        padding: 1.5rem 1.2rem; 
        border-radius: 14px; 
    }

    .quick-card i { 
        font-size: 2.4rem;
    }

    .quick-card h3 {
        font-size: 0.95rem;
    }

    .quick-subtitle {
        font-size: 0.8rem;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .quick-links { 
        width: 100%;
        max-width: none;
        margin: -40px 0 0 0; 
        padding: 2rem 2%; 
        border-radius: 12px;
    }

    .quick-grid { 
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
        gap: 0.8rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .quick-card { 
        padding: 1.2rem 1rem; 
        border-radius: 12px; 
    }

    .quick-card i { 
        font-size: 2rem;
    }

    .quick-card h3 {
        font-size: 0.85rem;
        margin: 0.6rem 0 0.3rem 0;
    }

    .quick-subtitle {
        font-size: 0.7rem;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .hamburger,
    .dropdown,
    .quick-links,
    footer {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: none !important;
        max-height: none !important;
    }
    
    .hero {
        margin-top: 0;
    }
}
