/* PT. NUSANTARA PAPER INDONESIA - MAIN BRANDING CSS */

:root {
    --dark-green: #0B5D3B;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F4F6F8;
    --dark-navy: #0F172A;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.25);
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
    --white: #1E293B;
    --light-gray: #0F172A;
    --glass-bg: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--light-gray);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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


/* Typography Extensions */

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}


/* HEADER NAVIGATION */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-img {
    height: 50px;
    /* Anda bisa menyesuaikan angka ini agar logo lebih besar/kecil */
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    /* Hapus baris ini jika logo Anda transparan dan tidak butuh sudut melengkung */
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--dark-green), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(11, 93, 59, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-green);
    letter-spacing: 0.5px;
}

body.dark-mode .brand-name {
    color: var(--gold);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-ui);
}

.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--text-primary);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.action-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b89326);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-navy);
}

.btn-full {
    width: 100%;
    justify-content: center;
}


/* HERO CAROUSEL */

.hero-carousel-section {
    width: 100%;
    height: 100vh;
}

.mainHeroSlider {
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slide-container {
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-text-wrap {
    max-width: 700px;
    color: white;
}

.badge-futuristic {
    background: rgba(11, 93, 59, 0.4);
    border: 1px solid var(--dark-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-ui);
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}


/* LAYOUT GRIDS & SECTIONS */

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: var(--dark-navy);
}

.text-white {
    color: var(--white);
}

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

.section-tag {
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-green);
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-main-title {
    font-size: 2.2rem;
    margin-top: 5px;
}

.title-bar {
    width: 60px;
    height: 4px;
    background-color: var(--dark-green);
    margin: 15px auto 0;
    border-radius: 2px;
}

.grid-layout-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-layout-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}


/* CARDS DEFINITIONS */

.card-glass-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.card-glass-premium:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(11, 93, 59, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.card-glass-premium h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-glass-premium p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


/* MARKET DOMAIN */

.market-box {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.market-inner {
    color: white;
    position: relative;
    z-index: 5;
}

.market-inner i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}


/* STATS SECTION PARALLAX SIMULATION */

.stats-section {
    background: linear-gradient(rgba(11, 93, 59, 0.9), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.counter-number {
    font-size: 3.5rem;
    color: var(--gold);
}


/* PRODUCT CARD PREMIUM */

.product-premium-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-premium-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.prod-img-wrap {
    height: 200px;
    background: #e2e8f0;
}

.prod-img-placeholder,
.thumb-placeholder,
.image-placeholder-modern,
.featured-img-placeholder,
.small-img-placeholder,
.img-placeholder-g {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-green), #08432a);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
}

.prod-info {
    padding: 25px;
}

.prod-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.prod-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.btn-text {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
}


/* TESTIMONIAL */

.testimonial-card {
    padding: 40px;
    border-radius: 20px;
    margin: 20px 0;
}

.testi-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
}


/* CTA PARALLAX SECTION */

.cta-parallax-section {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(11, 93, 59, 0.85)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* FOOTER PREMIUM STYLING */

.footer-premium {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #052c1c 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-placeholder-footer {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: black;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--white);
}

.footer-desc {
    font-size: 0.88rem;
    opacity: 0.75;
    margin-bottom: 20px;
}

.social-medias {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    font-size: 0.88rem;
    opacity: 0.8;
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-map {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.85rem;
    opacity: 0.6;
}


/* GLOBAL FIXED FLOATING ITEMS */

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
    width: 0%;
    z-index: 2000;
}

.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-navy);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--gold);
    animation: loadingMove 1.5s infinite;
}

.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.back-to-top-btn:hover {
    background: var(--gold);
    color: black;
}


/* INTERNAL CHAT STYLE MOCKUP */

.open-chat-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.live-chat-widget {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 300px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    border: 1px solid var(--glass-border);
}

.chat-header {
    background: var(--dark-green);
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    min-height: 120px;
    font-size: 0.85rem;
    background: var(--light-gray);
}

.bot-msg {
    background: rgba(11, 93, 59, 0.1);
    padding: 10px;
    border-radius: 8px;
    border-top-left-radius: 0;
    color: var(--text-primary);
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-chat-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}


/* FILTER PRODUCT SPECIFIC STYLE */

.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border-radius: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.filter-btn,
.gallery-filter-btn {
    background: transparent;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover,
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--dark-green);
    color: white;
}

.product-item-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.product-thumb {
    height: 180px;
}

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prod-badge {
    font-size: 0.75rem;
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
}

.product-details h3 {
    font-size: 1.25rem;
    margin: 5px 0 10px;
}

.product-details p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.spec-table {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
    margin-top: auto;
}

.spec-table td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-table td:last-child {
    text-align: right;
    font-weight: 600;
}


/* SEARCH OVERLAY */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-container {
    width: 100%;
    max-width: 550px;
    padding: 30px;
    border-radius: 16px;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex-grow: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.9);
    color: black;
}


/* ABOUT PAGE INTERNAL TIMELINE */

.timeline-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(11, 93, 59, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-badge {
    width: 60px;
    height: 60px;
    background: var(--dark-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    z-index: 5;
    box-shadow: 0 0 0 8px var(--light-gray);
}

.timeline-panel {
    width: 45%;
    padding: 25px;
    border-radius: 12px;
}


/* SERVICES PAGE SERVICE CARD FLOTATION */

.service-floating-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.service-floating-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.srv-icon {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}


/* GALLERY PAGE MASONRY STYLE */

.masonry-grid-wrapper {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.img-placeholder-g {
    height: 260px;
}

.gallery-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-box:hover .gallery-overlay-text {
    opacity: 1;
}


/* BLOG MAIN LAYOUT */

.blog-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.featured-news-card {
    border-radius: 16px;
    overflow: hidden;
}

.featured-img-placeholder {
    height: 300px;
}

.blog-info-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.article-small-card {
    border-radius: 12px;
    overflow: hidden;
}

.small-img-placeholder {
    height: 160px;
}

.small-blog-content {
    padding: 20px;
}

.blog-sidebar {
    padding: 30px;
    border-radius: 16px;
    height: fit-content;
}

.sidebar-widget h4 {
    margin-bottom: 15px;
    border-left: 4px solid var(--dark-green);
    padding-left: 10px;
}

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

.widget-list li {
    margin-bottom: 10px;
}

.widget-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.popular-post-item h5 {
    font-size: 0.88rem;
    font-weight: 600;
}

.popular-post-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}


/* CONTACT PAGE STYLE FORM */

.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    display: block;
    font-size: 0.85rem;
    font-family: var(--font-ui);
    font-weight: 600;
    margin-bottom: 6px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.grid-layout-2-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-item-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    align-items: center;
}

.info-item-box i {
    font-size: 2rem;
}

.color-gold {
    color: var(--gold);
}