/* -------------------------------------------------------------
   JKP GLOBAL L.L.C-FZ - Corporate Design System Stylesheet
   Theme: Dark Energy & Luxury Gold (Obsidian / Gold / Slate)
------------------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Design Tokens */
    --primary-dark: #07090e;
    --secondary-dark: #0f131a;
    --tertiary-dark: #171d26;
    
    --accent-gold: #c5a880;
    --accent-gold-hover: #e5cda8;
    --accent-gold-glow: rgba(197, 168, 128, 0.4);
    --accent-gold-rgb: 197, 168, 128;
    
    --text-light: #ffffff;
    --text-muted: #8e9aa8;
    --text-dark: #0f131a;

    --glass-bg: rgba(15, 19, 26, 0.75);
    --glass-border: rgba(197, 168, 128, 0.12);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* 1. Global Reset & Scroll behavior */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
body::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(197, 168, 128, 0.1);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite, glowPulse 2s ease-in-out infinite alternate;
}

.loader-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.loader-content p {
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* 2. Typography & Section Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    box-shadow: 0 0 20px var(--accent-gold-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

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

.main-header.scrolled {
    padding: 12px 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

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

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

.btn-contact-nav {
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--accent-gold);
}

.btn-contact-nav:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-contact-nav::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* 3. Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 9, 14, 0.95) 40%, rgba(15, 19, 26, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-title .highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Live Oil Prices Panel (Hero Widget) */
.oil-prices-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    position: relative;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: blink 2s infinite ease-in-out;
}

.panel-header h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.widgets-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tv-widget-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 12px;
}

.widget-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-footer {
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.ticker-footer i {
    color: var(--accent-gold);
    margin-right: 4px;
}

/* 4. About Us Section */
.about-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--secondary-dark);
    overflow: hidden;
}

.about-bg-glow {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-body {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.signature-block {
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
}

.sig-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
}

.sig-desc {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-top: 2px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background-color: var(--tertiary-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 5. Activities Section */
.activities-section {
    padding: 120px 0;
    background-color: var(--primary-dark);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.activity-card {
    position: relative;
    border-radius: 8px;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.activity-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 9, 14, 0.98) 20%, rgba(7, 9, 14, 0.6) 70%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.activity-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(7, 9, 14, 1) 30%, rgba(7, 9, 14, 0.7) 80%, rgba(0, 0, 0, 0.2) 100%);
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.activity-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.card-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-list li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* 6. Contact Us Section */
.contact-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--secondary-dark);
    overflow: hidden;
}

.contact-bg-glow {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.04) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--tertiary-dark);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.info-item:hover .info-icon {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

.info-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.info-text a:hover {
    color: var(--accent-gold);
}

/* Contact Form Panel */
.contact-form-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-wrapper.text-area-wrapper i {
    top: 20px;
    transform: none;
}

.input-wrapper input, .input-wrapper textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 14px 16px 14px 46px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.input-wrapper input:focus, .input-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.05);
}

.input-wrapper input:focus + i, .input-wrapper textarea:focus + i {
    color: var(--accent-gold);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    gap: 10px;
    border: none;
    padding: 15px 0;
}

.btn-submit:hover {
    background-color: var(--accent-gold-hover);
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

/* Submission animation elements */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 9, 14, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.form-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    max-width: 400px;
}

.animated-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(197, 168, 128, 0.1);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.sending-state h3, .success-state h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.sending-state p, .success-state p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.success-state h3 {
    color: var(--accent-gold);
}

.success-state p strong {
    color: var(--text-light);
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.hidden {
    display: none !important;
}

/* Premium success checkmark draw animation */
.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--accent-gold);
}

.check-icon::after {
    top: 4px;
    left: 4px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.icon-line {
    height: 5px;
    background-color: var(--accent-gold);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 43px;
    left: 17px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 14px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    position: absolute;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-sizing: content-box;
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 28px;
    z-index: 1;
    height: 70px;
    position: absolute;
    transform: rotate(-45deg);
}

/* 7. Footer Section */
.main-footer {
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-brand p.address, .footer-brand p.email {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-brand p.address i, .footer-brand p.email i {
    color: var(--accent-gold);
}

.footer-brand p.email a:hover {
    color: var(--accent-gold);
}

.footer-links h4, .footer-map h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-light);
}

.footer-links h4::after, .footer-map h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul li a {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-links ul li a:hover i {
    color: var(--accent-gold);
}

/* Map Design */
.map-wrapper {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    /* Custom gray layout filter for dark theme match */
    filter: grayscale(1) invert(0.92) contrast(1.1) brightness(0.95);
    -webkit-filter: grayscale(1) invert(0.92) contrast(1.1) brightness(0.95);
    transition: var(--transition-smooth);
}

.map-wrapper:hover iframe {
    filter: grayscale(0.5) invert(0) contrast(1) brightness(1);
    -webkit-filter: grayscale(0.5) invert(0) contrast(1) brightness(1);
}

.map-pin-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 19, 26, 0.9);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

.map-pin-label i {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* 8. Keyframes & Scroll Reveals */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
    }
    to {
        box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
    }
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 17px;
        top: 43px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 14px;
        top: 38px;
    }
}

/* GSAP Scroll Reveal fallbacks */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
}

/* Mock Prices Fallback styling */
.mock-price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.price-change {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-change.positive {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.price-change.negative {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top-btn:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--accent-gold-glow);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* 9. Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .oil-prices-panel {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .widgets-container {
        flex-direction: row;
        gap: 15px;
    }

    .tv-widget-box {
        flex: 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .activities-grid {
        gap: 30px;
    }
    
    .activity-card {
        height: 480px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-header {
        background-color: var(--glass-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--glass-border);
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-dark);
        transition: var(--transition-smooth);
        padding: 40px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

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

    .btn-contact-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 12px 0;
    }

    /* Mobile toggle close visual states */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-gold);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-gold);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .widgets-container {
        flex-direction: column;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links, .footer-map {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
