/**
 * InvestmentWP Main Stylesheet
 *
 * @package InvestmentWP
 * @since 1.0.0
 */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   Elementor Compatibility
   ============================================ */
.elementor-page-content {
    width: 100%;
    overflow-x: hidden;
}

.elementor-content-wrapper {
    width: 100%;
    max-width: 100%;
}

/* Elementor compatible layouts */
.elementor-compatible {
    width: 100%;
    overflow-x: hidden;
}

.elementor-compatible .container {
    max-width: 100%;
    width: 100%;
}

.elementor-compatible .entry-content {
    width: 100%;
}

/* Elementor page settings */
.elementor-page .elementor-content-wrapper {
    padding: 0;
}

.elementor-page .elementor-content-wrapper .elementor {
    width: 100%;
}

/* Layout specific Elementor compatibility */
.elementor-layout-full-width .elementor-content-wrapper {
    max-width: 100%;
    padding: 0;
}

.elementor-layout-boxed .elementor-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-layout-centered .elementor-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-layout-wide-content .elementor-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-layout-narrow-content .elementor-content-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-layout-investment .elementor-content-wrapper,
.elementor-layout-corporate .elementor-content-wrapper,
.elementor-layout-service .elementor-content-wrapper,
.elementor-layout-about .elementor-content-wrapper,
.elementor-layout-contact .elementor-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Elementor editor mode */
.elementor-editor-active .site-main {
    min-height: auto;
    padding: 0 !important;
}

.elementor-editor-active .elementor-content-wrapper {
    min-height: 400px;
}

/* Elementor preview mode */
.elementor-preview-mode .site-main {
    overflow: visible;
    padding: 0 !important;
}

/* Elementor page - Remove .site-main padding completely when Elementor is used */
.elementor-page .site-main,
body.elementor-page .site-main,
#page.elementor-page .site-main,
.site.elementor-page .site-main {
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Elementor content area - Full compatibility */
.elementor-page .elementor-content-wrapper,
.elementor-page .entry-content,
.elementor-page .site-main {
    padding: 0 !important;
    margin: 0 !important;
}

/* Elementor sections - No interference */
.elementor-section {
    position: relative;
    z-index: 1;
}

/* Elementor widgets - Perfect alignment */
.elementor-widget {
    position: relative;
}

/* Elementor columns - No padding interference */
.elementor-column {
    position: relative;
}

/* Force Full Width for Elementor Pages */
.elementor-page .site-main,
.elementor-page .elementor-content-wrapper,
.elementor-page .entry-content,
.elementor-page .page-content-wrapper,
.elementor-editor-active .site-main,
.elementor-editor-active .elementor-content-wrapper,
.elementor-editor-active .entry-content,
.elementor-editor-active .page-content-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure container inside Elementor compatible layout can go full width */
.elementor-page .container,
.elementor-editor-active .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

:root {
    --primary-color: #0073aa;
    --secondary-color: #005177;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

/* ============================================
   Layout
   ============================================ */
html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

#page {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Container max-width based on theme option */
.container {
    max-width: var(--container-width, 1200px);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
    box-sizing: border-box;
}

[class*="col-"] {
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

.col-12 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Desktop column widths */
@media (min-width: 769px) {
    .col-md-3 {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        width: 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-md-5 {
        width: 41.666%;
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-md-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        width: 58.333%;
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-md-8 {
        width: 66.666%;
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .col-md-9 {
        width: 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-8 {
        width: 66.666%;
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .col-lg-4 {
        width: 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* ============================================
   Page Layout Templates
   ============================================ */

/* Investment Page Layout */
.investment-page-layout {
    padding: 60px 0;
}

.investment-header {
    margin-bottom: 50px;
    text-align: center;
}

.investment-title-section {
    max-width: 800px;
    margin: 0 auto;
}

.investment-title-section .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.investment-title-section .page-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.investment-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.investment-main-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Corporate Page Layout */
.corporate-page-layout {
    padding: 50px 0;
}

.corporate-content-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.corporate-page-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.corporate-page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.corporate-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

.corporate-page-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Blog Style Page Layout */
.blog-style-page-layout {
    padding: 50px 0;
}

.blog-style-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-style-post {
    background: #fff;
    padding: 0;
}

.blog-style-entry-header {
    margin-bottom: 30px;
}

.blog-style-entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-style-entry-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-style-post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-style-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-style-entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Service Page Layout */
.service-page-layout {
    padding: 50px 0;
}

.service-page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-page-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-page-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-page-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.service-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-page-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-content-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* About Page Layout */
.about-page-layout {
    padding: 50px 0;
    width: 100%;
    overflow-x: hidden;
}

.about-page-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.about-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-page-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-page-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-page-main {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Layout */
.contact-page-layout {
    padding: 50px 0;
    width: 100%;
    overflow-x: hidden;
}

.contact-page-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

.contact-page-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-page-main {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Full Width Layout */
.page-layout-full-width {
    width: 100%;
    padding: 0;
}

.page-layout-full-width .page-content-wrapper {
    max-width: 100%;
    padding: 40px 20px;
}

.page-layout-full-width .page-thumbnail {
    width: 100%;
    margin-bottom: 30px;
}

.page-layout-full-width .page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Boxed Layout */
.page-layout-boxed {
    padding: 40px 0;
}

.page-layout-boxed .boxed-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.page-layout-boxed .page-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-layout-boxed .page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Centered Layout */
.page-layout-centered {
    padding: 40px 0;
}

.page-layout-centered .centered-content-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    box-sizing: border-box;
}

.page-layout-centered .entry-header {
    margin-bottom: 30px;
}

.page-layout-centered .entry-title {
    text-align: center;
}

.page-layout-centered .page-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-layout-centered .page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.page-layout-centered .entry-content {
    text-align: left;
}

/* Template Classes */
.page-template-full-width .container {
    max-width: 100%;
    padding: 0 15px;
    width: 100%;
}

.page-template-boxed .container {
    max-width: var(--container-width, 1200px);
    width: 100%;
}

.page-template-centered .container {
    max-width: var(--container-width, 1200px);
    width: 100%;
}

.page-template-no-sidebar .col-12 {
    width: 100%;
}

.page-template-left-sidebar .row {
    flex-direction: row-reverse;
}

/* Wide Content Layout */
.page-layout-wide-content {
    padding: 40px 0;
    width: 100%;
    overflow-x: hidden;
}

.page-layout-wide-content .wide-content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Narrow Content Layout */
.page-layout-narrow-content {
    padding: 40px 0;
    width: 100%;
    overflow-x: hidden;
}

.page-layout-narrow-content .narrow-content-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Split Layout */
.page-layout-split {
    width: 100%;
    overflow-x: hidden;
}

.split-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Magazine Layout */
.page-layout-magazine {
    padding: 40px 0;
}

.magazine-header {
    margin-bottom: 40px;
}

.magazine-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.magazine-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.magazine-header .entry-header {
    text-align: center;
    margin-bottom: 20px;
}

.magazine-header .entry-meta {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.magazine-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Portfolio Layout */
.page-layout-portfolio {
    padding: 40px 0;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.portfolio-featured-image {
    position: sticky;
    top: 20px;
}

.portfolio-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.portfolio-info {
    padding: 20px 0;
}

/* Landing Page Layout */
.page-layout-landing {
    width: 100%;
}

.landing-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

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

.landing-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.landing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.landing-content {
    padding: 60px 0;
}

/* Minimal Layout */
.page-layout-minimal {
    padding: 60px 0;
}

.minimal-content-wrapper {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.minimal-content-wrapper .entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.minimal-content-wrapper .page-thumbnail {
    margin-bottom: 30px;
}

/* Creative Layout */
.page-layout-creative {
    padding: 40px 0;
}

.creative-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.creative-image-wrapper {
    position: relative;
}

.creative-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.creative-image img {
    width: 100%;
    height: auto;
    display: block;
}

.creative-content {
    padding: 20px;
}

/* Grid Layout */
.page-layout-grid {
    padding: 40px 0;
}

.grid-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.grid-header {
    position: sticky;
    top: 20px;
}

.grid-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.grid-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Masonry Layout */
.page-layout-masonry {
    padding: 40px 0;
}

.masonry-wrapper {
    column-count: 2;
    column-gap: 30px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 30px;
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.masonry-thumbnail {
    width: 100%;
}

.masonry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.masonry-content {
    padding: 20px;
}

/* Two Column Layout */
.page-layout-two-column {
    padding: 40px 0;
}

.two-column-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

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

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.two-column-image {
    position: sticky;
    top: 20px;
}

.two-column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Three Column Layout */
.page-layout-three-column {
    padding: 40px 0;
}

.three-column-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.three-column-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.three-column-image {
    position: sticky;
    top: 20px;
}

.three-column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.three-column-sidebar {
    position: sticky;
    top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

/* Responsive Styles for New Layouts */
@media (max-width: 1024px) {
    .split-layout-container {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 400px;
    }

    .portfolio-content {
        grid-template-columns: 1fr;
    }

    .creative-layout {
        grid-template-columns: 1fr;
    }

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

    .masonry-wrapper {
        column-count: 1;
    }

    .two-column-content {
        grid-template-columns: 1fr;
    }

    .three-column-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-layout-boxed .boxed-content-wrapper {
        padding: 20px;
        margin: 0 15px;
    }

    .page-layout-centered .centered-content-wrapper {
        padding: 0 15px;
    }

    .page-layout-full-width .page-content-wrapper {
        padding: 20px 15px;
    }

    .col-md-6,
    .col-md-8,
    .col-md-4 {
        width: 100%;
    }
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header-minimal {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-minimal .header-main {
    padding: 15px 0;
}

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

.header-centered .header-main {
    padding: 30px 0;
}

.header-centered .site-branding {
    margin-bottom: 20px;
}

.header-centered .main-navigation {
    justify-content: center;
}

.header-modern {
    background-color: #1a1a1a;
}

.header-modern .header-top {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 12px 0;
    font-size: 14px;
}

.header-modern .header-top a {
    color: #ffffff;
}

.header-modern .header-main {
    background-color: #1a1a1a;
    padding: 20px 0;
}

.header-modern .site-title a,
.header-modern .nav-menu a {
    color: #ffffff;
}

.header-modern .nav-menu a:hover {
    color: var(--primary-color);
}

.header-modern .menu-toggle span {
    background-color: #ffffff;
}

/* Professional Header Styles - Investment Theme */
.header-professional-1 {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.header-professional-1 .header-top-bar {
    background: linear-gradient(135deg, #1e3a5f 0%, #005177 100%);
    padding: 12px 0;
    border-bottom: none;
    font-size: 14px;
    color: #ffffff;
}

.header-professional-1 .header-top-bar .info-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.header-professional-1 .header-top-bar .info-item i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 16px;
}

.header-professional-1 .header-social-links a {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-professional-1 .header-social-links a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

.header-professional-1 .header-info {
    display: flex;
    gap: 20px;
}

.header-professional-1 .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.header-professional-1 .header-social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #666;
    margin-left: 5px;
    transition: var(--transition);
}

.header-professional-1 .header-social-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.header-professional-1 .header-main-bar {
    padding: 22px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

.sticky-header.scrolled.header-professional-1 .header-main-bar {
    padding: 15px 0;
}

.header-professional-1 .header-search-btn button,
.header-professional-1 .corporate-search-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666666;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.header-professional-1 .header-search-btn button .icon-search,
.header-professional-1 .corporate-search-btn .icon-search,
.header-professional-1 .header-search-btn button i.icon-search,
.header-professional-1 .corporate-search-btn i.icon-search,
.header-professional-1 .header-search-btn button span.icon-search,
.header-professional-1 .corporate-search-btn span.icon-search,
.header-professional-1 .header-icon {
    color: #666666;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
    font-size: 16px;
}

.header-professional-1 .header-search-btn button:hover,
.header-professional-1 .corporate-search-btn:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    color: #333333;
}

.header-professional-1 .header-search-btn button:hover .icon-search,
.header-professional-1 .corporate-search-btn:hover .icon-search,
.header-professional-1 .header-search-btn button:hover i.icon-search,
.header-professional-1 .corporate-search-btn:hover i.icon-search,
.header-professional-1 .header-search-btn button:hover span.icon-search,
.header-professional-1 .corporate-search-btn:hover span.icon-search {
    color: #333333;
}

.header-professional-1 .header-cta-btn,
.investment-cta {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.25);
    margin-left: 12px;
    border: none;
}

.header-professional-1 .header-cta-btn:hover,
.investment-cta:hover {
    background: linear-gradient(135deg, #005177 0%, #003d5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.35);
    color: #ffffff;
}

.header-professional-2 {
    background: linear-gradient(135deg, #1e3a5f 0%, #005177 100%);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.header-professional-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.header-professional-2 .header-wrapper {
    padding: 28px 0;
    position: relative;
    z-index: 1;
    transition: padding 0.3s ease;
}

.sticky-header.scrolled.header-professional-2 .header-wrapper {
    padding: 18px 0;
}

.header-professional-2 .site-title a,
.header-professional-2 .nav-menu a {
    color: #ffffff;
    font-weight: 500;
}

.header-professional-2 .nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.header-professional-2 .header-actions-group {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.header-professional-2 .search-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    padding: 8px 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 40px;
    height: 40px;
}

.header-professional-2 .search-toggle .icon-search,
.header-professional-2 .search-toggle i.icon-search,
.header-professional-2 .search-toggle span.icon-search {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.header-professional-2 .search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.header-professional-2 .search-toggle:hover .icon-search,
.header-professional-2 .search-toggle:hover i.icon-search,
.header-professional-2 .search-toggle:hover span.icon-search {
    color: #ffffff;
}

.header-professional-2 .cta-button-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #005177;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.header-professional-2 .cta-button-primary:hover {
    background: #ffffff;
    color: #003d5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mega Menu Header */
.header-mega-menu {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-mega-menu .header-top-info {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px;
}

.header-mega-menu .header-info-items {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.header-mega-menu .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.header-mega-menu .header-utilities {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.header-mega-menu .language-switcher select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 13px;
}

.header-mega-menu .header-social-mini a {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    margin-left: 5px;
    transition: var(--transition);
}

.header-mega-menu .header-social-mini a:hover {
    background: var(--primary-color);
    color: #fff;
}

.header-mega-menu .header-main-nav {
    padding: 20px 0;
    background: #fff;
}

.header-mega-menu .mega-menu-nav {
    position: relative;
}

.header-mega-menu .mega-menu>li {
    position: static;
}

.header-mega-menu .mega-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
    z-index: 999;
}

.header-mega-menu .mega-menu>li:hover>.mega-submenu {
    display: grid;
}

.header-mega-menu .mega-main-nav {
    overflow: visible;
}

.header-mega-menu .mega-main-nav .row {
    overflow: visible;
    flex-wrap: nowrap;
}

.header-mega-menu .mega-main-nav .col-logo-mega {
    flex: 0 0 25%;
    max-width: 25%;
    overflow: visible;
}

.header-mega-menu .mega-main-nav .col-menu-mega {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: visible;
}

.header-mega-menu .mega-main-nav .col-actions-mega {
    flex: 0 0 25%;
    max-width: 25%;
    overflow: visible;
    position: relative;
    min-width: 0;
}

.header-mega-menu .header-actions-mega {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.header-mega-menu .search-toggle-mega {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
    min-width: 36px;
    width: auto;
    box-sizing: border-box;
    white-space: nowrap;
}

.header-mega-menu .search-toggle-mega:hover {
    border-color: #0073aa;
    color: #0073aa;
    background: #f9fafb;
}

.header-mega-menu .search-toggle-mega .icon-search {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

.header-mega-menu .cta-mega-button {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 1;
    white-space: nowrap;
    font-size: 13px;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-mega-menu .cta-mega-button:hover {
    background: linear-gradient(135deg, #005177 0%, #003d5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* Split Header */
.header-split {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-split .header-split-wrapper {
    padding: 25px 0;
}

.header-split .site-branding {
    text-align: center;
}

.header-split .nav-menu-left,
.header-split .nav-menu-right {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.header-split .nav-menu-left {
    justify-content: flex-end;
    padding-right: 20px;
}

.header-split .nav-menu-right {
    justify-content: flex-start;
    padding-left: 20px;
}

.header-split .nav-menu-left li,
.header-split .nav-menu-right li {
    margin: 0 15px;
}

.header-split .header-actions-split {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    flex-wrap: nowrap;
}

.header-split .split-search-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
}

.header-split .split-search-btn:hover {
    border-color: #0073aa;
    color: #0073aa;
    background: #f9fafb;
}

.header-split .split-search-btn .icon-search {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

.header-split .cta-split-button {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-split .cta-split-button:hover {
    background: linear-gradient(135deg, #005177 0%, #003d5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.header-top {
    background-color: var(--bg-light);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top .header-contact,
.header-top .header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top .header-contact i,
.header-top .header-social i {
    margin-right: 5px;
}

.header-top .header-social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    margin: 0 4px;
}

.header-top .header-social a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.header-main {
    padding: 20px 0;
    transition: var(--transition);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    left: 0;
    right: 0;
}

.sticky-header .header-main {
    padding: 15px 0;
    transition: padding 0.3s ease;
}

/* Scrolled state for sticky header */
.sticky-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-header.scrolled .header-main {
    padding: 0 !important;
}

/* Prevent layout shifts */
.sticky-header .container {
    padding: 0 15px;
}

.sticky-header .row {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    margin: 0 -15px;
}

.sticky-header [class*="col-"] {
    padding: 0 15px;
    flex-shrink: 0;
}

/* Fix for professional headers */
.sticky-header.header-professional-1 .header-main-bar,
.sticky-header.header-professional-2 .header-wrapper,
.sticky-header.header-business .container,
.sticky-header.header-elegant .container {
    transition: padding 0.3s ease;
}

.sticky-header.scrolled.header-professional-1 .header-main-bar {
    padding: 0 !important;
}

.sticky-header.scrolled.header-professional-2 .header-wrapper {
    padding: 0 !important;
}

.sticky-header.scrolled.header-business .container {
    padding: 0 !important;
}

.sticky-header.scrolled.header-elegant .container {
    padding: 0 !important;
}

/* Fix logo size on scroll */
.sticky-header.scrolled .site-branding img,
.sticky-header.scrolled .custom-logo-wrapper img {
    max-height: 50px;
    width: auto;
    transition: max-height 0.3s ease;
}

/* Fix navigation alignment */
.sticky-header .main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sticky-header .nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sticky-header .nav-menu li {
    margin: 0 8px;
    /* Reduced margin for sticky state */
    display: flex;
    align-items: center;
}

.sticky-header .nav-menu a {
    white-space: nowrap;
    display: block;
}

/* Fix header actions alignment */
/* Fix header actions alignment */
.sticky-header .header-actions,
.sticky-header .header-actions-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    flex-shrink: 0;
    margin-left: 30px;
    white-space: nowrap;
    max-width: fit-content;
}

.sticky-header .header-cta-button,
.sticky-header .header-cta-btn,
.sticky-header .cta-button-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Fix top bar on scroll */
.sticky-header.scrolled .header-top,
.sticky-header.scrolled .header-top-bar {
    display: none;
}

/* Prevent overflow */
.sticky-header {
    overflow: visible;
}

.sticky-header .container {
    overflow: visible;
}

/* Fix alignment issues */
.sticky-header .row {
    align-items: center !important;
}

.sticky-header .site-branding {
    flex-shrink: 0;
    margin-right: 30px;
    max-width: 25%;
}

.sticky-header .main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

/* Fix for responsive */
@media (max-width: 768px) {
    .sticky-header .row {
        flex-wrap: wrap;
    }

    .sticky-header [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
    }

    .sticky-header .header-actions,
    .sticky-header .header-actions-group {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Smooth scroll animation removed - using CSS transitions instead */

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: var(--text-color);
}

.site-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.main-navigation {
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ensure menu is visible when it has items */
.main-navigation .nav-menu {
    display: flex;
}

/* Fallback for empty menu */
.main-navigation:empty::after {
    content: 'Menü eklemek için: Görünüm > Menüler > Yeni menü oluştur ve "Primary Menu" location\'ına ata';
    display: block;
    padding: 10px;
    background: #fff3cd;
    color: #856404;
    font-size: 12px;
    border: 1px solid #ffeaa7;
}

.nav-menu li {
    margin: 0 10px;
    /* Reduced to save space and prevent breaking */
}

/* Menu Item Links - Keep text on one line */
.nav-menu a,
.menu-item a,
.menu-item>a,
.main-navigation a,
.main-navigation .menu-item a,
#primary-menu a,
#primary-menu .menu-item a {
    white-space: nowrap;
    word-break: keep-all;
    display: inline-block;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    white-space: nowrap;
    word-break: keep-all;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #666666;
    padding: 8px 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    vertical-align: middle;
}

/* Fix for all search icon elements - prevents layout breaking */
.search-toggle *,
.search-toggle i,
.search-toggle span,
.search-toggle .icon-search,
.search-toggle i.icon-search,
.search-toggle span.icon-search {
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

.search-toggle .icon-search,
.search-toggle i.icon-search,
.search-toggle span.icon-search {
    color: #666666;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
    position: relative;
}

.search-toggle:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.search-toggle:hover .icon-search {
    color: #333333;
}

.search-toggle:active {
    transform: scale(0.95);
}

.search-form-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 999;
    margin-top: 10px;
}

.search-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.search-form-wrapper input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.search-form-wrapper button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.search-form-wrapper button:hover {
    background-color: var(--secondary-color);
}

.header-cta-button,
.header-cta-button.investment-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.25);
    border: none;
}

.header-cta-button:hover,
.header-cta-button.investment-cta:hover {
    background: linear-gradient(135deg, #005177 0%, #003d5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.35);
    color: #ffffff;
}

/* Navigation Enhancements */
.nav-menu li {
    position: relative;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu>li:hover>a::after,
.nav-menu>li.current-menu-item>a::after {
    width: 100%;
}

.nav-menu a {
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

/* ============================================
   Main Content
   ============================================ */
.site-main {
    padding: 40px 0;
    min-height: 60vh;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Elementor kullanıldığında .site-main padding'ini tamamen kaldır */
.elementor-page .site-main,
body.elementor-page .site-main,
.elementor-editor-active .site-main,
.elementor-preview-mode .site-main,
body:has(.elementor-page) .site-main,
body:has(.elementor) .site-main {
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.post-item,
.single-post {
    margin-bottom: 40px;
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.entry-title {
    margin-bottom: 15px;
}

.entry-title a {
    color: var(--text-color);
}

.entry-title a:hover {
    color: var(--primary-color);
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-content {
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    font-weight: 500;
}

.read-more:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* ============================================
   Sidebar
   ============================================ */
.sidebar {
    margin-top: 0;
}

.widget {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-top: 60px;
    position: relative;
}

/* Footer Newsletter */
.footer-newsletter {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.footer-minimal {
    background-color: var(--bg-light);
    color: var(--text-color);
    margin-top: 40px;
    padding: 30px 0;
}

.footer-minimal .site-info {
    color: var(--text-light);
    font-size: 14px;
}

.footer-centered {
    background-color: var(--bg-light);
    color: var(--text-color);
    margin-top: 40px;
    padding: 40px 0;
    text-align: center;
}

.footer-centered .footer-menu {
    margin-bottom: 20px;
}

.footer-centered .footer-menu a {
    color: var(--text-color);
}

.footer-centered .footer-menu a:hover {
    color: var(--primary-color);
}

.footer-centered .site-info {
    color: var(--text-light);
    font-size: 14px;
}

.footer-dark {
    background-color: #0a0a0a;
    color: #ffffff;
}

.footer-dark .footer-widgets {
    background-color: #1a1a1a;
}

.footer-dark .widget {
    background-color: transparent;
}

.footer-dark .widget-title {
    color: #ffffff;
    border-bottom-color: var(--primary-color);
}

.footer-dark .footer-bottom {
    background-color: #0a0a0a;
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Professional Footer Styles */
.footer-professional-1 {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-professional-1 .footer-newsletter-section {
    background-color: #0f0f0f;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-professional-1 .newsletter-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-professional-1 .newsletter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-professional-1 .newsletter-form-inline {
    margin-top: 20px;
}

.footer-professional-1 .form-group {
    display: flex;
    gap: 10px;
}

.footer-professional-1 .form-group input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.footer-professional-1 .form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-professional-1 .newsletter-btn {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-professional-1 .newsletter-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

.footer-professional-1 .footer-main-content {
    padding: 60px 0;
}

.footer-professional-1 .footer-column {
    margin-bottom: 30px;
}

.footer-professional-1 .footer-column .widget {
    background: transparent;
    padding: 0;
}

.footer-professional-1 .footer-column .widget-title {
    color: #ffffff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-professional-1 .footer-column .widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-professional-1 .footer-column .widget a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-professional-1 .footer-bottom-bar {
    background-color: #0a0a0a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-professional-1 .footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-professional-1 .footer-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: flex-end;
}

.footer-professional-1 .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.footer-professional-1 .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 115, 170, 0.3);
}

.footer-professional-1 .footer-menu-inline {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-professional-1 .footer-menu-inline a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-professional-1 .footer-menu-inline a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.footer-professional-1 .footer-menu-inline a:hover {
    color: #ffffff;
}

.footer-professional-1 .footer-menu-inline a:hover::after {
    width: 100%;
}

/* Multi-Section Footer */
.footer-multi-section {
    background: #1a1a1a;
    color: #fff;
}

.footer-multi-section .footer-newsletter-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-multi-section .newsletter-title-large {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-multi-section .newsletter-description-large {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-multi-section .newsletter-form-centered {
    max-width: 600px;
    margin: 0 auto;
}

.footer-multi-section .newsletter-input-wrapper {
    display: flex;
    gap: 10px;
}

.footer-multi-section .newsletter-input-wrapper input[type="email"] {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.footer-multi-section .newsletter-submit-large {
    padding: 18px 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-multi-section .newsletter-submit-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 115, 170, 0.4);
}

.footer-multi-section .footer-widgets-section {
    padding: 70px 0;
}

.footer-multi-section .footer-extra-section {
    background: #0f0f0f;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-multi-section .footer-bottom-section {
    background: #0a0a0a;
    padding: 30px 0;
}

.footer-multi-section .footer-logo-section {
    margin-bottom: 15px;
}

.footer-multi-section .footer-site-name {
    color: #fff;
    margin-bottom: 10px;
}

.footer-multi-section .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-multi-section .footer-menu-center {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-multi-section .footer-menu-center a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-multi-section .footer-menu-center a:hover {
    color: var(--primary-color);
}

.footer-multi-section .footer-copyright-social {
    text-align: right;
}

.footer-multi-section .footer-copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-multi-section .footer-social-icons-large {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-multi-section .social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px;
}

.footer-multi-section .social-icon-large:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 115, 170, 0.4);
}

/* Investment Footer */
.footer-investment {
    background: #1a1a1a;
    color: #fff;
}

.footer-investment .footer-investment-top {
    padding: 70px 0 50px;
}

.footer-investment .footer-brand {
    margin-bottom: 30px;
}

.footer-investment .footer-logo-text {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.footer-investment .footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-investment .footer-social-investment {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-investment .social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-investment .social-icons-group {
    display: flex;
    gap: 10px;
}

.footer-investment .social-icon-investment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.footer-investment .social-icon-investment:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-investment .footer-widget-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.footer-investment .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-investment .contact-item i {
    margin-top: 4px;
    color: var(--primary-color);
}

.footer-investment .footer-newsletter-investment {
    background: #0f0f0f;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-investment .newsletter-title-investment {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-investment .newsletter-desc-investment {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-investment .newsletter-form-investment {
    margin-top: 20px;
}

.footer-investment .newsletter-input-investment {
    display: flex;
    gap: 10px;
}

.footer-investment .newsletter-input-investment input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.footer-investment .newsletter-btn-investment {
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-investment .newsletter-btn-investment:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-investment .footer-investment-bottom {
    background: #0a0a0a;
    padding: 25px 0;
}

.footer-investment .footer-copyright-investment {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-investment .footer-links-investment {
    text-align: right;
}

.footer-investment .footer-menu-investment {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-investment .footer-menu-investment a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-investment .footer-menu-investment a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-investment .footer-menu-investment a:hover {
    color: #fff;
}

.footer-investment .footer-menu-investment a:hover::after {
    width: 100%;
}

.footer-widgets {
    padding: 60px 0;
}

.footer-widgets .widget {
    background-color: transparent;
    color: #ffffff;
}

.footer-widgets .widget-title {
    color: #ffffff;
    border-bottom-color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-widgets {
    padding: 60px 0;
}

.footer-widget-column {
    margin-bottom: 30px;
}

.footer-widgets .widget {
    background-color: transparent;
    color: #ffffff;
    padding: 0;
}

.footer-widgets .widget-title {
    color: #ffffff;
    border-bottom-color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-widgets .widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-widgets .widget a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-navigation {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 5px 15px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.footer-social .social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 115, 170, 0.3);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--secondary-color);
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a,
.pagination span {
    display: block;
    padding: 10px 15px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: 4px;
}

.pagination .current {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Utilities
   ============================================ */
.text-right {
    text-align: right;
}

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

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

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   Professional Search Icon Styles for All Headers
   ============================================ */

/* Elegant Header Search */
.elegant-search-btn,
.elegant-search .search-toggle {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666666;
    padding: 8px 10px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    vertical-align: middle;
}

.elegant-search-btn *,
.elegant-search-btn i,
.elegant-search-btn span,
.elegant-search .search-toggle *,
.elegant-search .search-toggle i,
.elegant-search .search-toggle span {
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.elegant-search-btn .icon-search,
.elegant-search .search-toggle .icon-search,
.elegant-search-btn i.icon-search,
.elegant-search .search-toggle i.icon-search,
.elegant-search-btn span.icon-search,
.elegant-search .search-toggle span.icon-search {
    color: #666666;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.elegant-search-btn:hover,
.elegant-search .search-toggle:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    color: #333333;
}

.elegant-search-btn:hover .icon-search,
.elegant-search .search-toggle:hover .icon-search,
.elegant-search-btn:hover i.icon-search,
.elegant-search .search-toggle:hover i.icon-search,
.elegant-search-btn:hover span.icon-search,
.elegant-search .search-toggle:hover span.icon-search {
    color: #333333;
}

/* Business Header Search */
.business-search-btn,
.business-search .search-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 10px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.business-search-btn .icon-search,
.business-search .search-toggle .icon-search,
.business-search-btn i.icon-search,
.business-search .search-toggle i.icon-search,
.business-search-btn span.icon-search,
.business-search .search-toggle span.icon-search {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.business-search-btn:hover,
.business-search .search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Modern Header Search */
.modern-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.modern-search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
}

.modern-search-btn .icon-search,
.modern-search-btn i.icon-search,
.modern-search-btn span.icon-search {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.modern-search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.modern-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.modern-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Transparent Header Search */
.transparent-search-btn,
.transparent-search .search-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.transparent-search-btn .icon-search,
.transparent-search .search-toggle .icon-search,
.transparent-search-btn i.icon-search,
.transparent-search .search-toggle i.icon-search,
.transparent-search-btn span.icon-search,
.transparent-search .search-toggle span.icon-search {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.transparent-search-btn:hover,
.transparent-search .search-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Sticky Transparent Header Search */
.sticky-transparent-search-btn,
.sticky-transparent-search .search-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.sticky-transparent-search-btn .icon-search,
.sticky-transparent-search .search-toggle .icon-search,
.sticky-transparent-search-btn i.icon-search,
.sticky-transparent-search .search-toggle i.icon-search,
.sticky-transparent-search-btn span.icon-search,
.sticky-transparent-search .search-toggle span.icon-search {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.sticky-transparent-search-btn:hover,
.sticky-transparent-search .search-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Creative Header Search */
.creative-search-btn {
    background: rgba(0, 115, 170, 0.1);
    border: 1px solid rgba(0, 115, 170, 0.2);
    color: #1e3a5f;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.creative-search-btn .icon-search,
.creative-search-btn i.icon-search,
.creative-search-btn span.icon-search {
    color: #1e3a5f;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.creative-search-btn:hover {
    background: rgba(0, 115, 170, 0.15);
    border-color: rgba(0, 115, 170, 0.3);
    color: #1e3a5f;
}

/* Split Header Search - Updated */
.split-search-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
    min-width: 40px;
    height: 40px;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.split-search-btn .icon-search,
.split-search-btn i.icon-search,
.split-search-btn span.icon-search {
    color: #666666;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.split-search-btn:hover {
    border-color: #0073aa;
    color: #0073aa;
    background: #f9fafb;
}

.split-search-btn:hover .icon-search,
.split-search-btn:hover i.icon-search,
.split-search-btn:hover span.icon-search {
    color: #0073aa;
}

/* Header Icon General Styles */
.header-icon {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.classic-search-btn .header-icon,
.corporate-search-btn .header-icon {
    font-size: 16px;
    color: inherit;
}

/* Classic Header Search */
.classic-search-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666666;
    padding: 8px 10px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.classic-search-btn .icon-search,
.classic-search-btn i.icon-search,
.classic-search-btn span.icon-search {
    color: #666666;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.classic-search-btn:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    color: #333333;
}

.classic-search-btn:hover .icon-search,
.classic-search-btn:hover i.icon-search,
.classic-search-btn:hover span.icon-search {
    color: #333333;
}

/* Dark Header Search */
.dark-search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 10px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.dark-search-btn .icon-search,
.dark-search-btn i.icon-search,
.dark-search-btn span.icon-search {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: auto;
    height: auto;
}

.dark-search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex !important;
    }

    /* Show menu on desktop */
    @media (min-width: 769px) {
        .nav-menu {
            display: flex !important;
        }
    }

    .nav-menu li {
        margin: 10px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .site-main {
        padding: 20px 0;
    }

    .post-content {
        padding: 20px;
    }
}

/* ============================================
   Wallet Shortcodes (Frontend)
   ============================================ */
.investmentwp-wallet-balance {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #f0f6fc;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    font-size: 16px;
}

.investmentwp-wallet-balance .wallet-label {
    font-weight: 600;
    color: #23282d;
}

.investmentwp-wallet-balance .wallet-amount {
    font-size: 20px;
    font-weight: 700;
    color: #0073aa;
}

.investmentwp-wallet-transactions {
    margin: 20px 0;
}

.investmentwp-wallet-transactions .wallet-transactions-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.investmentwp-wallet-transactions .wallet-transactions-table thead {
    background: #f8f9fa;
}

.investmentwp-wallet-transactions .wallet-transactions-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #23282d;
    border-bottom: 2px solid #0073aa;
}

.investmentwp-wallet-transactions .wallet-transactions-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.investmentwp-wallet-transactions .wallet-transactions-table tbody tr:hover {
    background: #f8f9fa;
}

.investmentwp-wallet-transactions .transaction-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.investmentwp-wallet-transactions .transaction-type-badge.deposit {
    background: #d4edda;
    color: #155724;
}

.investmentwp-wallet-transactions .transaction-type-badge.withdraw {
    background: #f8d7da;
    color: #721c24;
}

.investmentwp-wallet-transactions .wallet-transactions-table td.deposit {
    color: #28a745;
    font-weight: 600;
}

.investmentwp-wallet-transactions .wallet-transactions-table td.withdraw {
    color: #dc3545;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .investmentwp-wallet-transactions .wallet-transactions-table {
        font-size: 14px;
    }

    .investmentwp-wallet-transactions .wallet-transactions-table th,
    .investmentwp-wallet-transactions .wallet-transactions-table td {
        padding: 8px 10px;
    }
}

/* ============================================
   New Header Styles
   ============================================ */

/* Advanced Header */
.header-advanced {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-advanced .header-top-bar {
    background: linear-gradient(135deg, #1e3a5f 0%, #005177 100%);
    padding: 12px 0;
    color: #ffffff;
    font-size: 14px;
}

.header-advanced .header-top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-advanced .header-top-bar a:hover {
    opacity: 0.8;
}

.header-advanced .header-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-advanced .header-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-advanced .header-info-item i {
    font-size: 16px;
}

.header-advanced .header-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-advanced .header-social .social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-advanced .header-social .social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.header-advanced .header-main {
    padding: 20px 0;
    background: #ffffff;
}

/* E-Commerce Header */
.header-ecommerce {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-ecommerce .header-main {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-ecommerce .header-search {
    position: relative;
}

.header-ecommerce .header-search form {
    display: flex;
    width: 100%;
}

.header-ecommerce .header-search input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.header-ecommerce .header-search button {
    padding: 12px 20px;
    background: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

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

.header-ecommerce .cart-icon,
.header-ecommerce .account-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-ecommerce .cart-icon:hover,
.header-ecommerce .account-icon:hover {
    color: #0073aa;
}

.header-ecommerce .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.header-ecommerce .header-navigation {
    padding: 15px 0;
    background: #f8f9fa;
}

/* Header Base */
.header-base {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-base .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header-base .main-navigation {
    flex: 1;
    margin-left: 40px;
}

/* Simplified Header */
.header-simplified {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-simplified .header-main {
    padding: 20px 0;
}

/* Double Menu Header */
.header-double-menu {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-double-menu .header-top {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.header-double-menu .top-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.header-double-menu .top-nav-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-double-menu .top-nav-menu a:hover {
    color: #0073aa;
}

.header-double-menu .header-top-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-double-menu .header-main {
    padding: 20px 0;
}

/* Logo Center Header */
.header-logo-center {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-logo-center .site-branding {
    margin-bottom: 20px;
}

.header-logo-center .nav-menu-centered {
    justify-content: center;
}

/* Categories Menu Header */
.header-categories-menu {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-categories-menu .header-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-categories-menu .categories-menu {
    position: relative;
}

.header-categories-menu .categories-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.header-categories-menu .categories-toggle:hover {
    background: #005177;
}

.header-categories-menu .categories-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 10px;
}

.header-categories-menu .categories-menu:hover .categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-categories-menu .categories-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.header-categories-menu .categories-list li {
    margin: 0;
}

.header-categories-menu .categories-list a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.header-categories-menu .categories-list a:hover {
    background: #f8f9fa;
    color: #0073aa;
}

/* Top Bar Menu Header */
.header-top-bar-menu {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top-bar-menu .header-top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.header-top-bar-menu .top-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.header-top-bar-menu .top-nav-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top-bar-menu .top-nav-menu a:hover {
    color: #0073aa;
}

.header-top-bar-menu .header-top-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-bar-menu .header-main {
    padding: 20px 0;
}

/* Dark Header */
.header-dark {
    background: #1a1a1a;
    color: #ffffff;
}

.header-dark .site-title a,
.header-dark .nav-menu a {
    color: #ffffff;
}

.header-dark .nav-menu a:hover {
    color: #0073aa;
}

.header-dark .search-toggle,
.header-dark .menu-toggle span {
    color: #ffffff;
    background: transparent;
}

.header-dark .cta-button {
    background: #0073aa;
    color: #ffffff;
}

.header-dark .cta-button:hover {
    background: #005177;
}

/* Colored Header */
.header-colored {
    color: #ffffff;
}

.header-colored .site-title a,
.header-colored .nav-menu a {
    color: #ffffff;
}

.header-colored .nav-menu a:hover {
    opacity: 0.8;
}

.header-colored .search-toggle,
.header-colored .menu-toggle span {
    color: #ffffff;
}

.header-colored .cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-colored .cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for New Headers */
@media (max-width: 768px) {
    .header-advanced .header-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .header-ecommerce .header-search {
        margin: 15px 0;
    }

    .header-double-menu .header-top {
        display: none;
    }

    .header-categories-menu .categories-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
    }

    .header-top-bar-menu .header-top-bar {
        display: none;
    }
}

/* ============================================
   New Page Template Styles
   ============================================ */

/* Contact Page Styles */
.contact-page-1 .contact-info-wrapper,
.contact-page-2 .contact-sidebar,
.contact-page-3 .contact-info-section,
.contact-page-4 .contact-info-grid {
    margin-top: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 24px;
    color: #0073aa;
    margin-top: 5px;
}

.contact-info-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
}

.contact-info-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #0073aa;
}

.contact-info-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FAQ Page Styles */
.faq-page-1 .faq-content,
.faq-page-2 .faq-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* About Page Styles */
.about-page-1 .about-image-section img,
.about-page-2 .about-page-header img {
    transition: transform 0.3s ease;
}

.about-page-1 .about-image-section:hover img,
.about-page-2 .about-page-header:hover img {
    transform: scale(1.02);
}

.about-me-page .about-me-image img {
    transition: transform 0.3s ease;
}

.about-me-page .about-me-image:hover img {
    transform: scale(1.05);
}

.about-me-page .social-links a {
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-me-page .social-links a:hover {
    transform: translateY(-5px);
    background: #005177;
}

/* Team Page Styles */
.team-page-layout .team-content {
    margin-top: 40px;
}

/* Projects Page Styles */
.projects-page-layout .projects-grid {
    margin-top: 40px;
}

.project-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image img {
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

/* Parallax Page Styles */
.parallax-page-layout .parallax-hero {
    min-height: 70vh;
}

.parallax-content-section {
    background: #ffffff;
}

/* Infinite Scrolling Page Styles */
.infinite-scroll-container {
    position: relative;
}

.infinite-scroll-loader {
    padding: 40px 0;
}

/* Video Page Styles */
.video-page-layout .video-hero-section {
    min-height: 100vh;
}

.video-content-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Fullscreen Page Styles */
.fullscreen-page-layout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lookbook Page Styles */
.lookbook-page-layout .lookbook-gallery {
    margin-top: 40px;
}

.lookbook-item {
    transition: transform 0.3s ease;
}

.lookbook-item:hover {
    transform: scale(1.05);
}

/* Portfolio Layout Styles */
.portfolio-alternative .portfolio-item-alternative {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-alternative .portfolio-item-alternative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-text-under .portfolio-item-text-under {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-text-under .portfolio-item-text-under:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-hover-parallax .portfolio-item-parallax {
    transition: transform 0.3s ease;
}

.portfolio-hover-parallax .portfolio-item-parallax:hover {
    transform: translateY(-5px);
}

.portfolio-fullwidth .portfolio-item-fullwidth {
    transition: transform 0.3s ease;
}

.portfolio-fullwidth .portfolio-item-fullwidth:hover {
    transform: scale(1.02);
}

.portfolio-infinite .portfolio-item-infinite {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-infinite .portfolio-item-infinite:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Portfolio Single Styles */
.portfolio-single-standard .portfolio-featured-image {
    margin-bottom: 40px;
}

.portfolio-single-sticky .portfolio-sidebar {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.portfolio-single-alternative .portfolio-content-card {
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.portfolio-single-gallery .portfolio-gallery {
    margin-bottom: 40px;
}

.portfolio-single-gallery .gallery-item {
    transition: transform 0.3s ease;
}

.portfolio-single-gallery .gallery-item:hover {
    transform: scale(1.05);
}

.portfolio-single-video .portfolio-video {
    margin-bottom: 40px;
}

/* Responsive Styles for New Page Templates */
@media (max-width: 768px) {

    .contact-page-1 .row,
    .contact-page-2 .row,
    .contact-page-3 .row,
    .contact-page-4 .row {
        flex-direction: column;
    }

    .contact-page-4 .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .about-page-2 .row {
        flex-direction: column;
    }

    .about-me-page .row {
        flex-direction: column;
    }

    .about-me-page .about-me-image {
        margin-bottom: 30px;
    }

    .portfolio-alternative .portfolio-grid-alternative,
    .portfolio-text-under .portfolio-grid-text-under,
    .portfolio-hover-parallax .portfolio-grid-parallax,
    .portfolio-fullwidth .portfolio-grid-fullwidth,
    .portfolio-infinite .portfolio-grid-infinite {
        grid-template-columns: 1fr;
    }

    .portfolio-single-sticky .row {
        flex-direction: column;
    }

    .portfolio-single-sticky .portfolio-sidebar {
        position: static;
        margin-top: 30px;
    }
}


/* ============================================
   New Header Styles - Vertical & Overlay & Stacked
   ============================================ */

/* Vertical Sidebar Header */
.header-vertical {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #e0e0e0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
}

body.header-vertical-active {
    padding-left: 280px;
}

.header-vertical .site-branding {
    margin-bottom: 50px;
    text-align: center;
}

.header-vertical .main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-vertical .main-navigation li {
    margin-bottom: 15px;
}

.header-vertical .main-navigation a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.header-vertical .main-navigation a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.header-vertical .header-actions {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
    .header-vertical {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    body.header-vertical-active {
        padding-left: 0;
    }

    .header-vertical .main-navigation,
    .header-vertical .header-actions {
        display: none;
        /* Mobile menu should handle this */
    }

    .header-vertical .site-branding {
        margin-bottom: 0;
    }
}

/* Stacked Header (Logo Top, Menu Bottom) */
.header-stacked .header-top {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.header-stacked .site-branding {
    margin: 0 auto;
}

.header-stacked .header-bottom {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-stacked .main-navigation {
    text-align: center;
}

.header-stacked .main-navigation ul {
    display: inline-flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-stacked .main-navigation li a {
    display: block;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.header-stacked .main-navigation li a:hover {
    color: var(--primary-color);
    background: #f9f9f9;
}

@media (max-width: 991px) {
    .header-stacked .header-bottom {
        display: none;
    }
}

/* Overlay Header (Transparent Absolute) */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-overlay .site-header-inner {
    padding: 20px 0;
}

.header-overlay .main-navigation a {
    color: #ffffff;
}

.header-overlay .site-title a {
    color: #ffffff;
}

.header-overlay.sticky-active {
    position: fixed;
    background: rgba(0, 0, 0, 0.9) !important;
    animation: slideDown 0.3s ease;
}

/* Minimal Header (Clean) */
.header-clean {
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ============================================
   Widget Styles (Default)
   ============================================ */

/* Investment Hero Widget */
.investmentwp-hero-widget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
    background-color: #1e3a5f;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: 15px 35px;
    background: #ffffff;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-button-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-button-secondary:hover {
    background: #ffffff;
    color: #1e3a5f;
}

/* Investment Services Widget */
.investmentwp-services-widget {
    position: relative;
    width: 100%;
}

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

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

.service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--title-color, #333);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.service-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsiveness for Services & Hero */
@media (max-width: 1024px) {
    .investmentwp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .investmentwp-services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

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

    .hero-button {
        width: 100%;
        text-align: center;
    }

    .investmentwp-hero-widget {
        padding: 40px 20px;
        min-height: 400px;
    }
}

/* Investment Testimonials Widget */
.investmentwp-testimonials-widget {
    width: 100%;
}

.investmentwp-testimonials-grid {
    display: grid;
    /* grid-template-columns is handled by Elementor responsive controls */
    gap: 30px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #ffa500;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 1.1rem;
}

.author-position {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 767px) {
    .investmentwp-testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* TradingView Ticker */
.tradingview-ticker-wrapper {
    width: 100%;
    min-height: 46px;
    height: 46px;
    /* Standard TradingView ticker height */
    position: relative;
    z-index: 10005;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme='dark'] .tradingview-ticker-wrapper {
    background: #131722;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}