/* ==========================================================================
   THE GOLDIFY - PREMIUM LUXURY STYLESHEET (LIGHT EDITION)
   Apple-inspired Premium Soft Gold / Cream / Off-White Design System
   ========================================================================== */

/* Variables & Design Tokens */
:root {
    --color-cream-bg: #f5f4f0;       /* Main soft luxury cream background */
    --color-cream-section: #faf9f6;  /* Soft off-white for secondary sections */
    --color-cream-surface: #ffffff;  /* Pure white for cards and modules */
    --color-cream-border: #e3e0d8;   /* Light warm sand border */
    
    /* Luxury Gold & Bronze Tones (Inspired by concept.png & logo.png) */
    --gold-primary: #bfa37a;
    --gold-hover: #d5b88f;
    --gold-dark: #8d704b;
    --gold-light: #f7e6d0;
    --gold-gradient: linear-gradient(135deg, #c3a479 0%, #9c7d54 100%);
    --gold-gradient-hover: linear-gradient(135deg, #d3b58a 0%, #ab8b62 100%);
    
    /* Text colors (Dark text for high readability and Apple-like contrast) */
    --text-primary: #1d1d1f;
    --text-secondary: #515154;
    --text-muted: #86868b;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Spacing & Utilities */
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-pill: 50px;
    --border-radius-card: 16px;
    --border-radius-btn: 6px; /* Custom luxury soft corner button */
    
    --max-width: 1200px;
    --header-height: 70px;
}

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

html {
    scroll-snap-type: y mandatory;
}

/* Blog sayfalarında mıknatıs (scroll-snap) etkisini kapat */
html:has(.blog-page-body) {
    scroll-snap-type: none !important;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-cream-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-cream-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2; /* Sit above the background wave elements */
}

/* Background Wave overlay disabled globally to prevent scroll collision */
.site-bg-overlay {
    display: none;
}

/* Subtle background wave container for light sections */
.section-wave-bg {
    position: absolute;
    top: -15%;
    left: -5%;
    width: 110%;
    height: 130%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1; /* In front of section color, behind container */
    pointer-events: none;
    opacity: 0.05; /* Extremely subtle watermark on light sections */
    filter: grayscale(100%); /* Make it black and white to blend as a soft grey */
    mix-blend-mode: multiply; /* Blends beautifully with cream/white backgrounds */
    transform: translate3d(0, 0, 0); /* GPU acceleration */
    will-change: transform;
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Premium Badges */
.badge-wrapper {
    margin-bottom: 16px;
}
.premium-badge {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    background: rgba(191, 163, 122, 0.08);
    border: 1px solid rgba(191, 163, 122, 0.25);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    display: inline-block;
}

/* Buttons (Based on the gorgeous concept button design) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius-btn);
    transition: var(--transition-premium);
    cursor: pointer;
    border: none;
}

/* Gold Gradient Button (as requested from konsept.png) */
.btn-primary {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(156, 125, 84, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 125, 84, 0.3);
}

/* Dark Slate / Black Button (as requested from konsept2.png) */
.btn-secondary {
    background: var(--text-primary);
    color: #ffffff;
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(29, 29, 31, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-nav {
    padding: 9px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
}

/* Header & Navigation (Dynamic Glassmorphic - transitions on scroll) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(13, 13, 15, 0.45); /* Dark transparent on top of dark fume background */
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    transition: var(--transition-premium);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(245, 244, 240, 0.92); /* Light cream glassmorphism on scroll */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: #ffffff; /* White by default on dark hero background */
    transition: var(--transition-fast);
}

.main-header.scrolled .brand-name {
    color: var(--text-primary);
    background: linear-gradient(135deg, #1d1d1f 0%, #515154 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Light links on dark hero */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.main-header.scrolled .nav-link {
    color: var(--text-secondary); /* Dark links on scroll */
}

.main-header.scrolled .nav-link:hover, 
.main-header.scrolled .nav-link.active {
    color: var(--gold-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

.main-header.scrolled .mobile-menu-toggle .bar {
    background-color: var(--text-primary);
}

/* Hero Section (Contains the dark fume to light cream wave background.png) */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 30px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    overflow: hidden; /* Prevent distorted wave edges from showing */
    scroll-snap-align: start;
}

/* Parallax background wave container */
.hero-wave-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0); /* Enable GPU rendering */
    will-change: transform, opacity; /* Inform browser of upcoming animations */
}


/* Linear overlay on hero to guarantee light text readability on fume area */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.5) 0%, rgba(13, 13, 15, 0) 100%);
    z-index: 1; /* Above background, below container */
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: translateY(-40px);
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff; /* Explicit white color on dark background */
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75); /* Explicit light text color */
    margin-bottom: 28px;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

/* Hero Visual Mockup (High Tech Dark Glassmorphism to contrast on fume) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-mockup-wrapper {
    width: 100%;
    max-width: 540px;
    background: rgba(21, 21, 24, 0.85); /* Premium dark slate panel */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-premium);
}

.visual-mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(191, 163, 122, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: #0f0f11;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-header .dot.red { background-color: #ff5f56; }
.mockup-header .dot.yellow { background-color: #ffbd2e; }
.mockup-header .dot.green { background-color: #27c93f; }

.mockup-url {
    margin-left: 20px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-body {
    background: #0d0d0f;
    height: 330px; /* Precise height to display mockup web content landscape style */
    position: relative;
    overflow: hidden;
    padding: 0 !important; /* Slider fills the entire browser body */
}

/* Mockup Slider Container */
.mockup-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Web Mockup Slide */
.mockup-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.mockup-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

/* Mini Web Site Layout Design */
.mini-site {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
}

.mini-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-logo img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mini-logo span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
}

.mini-nav {
    display: flex;
    gap: 12px;
    font-size: 9px;
    font-weight: 500;
    opacity: 0.8;
}

.mini-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.mini-badge {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 20px;
    font-family: var(--font-primary);
}

.mini-site {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(135deg, #131316 0%, #1c1c21 100%);
    color: #ffffff;
}

.mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 18px;
}

.mini-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-logo img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-logo span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
    color: #ffffff;
}

.mini-nav {
    display: flex;
    gap: 12px;
    font-size: 9px;
    font-weight: 500;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

.mini-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.mini-badge {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(191, 163, 122, 0.12);
    color: #dfc299;
    font-family: var(--font-primary);
}

.mini-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.mini-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-desc {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 300;
    max-width: 380px;
    color: rgba(255, 255, 255, 0.75);
}

.mini-btn {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    background: var(--gold-gradient);
    color: #121215;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(191, 163, 122, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-primary);
    text-decoration: none; /* Reset link underline */
    display: inline-block; /* Ensure proper dimensions */
}

.mini-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(191, 163, 122, 0.25);
}



.active-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: var(--gold-primary);
    animation: pulse-ring 1.5s infinite;
}

.active-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: var(--gold-primary);
    animation: pulse-ring 1.5s infinite;
}

/* Hero Bottom Floating Bar (Matching konsept2.png footer design) */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(21, 21, 24, 0.9); /* Dark slate background as shown in konsept2 */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 18px 0;
    z-index: 10;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.15);
    transform: translate3d(0, 0, 0); /* GPU Acceleration */
    will-change: transform, opacity;
}

.bottom-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.bar-text h4 {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 600;
}

.bar-text p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}


/* Sections Global Structure */
section {
    padding: 50px 0;
    position: relative;
    overflow: hidden; /* Prevent background parallax offset from overflowing */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.title-line {
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

/* About Us Section */
.about-section {
    background: var(--color-cream-section);
}

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

.about-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-weight: 300;
    font-size: 14px;
}

.about-trust-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trust-card {
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(191, 163, 122, 0.08);
    border-color: var(--color-cream-border-hover);
}

.trust-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(191, 163, 122, 0.08);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.trust-card h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.trust-card p {
    font-size: 10px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 300;
}

/* Responsive adjustment for trust grid */
@media (max-width: 576px) {
    .about-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


.about-visual-content {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(191,163,122,0.15) 0%, rgba(0,0,0,0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-large {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(191, 163, 122, 0.2); /* Soft luxury gold/cream border */
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: float-logo 6s ease-in-out infinite;
}

.about-card-overlay {
    position: absolute;
    bottom: 8px;
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
}

.about-card-overlay h4 {
    font-size: 12px;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.about-card-overlay p {
    font-size: 8px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Services Section */
.services-section {
    background: var(--color-cream-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    border-radius: var(--border-radius-card);
    padding: 28px 24px;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-6px);
    background: var(--color-cream-surface);
    border-color: rgba(191, 163, 122, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--color-cream-section);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--color-cream-border);
    transition: var(--transition-premium);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
}

.service-title {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.service-desc {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

.service-hover-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-premium);
}

.service-card:hover .service-hover-indicator {
    width: 100%;
}

/* Tech Stack Section */
.tech-section {
    background: var(--color-cream-section);
    border-top: 1px solid var(--color-cream-border);
    border-bottom: 1px solid var(--color-cream-border);
    position: relative;
    overflow: hidden;
}

.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tech-title {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.tech-desc {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 28px;
    font-size: 13px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tech-feat-box {
    display: flex;
    gap: 14px;
}

.feat-icon {
    width: 36px;
    height: 36px;
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.tech-feat-box h5 {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 3px;
    font-weight: 600;
}

.tech-feat-box p {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 300;
}

.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tech-logo-card {
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    padding: 18px 10px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-premium);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.tech-logo-card:hover {
    border-color: rgba(191, 163, 122, 0.4);
    background: var(--color-cream-surface);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.tech-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.tech-sub {
    font-size: 9px;
    color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-section {
    background: var(--color-cream-bg);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(195, 164, 121, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    transition: var(--transition-premium);
}

.project-card {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    height: 320px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.project-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-placeholder-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.proj-letter {
    font-size: 80px;
    font-weight: 800;
    color: rgba(191, 163, 122, 0.15);
    font-family: var(--font-heading);
}

.proj-letter.black-txt {
    color: rgba(29, 29, 31, 0.08);
}

/* Gradients for project items */
.dark-gold-grad {
    background: linear-gradient(135deg, #efebe4 0%, #dbd6cb 100%);
}
.cream-silk-grad {
    background: linear-gradient(135deg, #fbfaf8 0%, #efebe4 100%);
}
.gold-metallic {
    background: linear-gradient(135deg, #e5e0d4 0%, #cecaa1 100%);
}
.dark-slate {
    background: linear-gradient(135deg, #e2e4e8 0%, #ced3dc 100%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-premium);
    z-index: 2;
    border-radius: var(--border-radius-card);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-tag-small {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-overlay h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.project-overlay p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.project-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.project-link:hover {
    color: var(--text-primary);
}

/* Contact Section & Form Styling */
.contact-section {
    background: var(--color-cream-section);
    border-top: 1px solid var(--color-cream-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
}

.contact-main-title {
    font-size: 32px;
    margin-top: 10px;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.contact-intro {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 13px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-cream-surface);
    border: 1px solid var(--color-cream-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
    flex-shrink: 0;
}

.detail-row h6 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-row p {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form-panel {
    background: #1c1c1f; /* Elegant soft fume card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.contact-form-panel h3 {
    color: #ffffff;
    font-weight: 700;
}

.contact-form-panel p {
    color: rgba(255, 255, 255, 0.7);
}

.goldify-form .form-row {
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: var(--border-radius-btn);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 12px;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(191, 163, 122, 0.15);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.8;
}

.btn-submit-form {
    width: 100%;
    margin-top: 10px;
}

.form-status-msg {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    display: none;
}

.form-status-msg.success {
    display: block;
    background: rgba(39, 201, 63, 0.08);
    border: 1px solid rgba(39, 201, 63, 0.15);
    color: #21a332;
}

.form-status-msg.error {
    display: block;
    background: rgba(255, 95, 86, 0.08);
    border: 1px solid rgba(255, 95, 86, 0.15);
    color: #d93d34;
}

/* Scroll Reveal Utility Classes (Left to Right Animation) */
.reveal-init {
    opacity: 0 !important;
    transform: translate3d(-60px, 0, 0) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity;
}

.reveal-init.revealed {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

/* Footer Section (Luxury Dark Theme) */
.main-footer {
    background: #121215;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 25px 0;
    scroll-snap-align: start;
}

.main-footer .brand-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -4px;
}

.main-footer .brand-name {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

/* Expanded Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 10px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 30px 0 18px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a1c;
    color: #ffffff;
    padding: 60px 0 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-premium);
}

.faq-item:hover {
    border-color: rgba(191, 163, 122, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold-primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 26px 26px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-bottom-bar {
        margin-top: 30px;
    }
    .bottom-bar-container {
        flex-direction: column;
        gap: 16px;
    }
    .bar-divider {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual-content {
        order: -1;
    }
    
    .tech-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .header-cta .btn-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .main-header {
        height: 70px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
    .visual-mockup-wrapper {
        max-width: 100%;
    }
    .mockup-body {
        height: 240px;
    }
    .bar-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Nav Overlay Toggle Classes */
.mobile-nav-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(245, 244, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-premium);
    pointer-events: none;
}

.mobile-nav-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--gold-dark);
}

.mobile-cta-btn {
    margin-top: 10px;
}

/* Mobile Menu Active Hamburger State */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Premium Soft Fume Section Theme Overrides */
.fume-section {
    background: #1c1c1f; /* Elegant soft fume grey instead of cream */
    color: #ffffff;
}

.fume-section .section-title {
    color: #ffffff;
}

.fume-section .section-tag {
    color: var(--gold-primary);
}

.fume-section .title-line {
    background: var(--gold-gradient);
}

.fume-section .service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

.fume-section .service-card .service-title {
    color: #ffffff;
}

.fume-section .service-card .service-desc {
    color: rgba(255, 255, 255, 0.7);
}

.fume-section .service-card .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-primary);
    border-color: rgba(255, 255, 255, 0.08);
}

.fume-section .service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(191, 163, 122, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.fume-section .project-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.fume-section .project-info {
    background: #151518;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.fume-section .project-title {
    color: #ffffff;
}

.fume-section .project-category {
    color: var(--gold-primary);
}

.fume-section .project-card:hover {
    border-color: rgba(191, 163, 122, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.fume-section .section-wave-bg {
    opacity: 0.035; /* Soft dark-fume watermark */
    filter: invert(1) grayscale(100%);
    mix-blend-mode: screen;
}

/* About Section Fume Styles Override */
.fume-section .about-p {
    color: rgba(255, 255, 255, 0.75);
}

.fume-section .about-subtitle {
    color: #ffffff;
}

.fume-section .trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fume-section .trust-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(191, 163, 122, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.fume-section .trust-card h4 {
    color: #ffffff;
}

.fume-section .trust-card p {
    color: rgba(255, 255, 255, 0.65);
}

.fume-section .trust-icon-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gold-primary);
}

.fume-section .about-card-overlay {
    background: rgba(21, 21, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fume-section .about-card-overlay h4 {
    color: #ffffff;
}

.fume-section .about-card-overlay p {
    color: var(--gold-primary);
}

/* References Section Styles */
.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.reference-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.reference-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(191, 163, 122, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.reference-logo-area {
    padding: 28px 24px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 12px;
}

.ref-svg-icon {
    color: var(--gold-primary);
    filter: drop-shadow(0 0 8px rgba(191, 163, 122, 0.3));
}

.reference-logo-area h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    font-family: var(--font-primary);
}

.reference-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ref-sector {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.ref-project-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.ref-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.ref-visit-btn {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-top: auto;
}

.ref-visit-btn svg {
    transition: transform 0.2s;
}

.ref-visit-btn:hover {
    color: var(--gold-primary);
}

.ref-visit-btn:hover svg {
    transform: translate(2px, -2px);
}

.ref-visit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.reference-card:hover .ref-visit-btn {
    color: var(--gold-primary);
}

.reference-card:hover .ref-visit-btn svg {
    transform: translate(2px, -2px);
}

/* Responsive grid for references */
@media (max-width: 992px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */
.blog-page-body {
    background-color: #faf9f6;
    color: #1c1c1f;
}

/* Blog Hero Section (Luxury Dark) */
.blog-hero {
    background-color: #121215;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.blog-hero-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.blog-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

/* Blog Layout Grid */
.blog-layout-section {
    padding: 80px 0;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
}

/* Blog Main Area & Post Cards */
.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-post-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(191, 163, 122, 0.08);
    border-color: rgba(191, 163, 122, 0.25);
}

.blog-post-visual {
    height: 200px;
    background: #1c1c1f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    color: #121215;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
}

.blog-post-icon {
    color: var(--gold-primary);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(191, 163, 122, 0.3));
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-icon {
    transform: scale(1.15) rotate(5deg);
}

.blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.blog-post-card:hover .blog-post-image {
    transform: scale(1.05);
}

/* Ensure badge stays on top of the image */
.blog-post-badge {
    z-index: 2;
}

.blog-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-post-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-post-title a {
    color: #121215;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-title a:hover {
    color: var(--gold-primary);
}

.blog-post-excerpt {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(28, 28, 31, 0.7);
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-post-link {
    font-size: 12px;
    font-weight: 700;
    color: #121215;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    transition: color 0.2s, transform 0.2s;
}

.blog-post-link:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

/* Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.widget-title {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: #121215;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

/* Search Widget */
.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: #faf9f6;
    font-size: 13px;
    color: #1c1c1f;
    outline: none;
    font-family: var(--font-primary);
    transition: border-color 0.2s;
}

.search-form input:focus {
    border-color: var(--gold-primary);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #121215;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 12px;
}

.categories-widget li:last-child {
    margin-bottom: 0;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(28, 28, 31, 0.8);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.categories-widget a span {
    font-size: 11px;
    color: rgba(28, 28, 31, 0.4);
    font-weight: 600;
}

.categories-widget a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

/* Premium Sidebar CTA Widget */
.sidebar-widget.cta-widget {
    background: #1c1c1f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: center;
    padding: 40px 30px;
}

.sidebar-widget.cta-widget .cta-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.sidebar-widget.cta-widget .cta-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 25px;
}

.sidebar-widget.cta-widget .btn-cta {
    width: 100%;
    padding: 12px 20px;
    font-size: 11px;
}

/* Responsive Blog Layout */
@media (max-width: 992px) {
    .blog-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .blog-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 30px;
    }
    .blog-post-title {
        font-size: 20px;
    }
    .blog-hero {
        padding: 140px 0 80px;
    }
}


/* ==========================================
   SINGLE BLOG POST TYPOGRAPHY STYLES
   ========================================== */
.post-hero {
    padding: 160px 0 80px;
}

.post-meta span {
    margin: 0 10px;
}

.post-meta span:first-child {
    margin-left: 0;
}

.post-meta span:last-child {
    margin-right: 0;
}

.post-content-area {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(28, 28, 31, 0.8);
}

.post-content-area .lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #121215;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.post-content-area h2 {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 700;
    color: #121215;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.post-content-area p {
    margin-bottom: 20px;
}

.post-content-area blockquote {
    border-left: 3px solid var(--gold-primary);
    padding: 10px 0 10px 24px;
    margin: 35px 0;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-style: italic;
    color: #121215;
    line-height: 1.6;
    background: rgba(191, 163, 122, 0.05);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.post-content-area ul {
    margin: 25px 0 25px 20px;
    padding: 0;
}

.post-content-area li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.post-content-area strong {
    color: #121215;
}

/* Sidebar Recent Posts Overrides */
.recent-posts-widget li:last-child {
    margin-bottom: 0 !important;
}

.recent-posts-widget a:hover {
    color: var(--gold-primary) !important;
}
/* Floating WhatsApp Button (Gold Theme) */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(191, 163, 122, 0.4);
    z-index: 1000;
    transition: var(--transition-premium);
    animation: float-wa 3s ease-in-out infinite;
}

.floating-wa-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(191, 163, 122, 0.6);
    color: #ffffff;
}

.floating-wa-btn .wa-icon {
    width: 38px;
    height: 38px;
}

@keyframes float-wa {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
    }
}
