/* =========================================
   SUBPAGE SPECIFIC STYLES
   ========================================= */

/* Body Watermark and Premium Background */
body {
    position: relative;
    background: var(--bg-warm-ivory);
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background-image: url('images/logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.015; /* Extremely subtle watermark */
    pointer-events: none;
    z-index: -1;
}

/* Subpage Hero Banner */
.subpage-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(14, 75, 54, 0.96) 0%, rgba(10, 60, 30, 0.93) 100%), 
                url('images/background.webp') center center repeat;
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-gold);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 167, 79, 0.15) 0%, transparent 80%);
    pointer-events: none;
}

.subpage-hero-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700; /* Proper bold */
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
    line-height: 1.3;
}

.subpage-hero-title span {
    color: var(--accent-gold);
}

/* Breadcrumbs */
.mak-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    margin-top: 10px;
}

.mak-breadcrumbs a {
    color: #ffffff;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.mak-breadcrumbs a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.mak-breadcrumbs span.separator {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.mak-breadcrumbs span.current {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Headings Structure H1 - H6 with Bold Weights (No font-family - inherits body) */
.subpage-text h2, .panel-title, .timeline-section-title {
    color: var(--primary-emerald);
    font-size: 2.1rem;
    font-weight: 700; /* Proper bold */
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.35;
}

.subpage-text h2::after, .panel-title::after, .timeline-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.subpage-text h3, .panel-subtitle {
    color: var(--text-dark);
    font-size: 1.55rem;
    font-weight: 700; /* Proper bold */
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.subpage-text h4 {
    color: var(--secondary-green);
    font-size: 1.3rem;
    font-weight: 700; /* Proper bold */
    margin-top: 25px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.subpage-text h5 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700; /* Proper bold */
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.subpage-text h6 {
    color: #4a554f;
    font-size: 1.05rem;
    font-weight: 700; /* Proper bold */
    margin-top: 15px;
    margin-bottom: 8px;
    line-height: 1.45;
}

.subpage-text p {
    font-size: 1.05rem;
    line-height: 1.85; /* Proper Line-Height */
    color: #4a554f;
    margin-bottom: 20px;
}

/* Custom Bullet Lists - NO NUMBERS */
.subpage-text ul, .panel-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.subpage-text ul li, .panel-bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.8; /* Proper Line-Height */
    color: #4a554f;
}

.subpage-text ul li::before, .panel-bullet-list li::before {
    content: '\f005'; /* Font Awesome Star */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Keyword Highlights */
.gold-highlight {
    color: #b2822a !important; /* Dark Gold for Light background readability */
    font-weight: 700;
}

.text-highlight {
    background: rgba(212, 167, 79, 0.08);
    border-radius: 4px;
    padding: 2px 6px;
    font-weight: 700;
    color: var(--primary-emerald);
}

/* Dark layouts style adjust for highlights */
.panel-row-dark .gold-highlight, .boxed-content-card-dark .gold-highlight, .bg-dark-premium .gold-highlight {
    color: #ffd700 !important; /* Bright Gold for Dark background contrast */
}

.panel-row-dark .text-highlight, .boxed-content-card-dark .text-highlight, .bg-dark-premium .text-highlight {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
}

/* ----------------------------------------------------
   LAYOUT STYLE 1: INTERACTIVE PROCESS & TIMELINE
   ---------------------------------------------------- */
.style-process-section {
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-mint);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.process-intro-box {
    border-bottom: 2px dashed var(--border-mint);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.vertical-process-timeline {
    position: relative;
    padding-left: 55px;
    margin: 40px 0;
}

.vertical-process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--primary-emerald) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon-box {
    position: absolute;
    left: -55px;
    top: 2px;
    width: 42px;
    height: 42px;
    background: var(--gold-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    border: 3px solid #ffffff;
}

.timeline-content {
    background: var(--bg-warm-ivory);
    border: 1px solid var(--border-mint);
    border-radius: var(--border-radius-sm);
    padding: 25px;
    transition: var(--transition-smooth);
    line-height: 1.7;
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.quote-highlight-card {
    background: linear-gradient(135deg, var(--bg-warm-ivory) 0%, #edf5ef 100%);
    border-left: 5px solid var(--accent-gold);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
}

.quote-highlight-card::before {
    content: '“';
    position: absolute;
    right: 25px;
    top: 10px;
    font-size: 5rem;
    color: rgba(214, 167, 127, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ----------------------------------------------------
   LAYOUT STYLE 2: ALTERNATING SEGMENTED PANELS (DARK & LIGHT)
   ---------------------------------------------------- */
.style-panels-container {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-mint);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.panel-row {
    padding: 60px 50px;
    border-bottom: 1px solid var(--border-mint);
    transition: var(--transition-smooth);
}

/* Dark Row Style */
.panel-row-dark {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, #06241a 100%) !important;
    color: #ffffff !important;
}

.panel-row-dark .panel-title {
    color: var(--accent-gold) !important;
}

.panel-row-dark .panel-title::after {
    background: #ffffff !important;
}

.panel-row-dark .panel-subtitle {
    color: #ffffff !important;
}

.panel-row-dark p, .panel-row-dark li {
    color: #e2e8f0 !important;
}

.panel-row-dark .panel-icon-box {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent-gold) !important;
    border: 1px solid rgba(212, 167, 79, 0.3);
}

.panel-row-dark .faq-accordion .accordion-button {
    background-color: #06241a;
    color: #ffffff;
}

.panel-row-dark .faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
}

.panel-row-dark .faq-accordion .accordion-body {
    background-color: #0c3326;
    color: #e2e8f0;
}

.panel-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(14, 75, 54, 0.1);
    color: var(--primary-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* ----------------------------------------------------
   LAYOUT STYLE 3: BOXED CARD DECKS (DARK & LIGHT)
   ---------------------------------------------------- */
.style-boxed-wrapper {
    margin-bottom: 40px;
}

.grid-card-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.boxed-content-card {
    background: #ffffff;
    border: 1px solid var(--border-mint);
    border-radius: var(--border-radius-sm);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-emerald);
}

/* Dark Card Style & General Dark Block Utility */
.boxed-content-card-dark, .bg-dark-premium {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, #06241a 100%) !important;
    color: #ffffff !important;
    border-top-color: var(--accent-gold) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.boxed-content-card-dark h1, .boxed-content-card-dark h2, .boxed-content-card-dark h3, 
.boxed-content-card-dark h4, .boxed-content-card-dark h5, .boxed-content-card-dark h6,
.bg-dark-premium h1, .bg-dark-premium h2, .bg-dark-premium h3, 
.bg-dark-premium h4, .bg-dark-premium h5, .bg-dark-premium h6 {
    color: var(--accent-gold) !important;
}

.boxed-content-card-dark h2::after, .bg-dark-premium h2::after,
.boxed-content-card-dark .panel-title::after, .bg-dark-premium .panel-title::after {
    background: #ffffff !important;
}

.boxed-content-card-dark p, .boxed-content-card-dark li,
.bg-dark-premium p, .bg-dark-premium li {
    color: #e2e8f0 !important;
}

.boxed-content-card-dark ul li::before, .boxed-content-card-dark ol li::before,
.bg-dark-premium ul li::before, .bg-dark-premium ol li::before {
    color: var(--accent-gold) !important;
}

.boxed-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.boxed-card-title {
    color: var(--primary-emerald);
    font-size: 1.35rem;
    font-weight: 700;
}

.card-accent-badge {
    display: inline-block;
    background: rgba(212, 167, 79, 0.1);
    color: var(--accent-gold-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Steps Box Styling (No Numbers) */
.steps-container {
    background: var(--bg-warm-ivory);
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

.steps-container h3 {
    margin-top: 0 !important;
    color: var(--primary-emerald) !important;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.steps-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8; /* Proper Line-Height */
    color: #4a554f;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.steps-list li .step-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: var(--gold-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(212,167,79,0.25);
}

/* ----------------------------------------------------
   LAYOUT STYLE 4: REFINED CLASSIC SIDEBAR
   ---------------------------------------------------- */
.subpage-content-wrapper {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin-bottom: 40px;
}

.subpage-featured-img {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-mint);
}

.subpage-featured-img img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

/* Sidebar Styles */
.subpage-sidebar {
    position: sticky;
    top: 100px;
    margin-bottom: 40px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* Sidebar Blog Item Styling */
.sidebar-blog-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-mint);
}

.sidebar-blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-blog-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-mint);
}

.sidebar-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-blog-details {
    flex-grow: 1;
}

.sidebar-blog-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-blog-title a {
    color: var(--text-dark);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.sidebar-blog-title a:hover {
    color: var(--accent-gold-dark);
}

.sidebar-blog-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.sidebar-widget-title {
    color: var(--primary-emerald);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-mint);
}

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

.sidebar-contact-widget {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, #082d20 100%);
    color: #ffffff;
    border: 1px solid rgba(212, 167, 79, 0.3);
    text-align: center;
}

.sidebar-contact-widget .sidebar-widget-title {
    color: #ffffff;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.sidebar-contact-widget .sidebar-widget-title::after {
    background: var(--accent-gold);
}

.sidebar-contact-intro {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    margin-bottom: 15px;
    width: 100%;
}

.sidebar-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.sidebar-btn-whatsapp:hover {
    background: #1ebe57;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37,211,102,0.3);
}

.sidebar-btn-call {
    background: var(--gold-gradient);
    color: #ffffff;
}

.sidebar-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #ffffff;
}

/* ----------------------------------------------------
   COMMON FAQ STYLING FOR ALL PAGES
   ---------------------------------------------------- */
.faq-section {
    margin-top: 50px;
    border-top: 1px solid var(--border-mint);
    padding-top: 40px;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-mint) !important;
    border-radius: var(--border-radius-sm) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-accordion .accordion-button {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    background-color: #ffffff;
    padding: 18px 25px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-emerald);
    background-color: var(--bg-warm-ivory);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0.2);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(1) sepia(1) saturate(5) hue-rotate(340deg);
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    background-color: #ffffff;
    font-size: 1rem;
    line-height: 1.8; /* Proper Line-Height */
    color: #4a554f;
    border-top: 1px solid var(--border-mint);
}

/* ----------------------------------------------------
   BLOGS & POLICY COMMON STYLING
   ---------------------------------------------------- */
.blog-card {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-mint);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-mint);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.blog-meta span i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-title a {
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

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

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.7; /* Proper Line-Height */
    color: #4b5563;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-readmore {
    font-weight: 700;
    color: var(--primary-emerald);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.blog-readmore i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-readmore {
    color: var(--accent-gold);
}

.blog-card:hover .blog-readmore i {
    transform: translateX(4px);
}

.policy-container {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    padding: 50px;
    margin-bottom: 50px;
}

.policy-container h1 {
    color: var(--primary-emerald);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.policy-container h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-mint);
    padding-bottom: 8px;
}

.policy-container p {
    font-size: 1.05rem;
    line-height: 1.85; /* Proper Line-Height */
    color: #4a554f;
    margin-bottom: 15px;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-container ul li {
    font-size: 1.05rem;
    line-height: 1.8; /* Proper Line-Height */
    color: #4a554f;
    margin-bottom: 8px;
}

/* Premium CSS-only Geometric Pattern for Sidebar Style Hero (Style 4) */
.style-sidebar-hero {
    position: relative;
    background-color: #06241a !important;
    background-image: 
        radial-gradient(circle at 100% 150%, #06241a 24%, #0e4b36 24%, #0e4b36 28%, #06241a 28%, #06241a 36%, #0e4b36 36%, #0e4b36 40%, transparent 40%, transparent),
        radial-gradient(circle at 0    150%, #06241a 24%, #0e4b36 24%, #0e4b36 28%, #06241a 28%, #06241a 36%, #0e4b36 36%, #0e4b36 40%, transparent 40%, transparent),
        radial-gradient(circle at 50%  100%, #0e4b36 10%, #06241a 10%, #06241a 23%, #0e4b36 23%, #0e4b36 30%, #06241a 30%, #06241a 43%, #0e4b36 43%, #0e4b36 50%, transparent 50%, transparent),
        radial-gradient(circle at 100% 50%, #0e4b36 5%, #06241a 5%, #06241a 15%, #0e4b36 15%, #0e4b36 20%, #06241a 20%, #06241a 35%, #0e4b36 35%, #0e4b36 40%, transparent 40%, transparent),
        radial-gradient(circle at 0    50%, #0e4b36 5%, #06241a 5%, #06241a 15%, #0e4b36 15%, #0e4b36 20%, #06241a 20%, #06241a 35%, #0e4b36 35%, #0e4b36 40%, transparent 40%, transparent) !important;
    background-size: 100px 50px !important;
    border-bottom: 4px solid var(--accent-gold);
}

.style-sidebar-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 167, 79, 0.12) 0%, transparent 80%);
    pointer-events: none;
}

/* Premium CSS-only Argyle Geometric Pattern for Process Layout Hero (Style 1) */
.style-process-hero {
    position: relative;
    background-color: #0c3d2a !important;
    background-image: 
        repeating-linear-gradient(120deg, rgba(212, 167, 79, 0.04), rgba(212, 167, 79, 0.04) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(60deg, rgba(212, 167, 79, 0.04), rgba(212, 167, 79, 0.04) 1px, transparent 1px, transparent 60px),
        linear-gradient(60deg, rgba(0, 0, 0, 0.12) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.12) 75%, rgba(0, 0, 0, 0.12)),
        linear-gradient(120deg, rgba(0, 0, 0, 0.12) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.12) 75%, rgba(0, 0, 0, 0.12)) !important;
    background-size: 70px 120px !important;
    border-bottom: 4px solid var(--accent-gold);
}

.style-process-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 167, 79, 0.15) 0%, transparent 85%);
    pointer-events: none;
}

/* Premium CSS-only Geometric Pattern for Panels Style Hero (Style 2) */
.style-panels-hero {
    position: relative;
    background-color: #0b3d2b !important;
    background-image: 
        linear-gradient(45deg, #0e4b36 25%, transparent 25%, transparent 75%, #0e4b36 75%, #0e4b36),
        linear-gradient(45deg, #0e4b36 25%, #0b3d2b 25%, #0b3d2b 75%, #0e4b36 75%, #0e4b36) !important;
    background-size: 60px 60px !important;
    background-position: 0 0, 30px 30px !important;
    border-bottom: 4px solid var(--accent-gold);
}

.style-panels-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 167, 79, 0.15) 0%, transparent 80%),
                linear-gradient(to bottom, rgba(11, 61, 43, 0.2) 0%, rgba(6, 36, 26, 0.7) 100%);
    pointer-events: none;
}

/* Premium CSS-only Geometric Pattern for Boxed Style Hero (Style 3) */
.style-boxed-hero {
    position: relative;
    background-color: #052419 !important;
    background-image: 
        linear-gradient(30deg, #0a3d2a 12%, transparent 12.5%, transparent 87%, #0a3d2a 87.5%, #0a3d2a),
        linear-gradient(150deg, #0a3d2a 12%, transparent 12.5%, transparent 87%, #0a3d2a 87.5%, #0a3d2a),
        linear-gradient(270deg, #0a3d2a 25%, transparent 25.5%, transparent 75%, #0a3d2a 75.5%, #0a3d2a),
        linear-gradient(30deg, #0a3d2a 12%, transparent 12.5%, transparent 87%, #0a3d2a 87.5%, #0a3d2a),
        linear-gradient(150deg, #0a3d2a 12%, transparent 12.5%, transparent 87%, #0a3d2a 87.5%, #0a3d2a),
        linear-gradient(270deg, #0a3d2a 25%, transparent 25.5%, transparent 75%, #0a3d2a 75.5%, #0a3d2a) !important;
    background-size: 80px 140px !important;
    background-position: 0 0, 0 0, 0 0, 40px 70px, 40px 70px, 40px 70px !important;
    border-bottom: 4px solid var(--accent-gold);
}

.style-boxed-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 167, 79, 0.16) 0%, transparent 80%),
                linear-gradient(to bottom, rgba(5, 36, 25, 0.1) 0%, rgba(3, 20, 14, 0.6) 100%);
    pointer-events: none;
}


