@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Syne:wght@800&display=swap');

/* --- GLOBAL RESET: GHOST SCROLL (HIDE SCROLLBAR) --- */
html, body {
    -ms-overflow-style: none !important; /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}

::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari and Opera */
}

:root {
    --bg-dark: #080c08;
    --bg-light: #fdfcf9;
    --accent-gold: #c5a059;
    --accent-gold-soft: #d9bf8f;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --primary-leaf: #142b14;
    --glass: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 160px 0;
    position: relative;
}

/* --- Navigation: Sultan Glassmorphism --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    padding: 15px 8%;
    background: rgba(253, 252, 249, 0.85);
    backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-decoration: none;
    color: var(--primary-leaf);
    text-transform: uppercase;
}

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

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-actions { display: flex; align-items: center; gap: 20px; }
.mobile-only { display: none; }
.desktop-only { display: block; }

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2000;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-leaf);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background: var(--accent-gold); }
.burger.active span:nth-child(2) { transform: rotate(-45deg) translate(2px, -3px); background: var(--accent-gold); }

.nav-links a:hover::after { width: 100%; }

/* --- INFRASTRUCTURE: MARQUEE & PEPES FULL --- */
.logo-marquee { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0; background: #fff; border-top: 1px solid rgba(0,0,0,0.03); }
.logo-track { display: inline-flex; animation: marqueeScroll 45s linear infinite; width: max-content; }
.partner-logo { padding: 0 70px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; color: #ddd; letter-spacing: 5px; filter: grayscale(1); opacity: 0.3; transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.partner-logo:hover { opacity: 1; filter: grayscale(0); color: var(--accent-gold); transform: scale(1.1); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.pepes-full-section { position: relative; width: 100%; height: 160vh; overflow: hidden; background: #000; }
.pepes-img-full { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transform: scale(1.1); animation: slowZoom 40s linear infinite alternate; }
@keyframes slowZoom { from { transform: scale(1.1); } to { transform: scale(1.2); } }

.pepes-overlay-content { position: absolute; z-index: 10; top: 50%; left: 8%; transform: translateY(-50%); max-width: 700px; color: white; text-align: left; }
.pepes-overlay-content h2 { font-size: 3.5rem !important; margin-bottom: 25px !important; color: white !important; line-height: 1.1 !important; text-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.pepes-quote-box { border-left: 3px solid var(--accent-gold); padding-left: 35px; background: rgba(0,0,0,0.2); backdrop-filter: blur(8px); padding-top: 25px; padding-bottom: 25px; border-radius: 0 25px 25px 0; }
.pepes-quote-box p { font-size: 1.5rem !important; font-style: italic; opacity: 0.95; line-height: 1.8 !important; color: white !important; margin: 0 !important; }

/* --- REVEAL ANIMATIONS (SULTAN ENGINE) --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.25s cubic-bezier(0.165, 0.84, 0.44, 1); pointer-events: none; }
.reveal.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 991px) {
    .pepes-full-section { height: auto !important; padding: 60px 0 !important; background: #fdfcf9 !important; }
    .pepes-img-full { height: 280px !important; border-radius: 30px !important; width: 92% !important; margin: 0 auto !important; display: block !important; opacity: 1 !important; animation: none !important; transform: none !important; }
    .pepes-overlay-content { position: relative !important; top: 0 !important; left: 0 !important; transform: none !important; padding: 25px !important; text-align: center !important; color: #1a1a1a !important; margin: 0 auto !important; }
    .pepes-overlay-content h2 { font-size: 2.22rem !important; color: #1a1a1a !important; margin-bottom: 15px !important; text-shadow: none !important; }
    .pepes-quote-box { border: none !important; padding: 0 !important; background: transparent !important; backdrop-filter: none !important; }
    .pepes-quote-box p { color: #444 !important; font-size: 0.95rem !important; text-align: center !important; }
}

/* --- Hero Section (The Masterpiece) --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end; /* Move content to bottom */
    justify-content: flex-start;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.1);
    animation: slowFloat 40s infinite alternate;
    filter: saturate(1.2) contrast(1.1);
}

@keyframes slowFloat {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.2) translate(-2%, -2%); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    max-width: 600px; /* Much more compact */
    width: 100%;
    padding: 0 0 100px 8%; /* Padding only at the bottom and left */
}

.hero-content .subtitle {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 5px; /* Tighter connection to H1 */
    display: block;
    font-weight: 800;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 3.5rem; /* Compact yet impactful */
    line-height: 0.9;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #fff, var(--accent-gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.hero-content h1 span {
    display: block;
    color: var(--accent-gold);
    font-size: 2.8rem;
    letter-spacing: -1px;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.4s;
}

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

.btn-gold:hover {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.6);
}

.btn-glisten {
    position: relative;
    overflow: hidden;
}

.btn-glisten::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: flash 3s infinite;
}

@keyframes flash {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}


/* --- Editorial Grid (Philosophy) --- */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.editorial-tag {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.editorial-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--primary-leaf);
}

.services-headline {
    font-size: 4.5rem;
    line-height: 1.0;
    letter-spacing: -2px;
}

.editorial-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.image-shifter {
    position: relative;
}

.image-shifter img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: 40px 40px 0 var(--soft-cream);
}

/* --- Menu Showcase (The Juicy Cards) --- */
.showcase-header {
    text-align: center;
    margin-bottom: 100px;
}

.showcase-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: var(--bg-dark);
}

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

.showcase-card {
    height: 600px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover img {
    transform: scale(1.1);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(20px);
    transition: 0.5s;
}

.showcase-card:hover .showcase-info {
    transform: translateY(0);
}

.showcase-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.showcase-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Parallax Divider --- */
.parallax-banner {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.parallax-banner h2 {
    font-size: 5rem;
    text-align: center;
    font-style: italic;
}

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

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* --- Steam/Smoke Animation --- */
.steam-container {
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 60%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.steam {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(50px);
    animation: rise 6s infinite ease-in-out;
    opacity: 0;
}

.steam:nth-child(1) { width: 300px; height: 300px; left: 10%; animation-delay: 0s; }
.steam:nth-child(2) { width: 400px; height: 400px; left: 30%; animation-delay: 2s; }
.steam:nth-child(3) { width: 350px; height: 350px; left: 50%; animation-delay: 4s; }

/* --- Antigravity Signature Hero v2 --- */
.hero-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 360px;
    background: rgba(8, 12, 8, 0.85);
    backdrop-filter: blur(30px);
    z-index: 10;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(197, 160, 89, 0.1);
    animation: slideInLeft 3s cubic-bezier(0.16, 1, 0.3, 1); /* Slowed down to 3s */
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
    opacity: 0.6;
}

.brand-divider {
    width: 1px;
    height: 60px;
    background: var(--accent-gold);
    margin: 30px auto;
}

.sidebar-brand h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: white;
    margin-top: 20px;
    white-space: nowrap;
    margin-bottom: 5px;
}

.sidebar-glow-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; /* Smaller as requested */
    color: var(--accent-gold);
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
}

.sidebar-philosophy p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.cta-link:hover { gap: 25px; color: white; }

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--accent-gold);
    z-index: 5;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--accent-gold);
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* --- Heritage & Heart Section --- */
#heritage-heart {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background: #000;
}

.rawon-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.rawon-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.rawon-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #000 0%, transparent 50%, #000 100%);
    z-index: 2;
}

.heritage-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.heritage-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.heritage-image-empty {
    height: 600px;
}

.heritage-text {
    padding: 60px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
}

.heritage-headline {
    font-size: 4.5rem;
    line-height: 1.0;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.heritage-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 600px;
}


/* Chat Bubble Overlay */
.chat-bubble {
    position: absolute;
    top: 30px;
    left: -180px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 30px 30px 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: bubbleBounce 3s infinite;
}

.chat-bubble span { font-weight: 800; color: var(--accent-gold); display: block; }
.chat-bubble p { margin: 0; font-size: 0.85rem; }

@keyframes bubbleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 380px;
    width: 350px;
    height: 480px;
    background: rgba(15, 20, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    z-index: 200;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.chat-window.active { display: flex; animation: chatSlideUp 0.4s ease; }

.chat-header {
    background: rgba(197, 160, 89, 0.15);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.chat-header img { width: 45px; height: 45px; object-fit: cover; border-radius: 50%; border: 1px solid var(--accent-gold); }

.chat-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }

.message { padding: 12px 18px; border-radius: 20px; max-width: 80%; font-size: 0.9rem; line-height: 1.5; }
.message.bot { background: rgba(255,255,255,0.08); color: white; align-self: flex-start; border-radius: 0 20px 20px 20px; border: 1px solid rgba(255,255,255,0.1); }
.message.user { background: var(--accent-gold); color: var(--bg-dark); align-self: flex-end; border-radius: 20px 20px 0 20px; font-weight: 600; }

.chat-footer { padding: 15px; display: flex; gap: 10px; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.1); }
.chat-footer input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 18px; border-radius: 25px; color: white; outline: none; }

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

.hospitality-lady-wrapper {
    position: fixed;
    bottom: -50px;
    right: 2%;
    width: 420px;
    z-index: 100;
    cursor: pointer;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 2s ease;
}

.hospitality-lady-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* Corporate Section Refinement */
.services-content {
    animation: fadeInLeft 1.2s ease;
}

.mini-service-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.mini-service-card:hover {
    transform: translateX(10px);
}

.mini-img {
    overflow: hidden;
    border-radius: 10px;
}

.mini-img img {
    transition: transform 0.6s ease;
}

.mini-service-card:hover .mini-img img {
    transform: scale(1.1);
}

.services-main-image {
    animation: fadeInRight 1.5s ease;
}



/* --- Education / Tutorials Slider (Sultan Slider Fleet) --- */
.tutorials-section { padding: 80px 0; background: #fdfcf9; overflow: hidden; border-top: 1px solid rgba(0,0,0,0.03); }
.tutorials-headline {
    color: var(--primary-leaf);
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}
.tutorials-grid {
    display: flex;
    flex-wrap: nowrap !important; /* Critical: Forces cards in one row */
    gap: 30px;
    overflow-x: auto;
    padding: 20px 8% 50px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.tutorials-grid::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

.tutorial-card {
    flex: 0 0 calc(100% / 6 - 25px); /* Sultan Math: Exactly 6 Per Row */
    min-width: 220px; /* Enhanced stability */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}
.tutorial-card:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 40px 80px rgba(0,0,0,0.12); 
}
.tutorial-card img { 
    width: 100%; 
    height: 300px; /* High Authority Height */
    object-fit: cover; 
    transition: 0.8s;
    border-bottom: 3px solid rgba(197, 160, 89, 0.05);
}
.tutorial-info { padding: 35px 25px; text-align: left; flex: 1; display: flex; flex-direction: column; }
.tutorial-info h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 1.1rem; 
    line-height: 1.2; 
    margin: 8px 0 15px; 
    font-weight: 800; 
    color: var(--bg-dark); 
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.tutorial-date { font-size: 0.55rem; letter-spacing: 2px; color: var(--accent-gold); font-weight: 800; text-transform: uppercase; }
.read-more { font-size: 0.7rem; font-weight: 800; color: var(--bg-dark); text-decoration: none; text-transform: uppercase; margin-top: auto; display: flex; align-items: center; gap: 8px; }

/* --- SULTAN GLOBAL TYPOGRAPHY SYNC --- */
.showcase-info h3, .mini-service-card h4, .tutorial-info h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif !important; 
    font-weight: 800 !important; 
    text-transform: uppercase !important; 
    letter-spacing: -0.5px !important; 
    line-height: 1.2 !important;
}

.showcase-info h3 { font-size: 1.5rem !important; margin-bottom: 12px !important; }
.mini-service-card h4 { font-size: 1.1rem !important; color: var(--accent-gold) !important; margin-bottom: 10px !important; }
.tutorial-info h3 { font-size: 1.1rem !important; color: var(--bg-dark) !important; margin-bottom: 10px !important; }

.showcase-header { margin-bottom: 60px; text-align: center; }
.showcase-headline { 
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 3rem !important; 
    font-weight: 800 !important;
    letter-spacing: -2px !important; 
    line-height: 0.9 !important; 
    margin: 15px 0 !important; 
    text-transform: uppercase !important;
}
.showcase-subtitle { font-size: 1rem; color: #666; max-width: 600px; margin: 0 auto; opacity: 0.7; }

