/*====================================================================
   Custom CSS File for most of Desktop and Mobile look for Kipya Template
   Developed by Amazing LWEGATECH LTD team.
===================================================================**/

:root {
    /* Alpha Asset Managers Brand Colors - Alpha Green (#035c5c) */
    --kpy-primary: #035c5c;
    --kpy-primary-rgb: 6, 92, 93;
    --kpy-primary-dark: #024a4a;
    --kpy-primary-light: #1a7a7a;
    --kpy-primary-lighter: #4a9d9d;
    --kpy-primary-75: rgba(6, 92, 93, 0.75);
    --kpy-primary-50: rgba(6, 92, 93, 0.50);
    --kpy-primary-25: rgba(6, 92, 93, 0.25);

    /* Brand Green Tints (from brand palette) */
    --alpha-green-75: #047a7a;
    /* 75% tint */
    --alpha-green-50: #4a9d9d;
    /* 50% tint */
    --alpha-green-25: #8fc0c0;
    /* 25% tint */
    --alpha-green-light: #b8d9d9;
    /* Very light tint */
    --alpha-green-bg: #e6f2f2;
    /* Background tint */

    /* Secondary Colors - Alpha Green variations */
    --kpy-secondary: #1a7a7a;
    --kpy-secondary-rgb: 26, 122, 122;
    --kpy-secondary-dark: #024a4a;
    --kpy-secondary-light: #4a9d9d;

    /* Accent Colors - Light tints of Alpha Green */
    --kpy-accent: var(--alpha-green-bg);
    --kpy-accent-dark: #d0e8e8;
    --kpy-accent-light: #f0f7f7;

    /* Neutral Colors */
    --kpy-base: #1A202C;
    --kpy-dark: #2D3748;
    --kpy-grey: #718096;
    --kpy-light-grey: #E2E8F0;
    --kpy-white: #FFFFFF;
    --kpy-black: #000000;

    /* Background Colors - Using green tints */
    --kpy-bg-primary: #FFFFFF;
    --kpy-bg-secondary: var(--alpha-green-bg);
    --kpy-bg-accent: var(--alpha-green-light);
    --kpy-bg-dark: #1A202C;
    --kpy-bg-overlay: rgba(6, 92, 93, 0.8);
    --kpy-bg-green-light: var(--alpha-green-25);
    --kpy-bg-green-medium: var(--alpha-green-50);

    /* Typography */
    --kpy-font-primary: "Inter", system-ui, -apple-system, sans-serif;
    --kpy-font-heading: "Poppins", var(--kpy-font-primary);
    --kpy-font-secondary: "Roboto", var(--kpy-font-primary);

    /* Property Type Colors - Using Alpha Green variations */
    --kpy-property-sale: #035c5c;
    --kpy-property-rent: #1a7a7a;
    --kpy-property-land: #4a9d9d;
    --kpy-property-commercial: #024a4a;

    /* Border Radius - Custom shape */
    --kpy-border-radius-custom: 0 20px 0 20px;

    /* Shadows & Effects */
    --kpy-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --kpy-shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
    --kpy-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --kpy-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --kpy-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --kpy-space-xs: 0.5rem;
    --kpy-space-sm: 1rem;
    --kpy-space-md: 1.5rem;
    --kpy-space-lg: 3rem;
    --kpy-space-xl: 4rem;
    --kpy-space-2xl: 6rem;

    /* Gradients - Alpha Green based with multiple shades */
    --kpy-gradient-primary: linear-gradient(135deg, #035c5c 0%, #047a7a 50%, #024a4a 100%);
    --kpy-gradient-secondary: linear-gradient(135deg, #1a7a7a 0%, #4a9d9d 50%, #024a4a 100%);
    --kpy-gradient-accent: linear-gradient(135deg, #e6f2f2 0%, #b8d9d9 50%, #d0e8e8 100%);
    --kpy-gradient-hero: linear-gradient(135deg, rgba(3, 92, 92, 0.95) 0%, rgba(4, 122, 122, 0.85) 50%, rgba(2, 74, 74, 0.95) 100%);
    --kpy-gradient-light: linear-gradient(135deg, var(--alpha-green-25) 0%, var(--alpha-green-light) 100%);
    --kpy-gradient-medium: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-75) 100%);

    /* Bootstrap Compatibility */
    --bs-primary: var(--kpy-primary);
    --bs-primary-rgb: var(--kpy-primary-rgb);
    --bs-secondary: var(--kpy-secondary);
    --bs-secondary-rgb: var(--kpy-secondary-rgb);
    --bs-success: var(--kpy-secondary);
    --bs-warning: var(--kpy-primary);
    --bs-dark: var(--kpy-base);
    --bs-body-color: var(--kpy-grey);
    --bs-body-bg: var(--kpy-bg-primary);
    --bs-body-font-family: var(--kpy-font-primary);
    --bs-heading-color: var(--kpy-base);
    /* Legacy aliases (no LS/Kasenga references – map to Alpha) */
    --ls-font-primary: var(--kpy-font-primary);
    --ls-font-heading: var(--kpy-font-heading);
    --ls-black: var(--kpy-black);
    --ls-base: var(--kpy-base);
    --ls-grey: var(--kpy-grey);
    --ls-white: var(--kpy-white);
    --ls-primary: var(--kpy-primary);
    --ls-primary-dark: var(--kpy-primary-dark);
    --ls-secondary: var(--kpy-secondary);
    --ls-secondary-dark: var(--kpy-secondary-dark);
    --ls-accent: var(--kpy-accent);
    --ls-transition: var(--kpy-transition);
    --ls-shadow: var(--kpy-shadow);
    --ls-shadow-lg: var(--kpy-shadow-lg);
    --ls-bg-secondary: var(--kpy-bg-secondary);
    --ls-light-grey: var(--kpy-light-grey);
    --ls-space-md: var(--kpy-space-md);
    --ls-water-blue: var(--kpy-primary);
    --ls-civil-grey: var(--kpy-grey);
    --ls-supply-green: var(--kpy-secondary);
}

/* ============================================================  BASE & GLOBAL STYLES  ============================================================ */
html { font-family: var(--ls-font-primary) !important; color: var(--ls-black); font-size: 16px; font-weight: 300; line-height: 1.6; text-rendering: optimizeLegibility; margin: 0; scroll-behavior: smooth; }
body { font-family: var(--ls-font-primary) !important; font-weight: 400; color: var(--ls-grey); background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f7f7 100%); background-attachment: fixed; position: relative; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(3,92,92,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(3,92,92,0.05) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(3,92,92,0.03) 0%, transparent 50%); pointer-events: none; z-index: -1; }
body::after { content: 'ALPHA'; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); font-size: 25vw; font-weight: 900; color: rgba(3,92,92,0.02); font-family: var(--kpy-font-heading, 'Arial', sans-serif); letter-spacing: 0.1em; pointer-events: none; z-index: -1; white-space: nowrap; text-transform: uppercase; }

/* ============================================================  TYPOGRAPHY  ============================================================ */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: var(--ls-font-heading) !important; font-weight: 600; color: var(--ls-base); line-height: 1.3; }
h1, .h1 { font-size: 2.5rem; font-weight: 700; }
h2, .h2 { font-size: 2rem; font-weight: 600; }
h3, .h3 { font-size: 1.75rem; font-weight: 600; }
h4, .h4 { font-size: 1.5rem; font-weight: 500; }
h5, .h5 { font-size: 1.25rem; font-weight: 500; }
h6, .h6 { font-size: 1.125rem; font-weight: 500; }
a { color: var(--ls-primary); text-decoration: none; transition: color var(--ls-transition); }
a:hover { color: var(--ls-primary-dark); }

@media (max-width: 768px) {
h1, .h1 { font-size: 2rem; }
h2, .h2 { font-size: 1.75rem; }
h3, .h3 { font-size: 1.5rem; }
}



.alpha-fund-section { padding: 80px 0; background-color: #f0f7f6; }
.alpha-fund-row { align-items: stretch; }
.alpha-fund-content { display: flex; flex-direction: column; gap: 12px; }
.alpha-fund-content .section-label { font-size: 13px; font-weight: 700; color: #1a7a6e; letter-spacing: 2px; text-transform: uppercase; }
.alpha-fund-content .alpha-section-split-heading { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: #111; line-height: 1.15; margin: 0 0 8px; }
.alpha-fund-content p { color: #555; font-size: 15px; line-height: 1.75; margin: 0; }
.alpha-fund-content .about-benefits { list-style: none; padding: 0; margin: 8px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.alpha-fund-content .about-benefits li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #333; font-weight: 500; }
.alpha-fund-content .about-benefits li i { color: #1a7a6e; font-size: 18px; flex-shrink: 0; }
.alpha-fund-buttons { display: flex; flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.alpha-fund-content .btn-section-cta { display: inline-block; padding: 11px 22px; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: all 0.3s ease; white-space: nowrap; }
.alpha-fund-content .alpha-btn-shape { background-color: #1a7a6e; color: #fff; border: 2px solid #1a7a6e; }
.alpha-fund-content .alpha-btn-shape:hover { background-color: #145f56; border-color: #145f56; color: #fff; }
.alpha-fund-content .btn-outline-alpha { background-color: transparent; color: #1a7a6e; border: 2px solid #1a7a6e; }
.alpha-fund-content .btn-outline-alpha:hover { background-color: #1a7a6e; color: #fff; }
.alpha-fund-image-col { display: flex; justify-content: center; align-items: stretch; }
.fund-image-wrapper { position: relative; width: 100%; max-width: 460px; }
.fund-arch-image { width: 100%; height: 480px; object-fit: cover; object-position: center; display: block; border-radius: 50px 50px 0 0; }
.about-image-overlay { position: absolute; inset: 0; border-radius: 50px 50px 0 0; background: linear-gradient(to bottom, rgba(26,122,110,0.08), rgba(26,122,110,0.18)); pointer-events: none; }
@media (max-width: 991px) { .alpha-fund-section { padding: 50px 0; } .alpha-fund-image-col { order: -1; } .fund-arch-image { height: 340px; } }
@media (max-width: 576px) { .fund-arch-image { height: 260px; border-radius: 30px 30px 0 0; } .about-image-overlay { border-radius: 30px 30px 0 0; } .alpha-fund-buttons { flex-direction: column; align-items: flex-start; } }


/* ============================================================  BUTTONS  ============================================================ */
.btn { font-family: var(--ls-font-primary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 6px; transition: all var(--ls-transition); border-width: 2px; }
.btn-primary { background: var(--kpy-gradient-primary); border-color: var(--kpy-primary); color: var(--ls-white); }
.btn-primary:hover, .btn-primary:focus { background: var(--kpy-gradient-medium); border-color: var(--alpha-green-75); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(4,122,122,0.4); }
.btn-outline-primary { color: var(--ls-primary); border-color: var(--ls-primary); }
.btn-outline-primary:hover { background-color: var(--ls-primary); border-color: var(--ls-primary); }
.btn-secondary { background-color: var(--ls-secondary); border-color: var(--ls-secondary); }
.btn-success { background-color: var(--ls-accent); border-color: var(--ls-accent); }

/* ============================================================  CARDS  ============================================================ */
.card { border: none; box-shadow: var(--ls-shadow); transition: all var(--ls-transition); border-radius: 10px; }
.card:hover { transform: translateY(-5px); box-shadow: var(--ls-shadow-lg); }
.card-header { background-color: var(--ls-bg-secondary); border-bottom: 2px solid var(--ls-light-grey); font-weight: 600; }

/* ============================================================  NAVBAR  ============================================================ */
.navbar-brand { font-family: var(--ls-font-heading) !important; font-weight: 700; font-size: 1.5rem; }
.nav-link { font-weight: 700; transition: color var(--ls-transition); }
.nav-link:hover { color: var(--ls-white) !important; }

/* ============================================================  TEXT UTILITIES  ============================================================ */
.text-primary { color: var(--kpy-primary) !important; }
.text-primary-75 { color: var(--alpha-green-75) !important; }
.text-primary-50 { color: var(--alpha-green-50) !important; }
.text-primary-25 { color: var(--alpha-green-25) !important; }
.text-secondary { color: var(--ls-secondary) !important; }
.text-success { color: var(--ls-accent) !important; }
.text-muted { color: var(--ls-grey) !important; }
.ls-construction { color: var(--kpy-primary); }
.ls-water { color: var(--ls-water-blue); }
.ls-civil { color: var(--ls-civil-grey); }
.ls-supply { color: var(--ls-supply-green); }

/* ============================================================  BACKGROUND UTILITIES  ============================================================ */
.bg-primary { background: var(--kpy-gradient-primary) !important; }
.bg-secondary { background: var(--kpy-gradient-medium) !important; }
.bg-light { background: var(--alpha-green-bg) !important; }
.bg-green-75 { background: var(--alpha-green-75) !important; }
.bg-green-50 { background: var(--alpha-green-50) !important; }
.bg-green-25 { background: var(--alpha-green-25) !important; }
.bg-construction { background-color: var(--kpy-primary); }
.bg-water { background-color: var(--ls-water-blue); }
.bg-civil { background-color: var(--ls-civil-grey); }
.bg-supply { background-color: var(--ls-supply-green); }
.gradient-primary { background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-primary-dark) 100%); }
.gradient-secondary { background: linear-gradient(135deg, var(--ls-secondary) 0%, var(--ls-secondary-dark) 100%); }
.gradient-hero { background: linear-gradient(135deg, rgba(229,62,62,0.9) 0%, rgba(43,108,176,0.9) 100%); }

/* ============================================================  FLOATING CIRCLES  ============================================================ */
.floating-circles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.floating-circles span { position: absolute; border-radius: 50%; background: rgba(229,62,62,0.08); animation: floatOrb 15s ease-in-out infinite; }
.floating-circles span:nth-child(1) { width: 120px; height: 120px; top: 10%; left: 10%; animation-duration: 14s; }
.floating-circles span:nth-child(2) { width: 80px; height: 80px; top: 30%; left: 80%; animation-duration: 18s; animation-delay: 2s; }
.floating-circles span:nth-child(3) { width: 100px; height: 100px; top: 70%; left: 15%; animation-duration: 16s; animation-delay: 4s; }
.floating-circles span:nth-child(4) { width: 140px; height: 140px; top: 80%; left: 85%; animation-duration: 20s; animation-delay: 1s; }

@keyframes floatOrb {
0% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(30px, -40px) rotate(90deg); }
50% { transform: translate(-20px, -80px) rotate(180deg); }
75% { transform: translate(20px, -40px) rotate(270deg); }
100% { transform: translate(0, 0) rotate(360deg); }
}

/* ============================================================  HELPERS & FORM  ============================================================ */
.shadow-ls { box-shadow: var(--ls-shadow) !important; }
.shadow-ls-lg { box-shadow: var(--ls-shadow-lg) !important; }
.py-ls { padding-top: var(--ls-space-md); padding-bottom: var(--ls-space-md); }
.my-ls { margin-top: var(--ls-space-md); margin-bottom: var(--ls-space-md); }
.border-primary { border-color: var(--ls-primary) !important; }
.border-secondary { border-color: var(--ls-secondary) !important; }
.hover-lift { transition: transform var(--ls-transition); }
.hover-lift:hover { transform: translateY(-3px); }
.form-control:focus { border-color: var(--ls-primary); box-shadow: 0 0 0 0.2rem rgba(229,62,62,0.25); }



/* ============================================================  SHARED SECTION UTILITIES  ============================================================ */
.alpha-section-label { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kpy-primary); background: var(--alpha-green-bg); border: 1px solid var(--alpha-green-light); padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 1rem; }
.alpha-section-title { font-family: var(--kpy-font-heading) !important; font-size: 2rem; font-weight: 700; color: var(--kpy-base); line-height: 1.25; margin-bottom: 1rem; }
.alpha-section-title span { color: var(--kpy-primary); }

/* ============================================================  SHARED BUTTONS  ============================================================ */
.alpha-btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: var(--kpy-gradient-primary); color: #fff !important; border: none; border-radius: 6px; font-family: var(--kpy-font-primary); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em; text-decoration: none !important; text-transform: uppercase; transition: all var(--kpy-transition); cursor: pointer; }
.alpha-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(3,92,92,0.4); background: var(--kpy-gradient-medium); color: #fff !important; }
.alpha-btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: transparent; color: var(--kpy-primary) !important; border: 2px solid var(--kpy-primary); border-radius: 6px; font-family: var(--kpy-font-primary); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em; text-decoration: none !important; text-transform: uppercase; transition: all var(--kpy-transition); }
.alpha-btn-outline:hover { background: var(--kpy-primary); color: #fff !important; transform: translateY(-2px); }
.alpha-btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; background: rgba(255,255,255,0.15); color: #fff !important; border: 2px solid rgba(255,255,255,0.5); border-radius: 6px; font-family: var(--kpy-font-primary); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em; text-decoration: none !important; text-transform: uppercase; transition: all var(--kpy-transition); backdrop-filter: blur(4px); }
.alpha-btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: #fff; color: #fff !important; transform: translateY(-2px); }

/* ============================================================  BLOCK 1: FUND HERO  ============================================================ */
.alpha-fund-hero { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 5rem 4rem; background: var(--kpy-gradient-hero); border-radius: 0 0 40px 40px; overflow: hidden; min-height: 420px; }
.alpha-fund-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 40%), radial-gradient(circle at 90% 20%, rgba(255,255,255,0.04) 0%, transparent 40%); pointer-events: none; }
.alpha-fund-hero__inner { position: relative; z-index: 2; max-width: 600px; }
.alpha-fund-hero__badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kpy-primary); background: rgba(255,255,255,0.95); padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.alpha-fund-hero__title { font-family: var(--kpy-font-heading) !important; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff !important; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.alpha-fund-hero__tagline { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.alpha-fund-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.alpha-fund-hero__graphic { position: relative; width: 240px; height: 240px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.alpha-fund-hero__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); animation: alpha-ring-pulse 4s ease-in-out infinite; }
.alpha-fund-hero__ring--1 { width: 100%; height: 100%; animation-delay: 0s; }
.alpha-fund-hero__ring--2 { width: 70%; height: 70%; border-color: rgba(255,255,255,0.25); animation-delay: 0.6s; }
.alpha-fund-hero__ring--3 { width: 40%; height: 40%; border-color: rgba(255,255,255,0.4); animation-delay: 1.2s; }
.alpha-fund-hero__icon { font-size: 4rem; color: rgba(255,255,255,0.9); position: relative; z-index: 2; filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
@keyframes alpha-ring-pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 1; } }
@media (max-width: 768px) {
.alpha-fund-hero { flex-direction: column; padding: 3rem 1.5rem; text-align: center; border-radius: 0; }
.alpha-fund-hero__graphic { display: none; }
.alpha-fund-hero__actions { justify-content: center; }
}

/* ============================================================  BLOCK 2: STATS BAR  ============================================================ */
.alpha-fund-stats-bar { background: #fff; border-radius: 16px; box-shadow: var(--kpy-shadow-lg); padding: 2rem 2.5rem; margin: -2rem 2rem 0; position: relative; z-index: 10; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; border: 1px solid var(--alpha-green-light); }
.alpha-stat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem; border-right: 1px solid var(--kpy-light-grey); gap: 0.35rem; }
.alpha-stat-card:last-child { border-right: none; }
.alpha-stat-card i { font-size: 1.5rem; color: var(--kpy-primary); margin-bottom: 0.25rem; }
.alpha-stat-card__value { font-family: var(--kpy-font-heading); font-size: 1.6rem; font-weight: 800; color: var(--kpy-base); line-height: 1; }
.alpha-stat-card__label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--kpy-grey); }
@media (max-width: 768px) {
.alpha-fund-stats-bar { grid-template-columns: repeat(2, 1fr); margin: 0; border-radius: 0; }
.alpha-stat-card:nth-child(2) { border-right: none; }
.alpha-stat-card:nth-child(1), .alpha-stat-card:nth-child(2) { border-bottom: 1px solid var(--kpy-light-grey); }
}

/* ============================================================  BLOCK 3: FUND OVERVIEW  ============================================================ */
.alpha-fund-overview { padding: 5rem 4rem; max-width: 860px; margin: 0 auto; text-align: center; }
.alpha-fund-overview p { font-size: 1.05rem; line-height: 1.9; color: var(--kpy-grey); }
@media (max-width: 768px) { .alpha-fund-overview { padding: 3rem 1.5rem; } }

/* ============================================================  BLOCK 4: KEY BENEFITS  ============================================================ */
.alpha-fund-benefits { padding: 5rem 4rem; background: var(--alpha-green-bg); }
.alpha-fund-benefits__wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.alpha-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.alpha-benefit-item { background: #fff; border-radius: var(--kpy-border-radius-custom); padding: 2rem 1.75rem; text-align: left; border: 1px solid var(--alpha-green-light); transition: all var(--kpy-transition); position: relative; overflow: hidden; }
.alpha-benefit-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--kpy-gradient-primary); transition: width var(--kpy-transition); }
.alpha-benefit-item:hover { transform: translateY(-4px); box-shadow: var(--kpy-shadow-xl); border-color: var(--kpy-primary-lighter); }
.alpha-benefit-item:hover::after { width: 100%; }
.alpha-benefit-item__icon { width: 52px; height: 52px; background: var(--alpha-green-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; border: 1px solid var(--alpha-green-light); transition: all var(--kpy-transition); }
.alpha-benefit-item:hover .alpha-benefit-item__icon { background: var(--kpy-gradient-primary); border-color: transparent; }
.alpha-benefit-item__icon i { font-size: 1.4rem; color: var(--kpy-primary); transition: color var(--kpy-transition); }
.alpha-benefit-item:hover .alpha-benefit-item__icon i { color: #fff; }
.alpha-benefit-item__title { font-family: var(--kpy-font-heading) !important; font-size: 1rem; font-weight: 700; color: var(--kpy-base); margin-bottom: 0.5rem; }
.alpha-benefit-item__text { font-size: 0.9rem; color: var(--kpy-grey); line-height: 1.7; margin: 0; }
@media (max-width: 992px) { .alpha-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .alpha-benefits-grid { grid-template-columns: 1fr; } .alpha-fund-benefits { padding: 3rem 1.5rem; } }

/* ============================================================  BLOCK 5: FUND DETAILS TABLE  ============================================================ */
.alpha-fund-details { padding: 5rem 4rem; }
.alpha-fund-details__inner { max-width: 820px; margin: 0 auto; }
.alpha-details-table { margin-top: 2.5rem; border-radius: 16px; overflow: hidden; border: 1px solid var(--alpha-green-light); box-shadow: var(--kpy-shadow-md); }
.alpha-details-row { display: flex; align-items: center; padding: 1.1rem 1.75rem; border-bottom: 1px solid var(--kpy-light-grey); transition: background var(--kpy-transition); gap: 1rem; }
.alpha-details-row:last-child { border-bottom: none; }
.alpha-details-row:nth-child(even) { background: var(--alpha-green-bg); }
.alpha-details-row:hover { background: var(--alpha-green-light); }
.alpha-details-row__key { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; font-weight: 600; color: var(--kpy-base); width: 220px; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.04em; }
.alpha-details-row__key i { color: var(--kpy-primary); font-size: 1rem; }
.alpha-details-row__val { font-size: 0.95rem; color: var(--kpy-grey); font-weight: 500; }
@media (max-width: 768px) { .alpha-fund-details { padding: 3rem 1.5rem; } .alpha-details-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; } .alpha-details-row__key { width: auto; font-size: 0.75rem; } }

/* ============================================================  BLOCK 6: FUND HIGHLIGHTS  ============================================================ */
.alpha-fund-highlights { padding: 5rem 4rem; background: var(--kpy-base); position: relative; overflow: hidden; }
.alpha-fund-highlights::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(3,92,92,0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(3,92,92,0.2) 0%, transparent 50%); pointer-events: none; }
.alpha-highlights-wrap { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.alpha-highlights-wrap .alpha-section-label { background: rgba(3,92,92,0.4); border-color: rgba(3,92,92,0.6); color: var(--alpha-green-50); }
.alpha-highlights-wrap .alpha-section-title { color: #fff; }
.alpha-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.alpha-highlight-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; text-align: left; backdrop-filter: blur(10px); transition: all var(--kpy-transition); position: relative; overflow: hidden; }
.alpha-highlight-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--kpy-gradient-primary); opacity: 0; transition: opacity var(--kpy-transition); }
.alpha-highlight-card:hover { background: rgba(3,92,92,0.2); border-color: rgba(3,92,92,0.5); transform: translateY(-4px); }
.alpha-highlight-card:hover::before { opacity: 1; }
.alpha-highlight-card i { font-size: 2rem; color: var(--alpha-green-50); margin-bottom: 1rem; display: block; }
.alpha-highlight-card h5 { font-family: var(--kpy-font-heading) !important; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.alpha-highlight-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
@media (max-width: 992px) { .alpha-highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .alpha-highlights-grid { grid-template-columns: 1fr; } .alpha-fund-highlights { padding: 3rem 1.5rem; } }

/* ============================================================  BLOCK 7: CTA BANNER  ============================================================ */
.alpha-fund-cta { padding: 5rem 4rem; background: var(--kpy-gradient-secondary); position: relative; overflow: hidden; text-align: center; }
.alpha-fund-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%); pointer-events: none; }
.alpha-fund-cta__inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.alpha-fund-cta__icon { font-size: 2.5rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; display: block; }
.alpha-fund-cta__title { font-family: var(--kpy-font-heading) !important; font-size: 2rem; font-weight: 800; color: #fff !important; margin-bottom: 1rem; }
.alpha-fund-cta__text { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 2rem; }
.alpha-fund-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
@media (max-width: 768px) { .alpha-fund-cta { padding: 3rem 1.5rem; } .alpha-fund-cta__title { font-size: 1.5rem; } }

/* ============================================================  THREE-TIER HEADER  ============================================================ */
.alpha-three-tier-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; width: 100%; background: transparent; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.alpha-three-tier-header.scrolled { box-shadow: none; }
.alpha-header-sticky-wrap { position: sticky; top: 0; z-index: 1050; background: #fff; transition: box-shadow 0.25s ease; }
.alpha-header-sticky-wrap.sticky-header { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* Tier 1: Top Bar */
.alpha-top-bar { background: var(--kpy-primary); padding: 10px 0; font-size: 13px; width: 100%; }
.alpha-top-bar .container { max-width: 100% !important; width: 100% !important; padding-left: 1rem !important; padding-right: 1rem !important; margin-left: 0 !important; margin-right: 0 !important; }
.alpha-top-bar .row { margin-left: 0 !important; margin-right: 0 !important; width: 100%; display: flex; justify-content: space-between; align-items: center; }
.alpha-top-bar-left { display: flex; align-items: center; flex: 0 0 auto; }
.alpha-top-bar-text { color: #fff; margin: 0; font-size: 13px; font-weight: 400; letter-spacing: 0.3px; }
.alpha-top-bar-right { display: flex; justify-content: flex-end; align-items: center; flex: 0 0 auto; }
.alpha-top-contact-details { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
.alpha-top-contact-item { display: flex; align-items: center; gap: 6px; color: #fff; font-size: 12px; white-space: nowrap; }
.alpha-top-contact-item i { font-size: 13px; color: #fff; }
.alpha-top-separator { color: rgba(255,255,255,0.5); font-size: 14px; margin: 0 10px; }
.alpha-social-icons { display: flex; gap: 12px; align-items: center; }
.alpha-social-icons a { color: var(--kpy-primary) !important; font-size: 18px; text-decoration: none; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; }
.alpha-social-icons a:hover { color: var(--kpy-primary-dark) !important; transform: translateY(-2px); background: rgba(3,92,92,0.1); border-radius: 4px; }

/* Tier 2: Middle Bar */
.alpha-middle-bar { background: #fff; padding: 20px 0; border-bottom: 1px solid #e5e5e5; width: 100%; }
.alpha-middle-bar .container { max-width: 100% !important; width: 100% !important; padding-left: 2rem; padding-right: 2rem; margin-left: 0 !important; margin-right: 0 !important; }
.alpha-middle-bar > .container { max-width: 100% !important; width: 100% !important; }
.alpha-logo-section { display: flex; align-items: center; justify-content: flex-start; padding-left: 0; }
.alpha-logo-wrapper { display: flex; align-items: center; gap: 12px; }
.alpha-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--kpy-primary); }
.alpha-logo-icon-wrapper { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--kpy-primary-light); border-radius: 8px; }
.alpha-logo-icon { font-size: 28px; color: var(--kpy-primary); }
.alpha-logo-img { max-height: 50px; width: auto; object-fit: contain; }
.alpha-logo-text { font-size: 22px; font-weight: 600; color: var(--kpy-primary); line-height: 1.2; }
.alpha-logo-text strong { font-weight: 700; }
.alpha-search-section { display: flex; align-items: center; justify-content: center; }
.alpha-search-wrapper { width: 100%; max-width: 500px; }
.alpha-search-form { width: 100%; }
.alpha-search-form .input-group { display: flex; width: 100%; }
.alpha-search-input { flex: 1; border: 1px solid #e5e5e5; border-radius: 25px 0 0 25px; padding: 10px 20px; font-size: 14px; outline: none; transition: all 0.3s ease; }
.alpha-search-input:focus { border-color: var(--kpy-primary); box-shadow: 0 0 0 3px rgba(3,92,92,0.1); }
.alpha-search-btn { background: var(--kpy-primary); color: #fff; border: 1px solid var(--kpy-primary); border-left: none; border-radius: 0 25px 25px 0; padding: 10px 20px; cursor: pointer; transition: all 0.3s ease; }
.alpha-search-btn:hover { background: var(--kpy-primary-dark); border-color: var(--kpy-primary-dark); }
.alpha-search-btn i { font-size: 16px; }
.alpha-contact-section { display: flex; align-items: center; justify-content: flex-end; padding-right: 0; }
.alpha-social-section { display: flex; align-items: center; justify-content: flex-end; padding-right: 0; }
.alpha-contact-item { display: flex; align-items: center; gap: 12px; padding: 0 10px; }
.alpha-contact-item:not(:last-child) { border-right: 1px solid #e5e5e5; }
.alpha-contact-icon-wrapper { width: 40px; height: 40px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alpha-contact-icon { font-size: 18px; color: #666; }
.alpha-contact-content { display: flex; flex-direction: column; gap: 2px; }
.alpha-contact-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.alpha-contact-value { font-size: 13px; color: #333; font-weight: 500; line-height: 1.3; }

/* Tier 3: Nav Bar */
.alpha-nav-bar { background: var(--kpy-primary) !important; padding: 0; width: 100%; min-height: 60px; }
.alpha-nav-bar .container { max-width: 100% !important; width: 100% !important; padding-left: 2rem; padding-right: 2rem; background: transparent !important; margin-left: 0 !important; margin-right: 0 !important; }
.alpha-nav-bar .row { margin-left: 0 !important; margin-right: 0 !important; width: 100%; }
.alpha-nav-bar .col-12 { padding-left: 0 !important; padding-right: 0 !important; width: 100%; }
.alpha-nav-bar > .container { max-width: 100% !important; width: 100% !important; }
.alpha-main-nav { position: relative; display: flex; align-items: center; width: 100%; background: transparent !important; }
.alpha-nav-logo-mobile { display: none; align-items: center; gap: 8px; margin-right: 0.5rem; }
.alpha-nav-logo-mobile img { max-height: 32px; width: auto; object-fit: contain; }
.alpha-nav-logo-text { font-size: 18px; font-weight: 600; color: var(--kpy-primary); text-decoration: none; }
.alpha-nav-menu { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; gap: 0; width: 100%; justify-content: center; flex-wrap: wrap; background: transparent !important; }
.alpha-nav-menu li { position: relative; margin: 0; }
.alpha-nav-menu li a { display: block; padding: 18px 20px; color: #fff !important; text-decoration: none; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; position: relative; white-space: nowrap; }
.alpha-nav-menu li a:hover, .alpha-nav-menu li.current-menu-item > a { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.alpha-nav-menu li.has-mega-menu > a::after, .alpha-nav-menu li.has-simple-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #fff; margin-left: 8px; vertical-align: middle; transition: transform 0.3s ease; margin-top: 2px; }
.alpha-nav-menu li.has-mega-menu:hover > a::after, .alpha-nav-menu li.has-simple-dropdown:hover > a::after { transform: rotate(180deg); }
.alpha-nav-menu li a i.bi-chevron-down { display: none !important; }
.alpha-nav-menu .simple-dropdown, .alpha-nav-menu .mega-menu { position: absolute; top: 100%; left: 0; background: var(--kpy-primary) !important; min-width: 220px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); display: none; z-index: 1000; padding: 10px 0; border-top: 3px solid rgba(255,255,255,0.3); }
.alpha-nav-menu li:hover > .simple-dropdown, .alpha-nav-menu li:hover > .mega-menu { display: block; }
.alpha-nav-menu .simple-dropdown li, .alpha-nav-menu .mega-menu li { margin: 0; }
.alpha-nav-menu .simple-dropdown a, .alpha-nav-menu .mega-menu a { padding: 12px 20px; color: #fff !important; text-transform: none; font-weight: 500; font-size: 14px; }
.alpha-nav-menu .simple-dropdown a:hover, .alpha-nav-menu .mega-menu a:hover { background: rgba(255,255,255,0.2) !important; color: #fff !important; }
.alpha-nav-menu .sub-menu { list-style: none; padding: 0; margin: 0; }
.alpha-nav-menu .sub-menu a { color: #fff !important; font-size: 0.85rem; text-decoration: none; padding: 0.5rem 0; display: block; transition: all 0.3s ease; text-transform: capitalize; }
.alpha-nav-menu .sub-menu a:hover { color: #fff !important; background: rgba(255,255,255,0.1); padding-left: 0.75rem; }

/* Mobile Toggle & Overlay */
.alpha-mobile-menu-toggle { display: none; background: transparent; border: none; padding: 10px; cursor: pointer; margin-left: auto; }
.alpha-mobile-menu-toggle i { font-size: 22px; color: var(--kpy-primary); }
.alpha-mobile-menu-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--kpy-primary-dark, #024a4a); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.alpha-mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.alpha-mobile-menu-close { position: absolute; top: 20px; right: 20px; background: transparent; border: 2px solid var(--kpy-primary); color: var(--kpy-primary); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: all 0.3s ease; }
.alpha-mobile-menu-close:hover { background: var(--kpy-primary); color: #fff; }
.alpha-mobile-menu-content { width: 90%; max-width: 500px; padding: 2.5rem 1.5rem; }
.alpha-mobile-menu-logo { margin-bottom: 2rem; }
.alpha-mobile-menu-logo img { max-height: 40px; width: auto; object-fit: contain; }
.alpha-mobile-nav-menu { list-style: none; padding: 0; margin: 0; }
.alpha-mobile-nav-menu li { margin: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.alpha-mobile-nav-menu a { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; color: #ffffff; text-decoration: none; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }
.alpha-mobile-nav-menu a:hover { background: rgba(255,255,255,0.12); padding-left: 26px; }
.alpha-mobile-nav-menu .has-children > a { padding-right: 10px; }
.alpha-mobile-nav-menu .mobile-dropdown-arrow { margin-left: 0.75rem; font-size: 0.9rem; opacity: 0.85; transition: transform 0.25s ease; }
.alpha-mobile-nav-menu .has-children.expanded > a .mobile-dropdown-arrow { transform: rotate(180deg); }
.alpha-mobile-nav-menu .mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(0,0,0,0.25); }
.alpha-mobile-nav-menu .mobile-submenu a { padding-left: 32px; font-size: 14px; text-transform: none; font-weight: 500; }

/* ============================================================  RESPONSIVE – HEADER  ============================================================ */
@media (max-width: 991.98px) {
.alpha-top-contact-details { flex-direction: column; gap: 8px; align-items: flex-start; }
.alpha-top-separator { display: none; }
.alpha-logo-section { margin-bottom: 15px; }
.alpha-search-section { margin-bottom: 15px; }
.alpha-social-section { justify-content: center; }
.alpha-contact-item { padding: 0 10px; margin-bottom: 10px; }
.alpha-contact-value { font-size: 12px; }
.alpha-nav-logo-mobile { display: flex; align-items: center; gap: 8px; margin-top: 6px; margin-bottom: 6px; }
.alpha-nav-menu { display: none; }
.alpha-mobile-menu-toggle { display: flex; margin-left: auto; }
.alpha-middle-bar { display: none; }
.alpha-main-nav { justify-content: space-between; align-items: center; }
body { padding-top: 0 !important; }
}
@media (max-width: 767.98px) {
.alpha-top-bar-text { font-size: 12px; }
.alpha-middle-bar { padding: 15px 0; }
.alpha-logo-text { font-size: 18px; }
.alpha-search-section { margin-bottom: 15px; }
.alpha-top-contact-item { font-size: 11px; }
.alpha-social-section { justify-content: center; margin-top: 10px; }
.alpha-contact-section { flex-direction: column; gap: 10px; align-items: flex-start; }
.alpha-contact-item { border-right: none; border-bottom: 1px solid #e5e5e5; padding: 10px 0; width: 100%; }
.alpha-contact-item:last-child { border-bottom: none; }
.alpha-nav-bar { padding: 8px 0; background: #ffffff !important; border-bottom: 1px solid #e5e5e5; }
}

/* ============================================================  BODY PADDING FOR FIXED HEADER  ============================================================ */
body { padding-top: 180px; }
@media (max-width: 991.98px) { body { padding-top: 160px; } }
@media (max-width: 767.98px) { body { padding-top: 200px; } }

/* ============================================================  MAIN HEADER  ============================================================ */
.main-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: none; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 1.5rem 0; }
.main-header.scrolled { padding: 0.75rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.08); background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.header-logo-section { flex: 0 0 auto; }
.header-logo-wrapper { background: #ffffff; padding: 15px 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-logo-wrapper .logo-img { height: 60px; width: auto; max-width: 200px; object-fit: contain; transition: all 0.3s ease; }
.header-logo-wrapper .logo-placeholder-link { display: flex; align-items: center; justify-content: center; text-decoration: none; width: 60px; height: 60px; }
.header-logo-wrapper .logo-placeholder-circle { width: 60px; height: 60px; background: var(--kpy-primary, #035c5c); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; font-weight: 700; font-size: 1.2rem; font-family: var(--kpy-font-heading); letter-spacing: 0.05em; }
.main-header.scrolled .header-logo-wrapper { padding: 12px 18px; }
.main-header.scrolled .header-logo-wrapper .logo-img { height: 50px; }
.main-header.scrolled .header-logo-wrapper .logo-placeholder-link { width: 50px; height: 50px; }
.main-header.scrolled .header-logo-wrapper .logo-placeholder-circle { width: 50px; height: 50px; font-size: 1rem; }
.header-nav-section { flex: 1; display: flex; justify-content: center; padding: 0 2rem; }
.header-nav { display: flex; align-items: center; }
.header-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.5rem; }
.header-menu > li { position: relative; }
.header-menu .nav-link { color: var(--kpy-white); font-family: var(--kpy-font-primary); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.75rem 1.25rem; position: relative; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.header-menu .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--kpy-white); transform: translateX(-50%); transition: width 0.3s ease; }
.header-menu .has-mega-menu .nav-link::after, .header-menu .has-simple-dropdown .nav-link::after { display: none; }
.header-menu .nav-link:hover { color: var(--kpy-primary); opacity: 1; }
.header-menu .nav-link:hover::after { width: 80%; background: var(--kpy-primary); }
.header-menu .current-menu-item .nav-link { color: var(--kpy-white); opacity: 1; }
.header-menu .current-menu-item .nav-link::after { width: 80%; }
.header-menu .nav-link .bi-chevron-down { font-size: 0.7rem; opacity: 0.8; transition: transform 0.3s ease; }
.header-menu .has-mega-menu:hover .nav-link .bi-chevron-down, .header-menu .has-simple-dropdown:hover .nav-link .bi-chevron-down { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--kpy-white); border-radius: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.12); margin-top: 0.5rem; display: none; z-index: 1050; min-width: 600px; max-width: 1000px; width: max-content; border-top: 2px solid var(--kpy-primary); }
.mega-menu-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; padding: 2.5rem; background: var(--kpy-primary) !important; }
.mega-menu-column { min-width: 200px; }
.mega-menu-category > a { color: #fff !important; font-weight: 600; font-size: 0.85rem; text-decoration: none; display: block; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; }
.mega-menu-category > a:hover { color: #fff !important; background: rgba(255,255,255,0.1); }

/* Simple Dropdown */
.simple-dropdown { position: absolute; top: 100%; left: 0; background: var(--kpy-white); box-shadow: 0 10px 30px rgba(0,0,0,0.12); margin-top: 0.5rem; display: none; z-index: 1050; min-width: 220px; list-style: none; padding: 1rem 0; border-top: 2px solid var(--kpy-primary); }
.simple-dropdown a { color: var(--kpy-grey); font-size: 0.9rem; text-decoration: none; padding: 0.75rem 1.5rem; display: block; transition: all 0.3s ease; text-transform: capitalize; }
.simple-dropdown:not(.alpha-nav-menu .simple-dropdown) a:hover { color: #fff !important; background: rgba(255,255,255,0.2) !important; padding-left: 2rem; }
.sub-menu { list-style: none; padding: 0; margin: 0; }
.sub-menu li { margin-bottom: 0.5rem; }
.has-mega-menu:hover .mega-menu, .has-simple-dropdown:hover .simple-dropdown { display: block; animation: fadeInDown 0.3s ease; }
@keyframes fadeInDown { from { opacity: 0; transform: translateX(-50%) translateY(-10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* Header Actions */
.header-actions-section { flex: 0 0 auto; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.kpy-menu-language-switcher { position: relative; }
.kpy-menu-lang-toggle { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: var(--kpy-white); padding: 0.5rem 1rem; border-radius: 4px; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; transition: all 0.3s ease; font-size: 0.85rem; font-weight: 500; backdrop-filter: blur(10px); }
.kpy-menu-lang-toggle:hover { border-color: var(--kpy-white); background: rgba(255,255,255,0.25); }
.main-header.scrolled .kpy-menu-lang-toggle { background: transparent; border: 1px solid var(--kpy-light-grey); color: var(--kpy-base); backdrop-filter: none; }
.main-header.scrolled .kpy-menu-lang-toggle:hover { border-color: var(--kpy-primary); color: var(--kpy-primary); background: rgba(3,92,92,0.05); }
.kpy-menu-lang-flag { font-size: 1.2rem; }
.kpy-menu-lang-text { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }
.kpy-menu-lang-arrow { font-size: 0.7rem; transition: transform 0.3s ease; }
.kpy-menu-lang-dropdown.active .kpy-menu-lang-arrow { transform: rotate(180deg); }
.kpy-menu-lang-dropdown-menu { position: absolute; top: calc(100% + 0.5rem); right: 0; background: var(--kpy-white); border: 1px solid var(--kpy-light-grey); border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); min-width: 150px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 1100; pointer-events: none; }
.kpy-menu-lang-dropdown-menu.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.kpy-menu-lang-option { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; color: var(--kpy-grey); text-decoration: none; transition: all 0.3s ease; border-bottom: 1px solid var(--kpy-light-grey); cursor: pointer; pointer-events: auto; }
.kpy-menu-lang-option:last-child { border-bottom: none; }
.kpy-menu-lang-option:hover { background: rgba(3,92,92,0.05); color: var(--kpy-primary); }
.kpy-menu-lang-option.active { background: rgba(3,92,92,0.1); color: var(--kpy-primary); }
.kpy-menu-lang-name { font-size: 0.9rem; font-weight: 500; }
.search-toggle { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: var(--kpy-white); width: 42px; height: 42px; border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; backdrop-filter: blur(10px); }
.search-toggle:hover { border-color: var(--kpy-white); background: rgba(255,255,255,0.25); }
.main-header.scrolled .search-toggle { background: transparent; border: 1px solid var(--kpy-light-grey); color: var(--kpy-base); backdrop-filter: none; }
.main-header.scrolled .search-toggle:hover { border-color: var(--kpy-primary); color: var(--kpy-primary); }
.main-header.scrolled .header-menu .nav-link { color: var(--kpy-base); }
.main-header.scrolled .header-menu .nav-link::after { background: var(--kpy-primary); }
.main-header.scrolled .header-menu .nav-link:hover { color: var(--kpy-primary); opacity: 1; }
.main-header.scrolled .header-menu .nav-link:hover::after { background: var(--kpy-primary); }
.main-header.scrolled .header-menu .has-mega-menu .nav-link::after, .main-header.scrolled .header-menu .has-simple-dropdown .nav-link::after { display: none; }
.main-header.scrolled .header-menu .current-menu-item .nav-link { color: var(--kpy-primary); }

/* Header Search Bar */
.header-search-bar { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease; background: var(--kpy-bg-secondary); border-top: 1px solid var(--kpy-light-grey); }
.header-search-bar.active { max-height: 120px; opacity: 1; padding: 1.5rem 0; }
.search-container { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.header-search-bar .form-control { border: 1px solid var(--kpy-light-grey); border-radius: 4px 0 0 4px; padding: 0.875rem 1.25rem; font-size: 0.95rem; background: var(--kpy-white); color: var(--kpy-base); }
.header-search-bar .form-control:focus { border-color: var(--kpy-primary); box-shadow: 0 0 0 0.2rem rgba(3,92,92,0.15); outline: none; }
.header-search-bar .btn-search { border-radius: 0 4px 4px 0; padding: 0.875rem 1.5rem; border: 1px solid var(--kpy-primary); background: var(--kpy-primary); color: var(--kpy-white); transition: all 0.3s ease; }
.header-search-bar .btn-search:hover { background: var(--kpy-primary-dark); border-color: var(--kpy-primary-dark); }
#header-search-results { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; background: var(--kpy-white); border: 1px solid var(--kpy-light-grey); border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); margin-top: 0.5rem; max-height: 400px; overflow-y: auto; }
#header-search-results li a { display: block; color: var(--kpy-base); text-decoration: none; font-size: 0.9rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--kpy-light-grey); transition: all 0.3s ease; }
#header-search-results li:last-child a { border-bottom: none; }
#header-search-results li a:hover { background: rgba(3,92,92,0.05); color: var(--kpy-primary); padding-left: 1.5rem; }

/* Fullscreen Nav Overlay */
.fullscreen-nav-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,32,44,0.98); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; }
.fullscreen-nav-overlay.active { opacity: 1; visibility: visible; }
.nav-close-btn { position: fixed; top: 2rem; right: 2rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--kpy-white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; font-size: 1.5rem; z-index: 2001; }
.nav-close-btn:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.fullscreen-nav-content { padding: 6rem 2rem 4rem; min-height: 100vh; display: flex; align-items: center; }
.nav-main-column { padding-right: 3rem; border-right: 1px solid rgba(255,255,255,0.1); }
.fullscreen-nav-main { padding: 2rem 0; }
.fullscreen-nav-list { list-style: none; margin: 0; padding: 0; }
.fullscreen-nav-list > li { margin-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fullscreen-nav-list > li:last-child { border-bottom: none; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.9); text-decoration: none; padding: 1.25rem 0; font-size: 1.5rem; font-weight: 500; font-family: var(--kpy-font-heading); transition: all 0.3s ease; letter-spacing: -0.01em; }
.mobile-nav-link:hover { color: var(--kpy-primary); padding-left: 1rem; }
.current-menu-item .mobile-nav-link { color: var(--kpy-primary); }
.mobile-dropdown-arrow { font-size: 1rem; transition: transform 0.3s ease; opacity: 0.6; }
.mobile-submenu { list-style: none; margin: 0 0 0.5rem 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(0,0,0,0.2); border-radius: 4px; }
.has-children.expanded .mobile-submenu { max-height: 1000px; padding: 1rem 0; }
.mobile-submenu .mobile-nav-link { padding: 0.875rem 1.5rem; font-size: 1.1rem; color: rgba(255,255,255,0.75); font-weight: 400; }
.mobile-submenu .mobile-nav-link:hover { color: var(--kpy-primary); padding-left: 2rem; }
.nav-info-column { padding-left: 3rem; }
.nav-contact-section { padding: 2rem 0; }
.nav-section-title { color: var(--kpy-white); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; opacity: 0.6; }
.nav-contact-info { margin-bottom: 3rem; }
.contact-item { margin-bottom: 2rem; }
.contact-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.contact-value { color: var(--kpy-white); font-size: 1.1rem; font-weight: 500; text-decoration: none; display: block; transition: color 0.3s ease; }
.contact-value:hover { color: var(--kpy-primary); }
.nav-social-section { margin-top: 3rem; }
.nav-social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.nav-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--kpy-white); border-radius: 50%; font-size: 1.1rem; text-decoration: none; transition: all 0.3s ease; }
.nav-social-icon:hover { background: var(--kpy-primary); border-color: var(--kpy-primary); color: var(--kpy-white); transform: translateY(-3px); }


/* ============================================================  NAV OVERLAY  ============================================================ */
.og-nav-overlay { background: transparent !important; position: relative; }
.og-nav-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; filter: blur(8px); transform: scale(1.1); z-index: 1; }
.og-nav-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 2; }
.og-nav-content { position: relative; z-index: 3; padding: 60px 50px; min-height: 100vh; color: #ffffff; display: flex; flex-direction: column; }
.og-nav-left { padding-right: 40px; flex: 1; display: flex; flex-direction: column; }
.og-nav-scrollable { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; max-height: calc(100vh - 160px); overflow-y: visible; overflow-x: hidden; padding-right: 20px; }
.og-nav-scrollable::-webkit-scrollbar { width: 6px; }
.og-nav-scrollable::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 3px; }
.og-nav-scrollable::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 3px; }
.og-nav-scrollable::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.5); }
.og-nav-col { margin-bottom: 15px; }
.og-nav-heading { font-family: var(--kpy-font-heading); font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--kpy-primary, #035c5c); margin-bottom: 15px; margin-top: 0; padding-bottom: 10px; border-bottom: 2px solid rgba(3,92,92,0.3); }
.og-nav-list { list-style: none; margin: 0 0 15px 0; padding: 0; }
.og-nav-list li { margin-bottom: 6px; }
.og-nav-list li a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.3px; transition: color 0.2s ease; display: block; padding: 3px 0; }
.og-nav-list li a:hover { color: var(--kpy-primary); padding-left: 5px; }
.og-nav-right { padding-left: 40px; position: relative; z-index: 5; flex: 0 0 auto; }
.og-nav-logo-section { position: sticky !important; top: 80px !important; background: #ffffff !important; padding: 30px 25px !important; border-radius: 20px 0 20px 20px !important; box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important; clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%) !important; z-index: 10 !important; display: block !important; visibility: visible !important; opacity: 1 !important; max-height: calc(100vh - 160px); overflow-y: auto; }
.og-nav-logo { margin-bottom: 20px; text-align: center; }
.og-logo-img { max-width: 80px; height: auto; display: block; margin: 0 auto; border-radius: 50%; }
.og-logo-placeholder { width: 80px; height: 80px; background: var(--kpy-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1.5rem; font-weight: 700; margin: 0 auto; font-family: var(--kpy-font-heading); letter-spacing: 0.05em; }
.og-nav-brand { margin-bottom: 20px; text-align: center; }
.og-brand-name { font-family: var(--kpy-font-heading); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #1a1a1a; margin: 0 0 10px 0; line-height: 1.2; }
.og-brand-divider { width: 60px; height: 1px; background: rgba(0,0,0,0.2); margin: 10px auto; }
.og-brand-subtitle { font-family: var(--kpy-font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--kpy-primary); text-align: center; margin: 0; position: relative; padding: 0 10px; }
.og-brand-subtitle::before, .og-brand-subtitle::after { content: ''; position: absolute; top: 50%; width: 20px; height: 1px; background: var(--kpy-primary); }
.og-brand-subtitle::before { left: 0; }
.og-brand-subtitle::after { right: 0; }
.og-nav-contact { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.og-contact-email { font-size: 0.9rem; color: #333333; margin: 0; line-height: 1.6; }
.og-contact-email a { color: #333333; text-decoration: none; transition: color 0.3s ease; }
.og-contact-email a:hover { color: var(--kpy-primary); }
.og-contact-separator { margin: 0 10px; color: rgba(0,0,0,0.3); }
.og-contact-dre { color: #666666; font-size: 0.85rem; }
.og-nav-offices { margin-top: 30px; }
.og-office-item { margin-bottom: 20px; }
.og-office-name { font-family: var(--kpy-font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--kpy-primary); margin: 0 0 6px 0; }
.og-office-address { font-size: 0.8rem; color: #333333; line-height: 1.6; margin: 0; }
.og-close-btn { background: rgba(255,255,255,0.1) !important; border: 1px solid rgba(255,255,255,0.2) !important; color: #ffffff !important; }
.og-close-btn:hover { background: rgba(255,255,255,0.2) !important; transform: rotate(90deg); }

/* ============================================================  HAMBURGER & SEARCH  ============================================================ */
.hamburger-toggle { background: var(--kpy-primary); border: none; width: 42px; height: 42px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; gap: 5px; padding: 10px; }
.hamburger-toggle:hover { background: var(--kpy-primary-dark); }
.hamburger-toggle span { width: 22px; height: 2px; background: var(--kpy-white); display: block; transition: all 0.3s ease; }
.header-search-bar { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease; background: var(--kpy-bg-secondary); border-top: 1px solid var(--kpy-light-grey); }
.header-search-bar.active { max-height: 120px; opacity: 1; padding: 1.5rem 0; }
.search-container { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.header-search-bar .form-control { border: 1px solid var(--kpy-light-grey); border-radius: 4px 0 0 4px; padding: 0.875rem 1.25rem; font-size: 0.95rem; background: var(--kpy-white); color: var(--kpy-base); }
.header-search-bar .form-control:focus { border-color: var(--kpy-primary); box-shadow: 0 0 0 0.2rem rgba(3,92,92,0.15); outline: none; }
.header-search-bar .btn-search { border-radius: 0 4px 4px 0; padding: 0.875rem 1.5rem; border: 1px solid var(--kpy-primary); background: var(--kpy-primary); color: var(--kpy-white); transition: all 0.3s ease; }
.header-search-bar .btn-search:hover { background: var(--kpy-primary-dark); border-color: var(--kpy-primary-dark); }
#header-search-results { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; background: var(--kpy-white); border: 1px solid var(--kpy-light-grey); border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); margin-top: 0.5rem; max-height: 400px; overflow-y: auto; }
#header-search-results li a { display: block; color: var(--kpy-base); text-decoration: none; font-size: 0.9rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--kpy-light-grey); transition: all 0.3s ease; }
#header-search-results li:last-child a { border-bottom: none; }
#header-search-results li a:hover { background: rgba(3,92,92,0.05); color: var(--kpy-primary); padding-left: 1.5rem; }

/* ============================================================  FULLSCREEN NAV OVERLAY  ============================================================ */
.fullscreen-nav-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,32,44,0.98); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; }
.fullscreen-nav-overlay.active { opacity: 1; visibility: visible; }
.nav-close-btn { position: fixed; top: 2rem; right: 2rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--kpy-white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; font-size: 1.5rem; z-index: 2001; }
.nav-close-btn:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.fullscreen-nav-content { padding: 6rem 2rem 4rem; min-height: 100vh; display: flex; align-items: center; }
.nav-main-column { padding-right: 3rem; border-right: 1px solid rgba(255,255,255,0.1); }
.fullscreen-nav-main { padding: 2rem 0; }
.fullscreen-nav-list { list-style: none; margin: 0; padding: 0; }
.fullscreen-nav-list > li { margin-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fullscreen-nav-list > li:last-child { border-bottom: none; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.9); text-decoration: none; padding: 1.25rem 0; font-size: 1.5rem; font-weight: 500; font-family: var(--kpy-font-heading); transition: all 0.3s ease; letter-spacing: -0.01em; }
.mobile-nav-link:hover { color: var(--kpy-primary); padding-left: 1rem; }
.current-menu-item .mobile-nav-link { color: var(--kpy-primary); }
.mobile-dropdown-arrow { font-size: 1rem; transition: transform 0.3s ease; opacity: 0.6; }
.mobile-submenu { list-style: none; margin: 0 0 0 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(0,0,0,0.2); border-radius: 4px; margin-top: 0.5rem; }
.has-children.expanded .mobile-submenu { max-height: 1000px; padding: 1rem 0; }
.mobile-submenu .mobile-nav-link { padding: 0.875rem 1.5rem; font-size: 1.1rem; color: rgba(255,255,255,0.75); font-weight: 400; }
.mobile-submenu .mobile-nav-link:hover { color: var(--kpy-primary); padding-left: 2rem; }
.nav-info-column { padding-left: 3rem; }
.nav-contact-section { padding: 2rem 0; }
.nav-section-title { color: var(--kpy-white); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; opacity: 0.6; }
.nav-contact-info { margin-bottom: 3rem; }
.contact-item { margin-bottom: 2rem; }
.contact-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.contact-value { color: var(--kpy-white); font-size: 1.1rem; font-weight: 500; text-decoration: none; display: block; transition: color 0.3s ease; }
.contact-value:hover { color: var(--kpy-primary); }
.nav-social-section { margin-top: 3rem; }
.nav-social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.nav-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--kpy-white); border-radius: 50%; font-size: 1.1rem; text-decoration: none; transition: all 0.3s ease; }
.nav-social-icon:hover { background: var(--kpy-primary); border-color: var(--kpy-primary); color: var(--kpy-white); transform: translateY(-3px); }

/* ============================================================  RESPONSIVE – NAV OVERLAY  ============================================================ */
@media (max-width: 1200px) {
.header-inner { padding: 0 1.5rem; }
.header-menu { gap: 0.25rem; }
.header-menu .nav-link { padding: 0.75rem 1rem; font-size: 0.85rem; }
.og-nav-content { padding: 60px 40px; }
.og-nav-left { padding-right: 30px; }
.og-nav-right { padding-left: 30px; }
}
@media (max-width: 991.98px) {
.header-nav-section { display: none !important; }
.header-inner { padding: 0 1rem; }
.header-actions { gap: 0.75rem; }
.search-toggle, .hamburger-toggle { width: 38px; height: 38px; }
.nav-main-column { border-right: none; padding-right: 0; margin-bottom: 3rem; }
.nav-info-column { padding-left: 0; }
.og-nav-content { padding: 60px 30px; }
.og-nav-left { padding-right: 0; margin-bottom: 40px; }
.og-nav-right { padding-left: 0; padding-top: 40px; }
.og-nav-logo-section { position: relative; top: 0; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); padding: 30px 25px; }
}
@media (max-width: 767.98px) {
.main-header { padding: 1rem 0; }
.main-header.scrolled { padding: 0.75rem 0; }
.header-logo .logo-img { height: 45px; }
.main-header.scrolled .header-logo .logo-img { height: 40px; }
.header-inner { padding: 0 1rem; }
.search-container { padding: 0 1rem; }
.fullscreen-nav-content { padding: 5rem 1rem 3rem; }
.mobile-nav-link { font-size: 1.25rem; padding: 1rem 0; }
.mobile-submenu .mobile-nav-link { font-size: 1rem; }
.nav-close-btn { top: 1.5rem; right: 1.5rem; width: 45px; height: 45px; }
.contact-value { font-size: 1rem; }
.og-nav-content { padding: 50px 20px; }
.og-nav-heading { font-size: 0.85rem; margin-bottom: 15px; }
.og-nav-list li a { font-size: 0.85rem; }
.og-brand-name { font-size: 1.5rem; }
.og-office-item { margin-bottom: 25px; }
}
@media (max-width: 480px) {
.kpy-menu-lang-toggle { padding: 0.5rem 0.75rem; }
.kpy-menu-lang-text { display: none; }
.search-toggle, .hamburger-toggle { width: 36px; height: 36px; }
.hamburger-toggle span { width: 18px; }
.mobile-nav-link { font-size: 1.1rem; }
.nav-section-title { font-size: 0.8rem; }
.search-toggle:hover { border-color: var(--kpy-primary); color: var(--kpy-primary); }
}

/* ============================================================  SERVICE DETAIL  ============================================================ */
.service-hero-section { padding: 5rem 0; background: var(--ls-bg-secondary); }
.service-hero-title { font-family: var(--ls-font-heading); font-weight: 700; color: var(--ls-base); font-size: 2.5rem; margin-bottom: 1rem; }
.service-hero-subtitle { font-size: 1.25rem; color: var(--ls-primary); margin-bottom: 1.5rem; }
.service-hero-description { font-size: 1.1rem; margin-bottom: 2rem; }
.service-hero-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.service-stat { text-align: center; }
.service-stat-number { display: block; font-size: 2rem; font-weight: 700; color: var(--ls-primary); }
.service-stat-label { font-size: 0.9rem; color: var(--ls-grey); }
.service-hero-actions { margin-top: 2rem; }
.service-services-section { padding: 5rem 0; }
.service-section-title { font-family: var(--ls-font-heading); font-weight: 600; color: var(--ls-base); font-size: 2rem; margin-bottom: 1rem; }
.service-section-subtitle { font-size: 1.1rem; color: var(--ls-grey); margin-bottom: 3rem; }
.service-icon { width: 90px; height: 90px; }
.service-process-section { padding: 5rem 0; background: var(--ls-bg-secondary); }
.service-step-number { width: 50px; height: 50px; border-radius: 50%; background: var(--ls-primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 1rem; }
.service-image-placeholder { width: 100%; height: 400px; background: var(--ls-light-grey); display: flex; align-items: center; justify-content: center; }
.bg-water-light { background-color: rgba(0,119,190,0.1); }
@media (max-width: 768px) {
.service-hero-title { font-size: 2rem; }
.service-section-title { font-size: 1.75rem; }
.service-hero-stats { flex-direction: column; gap: 1rem; }
}

/* ============================================================  FOOTER  ============================================================ */
.ls-footer { position: relative; background: var(--ls-bg-dark); color: var(--ls-light-grey); margin-top: auto; }
.footer-top-wave { height: 20px; background: var(--ls-primary); border-radius: 0 0 50% 50% / 0 0 100% 100%; transform: scaleX(1.5); }
.ls-logo-icon { display: inline-flex; align-items: center; padding: 12px; background: var(--ls-bg-secondary); border-radius: 12px; }
.ls-icon-combined { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.ls-logo-text { font-family: var(--ls-font-heading); font-weight: 700; color: var(--ls-white); margin-left: 10px; }
.ls-specializations { display: flex; flex-wrap: wrap; gap: 8px; }
.ls-specialization-badge { padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; color: white; }
.ls-footer h5 { color: var(--ls-white); margin-bottom: 20px; font-weight: 600; border-left: 4px solid var(--ls-primary); padding-left: 12px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--ls-light-grey); text-decoration: none; transition: color var(--ls-transition); display: flex; align-items: center; }
.footer-links a:hover { color: var(--ls-primary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 15px; display: flex; align-items: flex-start; }
.footer-contact i { color: var(--ls-primary); margin-right: 10px; margin-top: 4px; }
.social-links { display: flex; gap: 12px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--ls-white); transition: all var(--ls-transition); }
.social-link:hover { transform: translateY(-3px); }
.social-link.facebook:hover { background: #3b5998; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.linkedin:hover { background: #0077b5; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube:hover { background: #ff0000; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 20px 0; text-align: center; }
.footer-bottom a { color: var(--ls-light-grey); text-decoration: none; transition: color var(--ls-transition); }
.footer-bottom a:hover { color: var(--ls-primary); }
.footer-logo-curve-position { position: relative; z-index: 2; margin-top: -75px; margin-bottom: 30px; text-align: center; }
.footer-logo-wrapper { display: inline-block; padding: 10px 20px; }
@media (max-width: 768px) {
.ls-footer { text-align: center; }
.footer-contact li { justify-content: center; }
.ls-specializations { justify-content: center; }
.footer-links a { justify-content: center; }
}

/* ============================================================  MAIN SLIDER  ============================================================ */
.main-slider { position: relative; width: 100%; overflow: hidden; }
.main-slider .swiper-slide { position: relative; height: 100vh; min-height: 800px; }
.main-slider .swiper-slide:not(.swiper-slide-active) .kpy-slider-content { opacity: 0; visibility: hidden; }
.main-slider .swiper-slide-active .kpy-slider-content { opacity: 1; visibility: visible; }
.main-slider .container { position: relative; padding-top: 80px; z-index: 3; height: 100%; display: flex; align-items: flex-start; }
.image-layer, .slider-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(3,92,92,0.50) 0%, rgba(3,92,92,0.40) 20%, rgba(3,92,92,0.30) 40%, rgba(3,92,92,0.20) 60%, rgba(3,92,92,0.10) 80%, transparent 100%); z-index: 2; pointer-events: none; }
.main-slider .swiper-slide-active .image-layer { transform: scale(1.15); }
.main-slider-content { position: relative; align-items: center; text-align: center; width: 100%; margin-top: 120px; }
.main-slider-content__inner { width: 80%; margin: auto; }
.big-title h2 { color: #ffffff; font-size: 80px; line-height: 1.0; margin: 0 0 30px; text-shadow: 2px 2px 6px rgba(0,0,0,0.7); text-align: center; font-weight: 700; }
.text p { color: #ffffff; font-size: 1.4rem; line-height: 1.2; margin-bottom: 60px; text-shadow: 1px 1px 4px rgba(0,0,0,0.8); text-align: center; margin-left: auto; margin-right: auto; font-weight: 500; }
.bottom-buttons-container { position: absolute; bottom: 120px; left: 0; width: 100%; z-index: 4; display: flex; justify-content: center; }
.hero-buttons { display: flex; gap: 15px; }
.buttons { padding: 12px 25px; border-radius: 4px; font-weight: 600; text-decoration: none; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: all 0.3s ease; }
.buttons-learn-more { background-color: #ffffff; color: #e30613; border: 2px solid #ffffff; }
.buttons-learn-more:hover { background-color: transparent; color: #ffffff; }
.buttons-get-quote { background-color: #e30613; color: #ffffff; border: 2px solid #e30613; }
.buttons-get-quote:hover { background-color: transparent; color: #e30613; }
.curved-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; z-index: 3; }

/* ============================================================  RESPONSIVE – SLIDER  ============================================================ */
@media (max-width: 768px) {
.main-slider .swiper-slide { height: 85vh; min-height: 600px; }
.kpy-slide { min-height: 600px; height: 85vh; }
.main-slider .container { padding-top: 120px; }
.main-slider-content__inner { width: 100%; text-align: center; }
.main-slider .kpy-slide-title h2 { font-size: 2.5rem; }
.main-slider .kpy-slide-btns { flex-direction: row; gap: 0.75rem; }
.main-slider .kpy-slide-btn { padding: 0.7rem 1.35rem; font-size: 0.85rem; }
.big-title h2 { font-size: 2.5rem; }
.bottom-buttons-container { bottom: 100px; }
.hero-buttons { flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hero-buttons .buttons { flex: 1 1 auto; text-align: center; min-width: 140px; }
.curved-bottom { height: 100px; }
.kpy-slider-left-social { left: 20px; gap: 15px; }
.kpy-social-icon { width: 35px; height: 35px; font-size: 1rem; }
.kpy-slider-right-nav { right: 20px; gap: 15px; }
.kpy-nav-link { font-size: 0.9rem; letter-spacing: 1px; }
.kpy-nav-link-all { font-size: 0.8rem; }
}
@media (max-width: 576px) {
.main-slider .swiper-slide { height: 80vh; min-height: 550px; }
.kpy-slide { min-height: 550px; height: 80vh; }
.main-slider .container { padding-top: 100px; }
.big-title h2 { font-size: 1.8rem; line-height: 1.2; }
.main-slider .kpy-slide-title h2 { font-size: 1.75rem; }
.main-slider .kpy-slide-text, .main-slider .kpy-slide-text p { font-size: 1rem; }
.main-slider .kpy-slide-btns { flex-direction: column; align-items: center; margin-top: 1.25rem; }
.main-slider .kpy-slide-btn { width: 100%; max-width: 260px; text-align: center; padding: 0.75rem 1.25rem; font-size: 0.85rem; }
.text p { font-size: 0.9rem; }
.bottom-buttons-container { bottom: 80px; }
.curved-bottom { height: 80px; }
.hero-buttons { flex-direction: column; align-items: center; }
.hero-buttons .buttons { width: 100%; max-width: 250px; }
.kpy-slider-left-social { left: 15px; gap: 12px; top: auto; bottom: 180px; transform: none; }
.kpy-social-icon { width: 32px; height: 32px; font-size: 0.9rem; }
.kpy-slider-right-nav { right: 15px; gap: 12px; top: auto; bottom: 120px; transform: none; }
.kpy-nav-link { font-size: 0.85rem; letter-spacing: 0.5px; padding: 8px 0; }
.kpy-nav-link-all { font-size: 0.75rem; margin-top: 8px; padding-top: 15px; }
}

   /* ============================================================  INNER PAGE HERO  ============================================================ */
.hero-section { position: relative; height: 400px; overflow: hidden; }
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; animation: zoomInOut 15s ease-in-out infinite; z-index: 1; }
.hero-content { text-align: center; color: white; z-index: 3; }
.hero-title { font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.hero-breadcrumb { font-size: 1.1rem; opacity: 0.9; }
.hero-breadcrumb a { color: #fff; text-decoration: none; }
.hero-breadcrumb a:hover { text-decoration: underline; }
.spiritual-element { position: absolute; font-size: 2rem; opacity: 0.7; animation: float 6s ease-in-out infinite; z-index: 2; }
.curved-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; z-index: 3; }
@keyframes zoomInOut { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@media (max-width: 768px) {
.hero-section { height: 300px; }
.hero-title { font-size: 2rem; }
.spiritual-element { font-size: 1.5rem; }
}

/* ============================================================  MAGAZINE EDITORIAL LAYOUT  ============================================================ */
.magazine-layout { background: #f8f9fa; padding: 4rem 0; }
.mag-content-wrapper { display: grid; grid-template-columns: 1fr 350px; gap: 3rem; align-items: start; }
.mag-featured-post { margin-bottom: 3rem; border-bottom: 3px solid var(--kpy-primary); padding-bottom: 3rem; }
.mag-featured-link { text-decoration: none; color: inherit; display: block; }
.mag-featured-image { position: relative; width: 100%; height: 450px; border-radius: 12px; overflow: hidden; margin-bottom: 2rem; background: #f5f5f5; }
.mag-feat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mag-featured-post:hover .mag-feat-img { transform: scale(1.05); }
.mag-featured-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--kpy-primary); color: #fff; padding: 0.75rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 15px rgba(3,92,92,0.4); z-index: 2; }
.mag-featured-content { padding: 0 1rem; }
.mag-featured-meta { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; color: var(--kpy-grey); font-size: 0.95rem; }
.mag-featured-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.mag-featured-meta i { color: var(--kpy-primary); }
.mag-featured-title { font-family: var(--kpy-font-heading); font-size: 2.5rem; font-weight: 700; color: var(--kpy-base); line-height: 1.2; margin: 0 0 1.5rem; transition: color 0.3s ease; }
.mag-featured-post:hover .mag-featured-title { color: var(--kpy-primary); }
.mag-featured-excerpt { color: var(--kpy-grey); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }
.mag-read-more-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--kpy-primary); color: #fff; padding: 1rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; }
.mag-featured-post:hover .mag-read-more-btn { background: var(--kpy-primary-dark); gap: 1rem; }
.mag-section-header { margin: 3rem 0 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--kpy-light-grey); }
.mag-section-title { font-family: var(--kpy-font-heading); font-size: 1.8rem; font-weight: 700; color: var(--kpy-base); margin: 0; display: inline-flex; align-items: center; gap: 0.75rem; }
.mag-section-title i { color: var(--kpy-primary); }
.mag-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.mag-grid-post { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: all 0.3s ease; border: 1px solid #e8e8e8; }
.mag-grid-post:hover { box-shadow: 0 8px 25px rgba(3,92,92,0.15); transform: translateY(-3px); }
.mag-grid-link { text-decoration: none; color: inherit; display: block; }
.mag-grid-image { position: relative; width: 100%; height: 220px; overflow: hidden; background: #f5f5f5; }
.mag-grid-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mag-grid-post:hover .mag-grid-img { transform: scale(1.08); }
.mag-grid-badge { position: absolute; top: 1rem; left: 1rem; background: var(--kpy-primary); color: #fff; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; box-shadow: 0 3px 10px rgba(3,92,92,0.3); }
.mag-grid-content { padding: 1.5rem; }
.mag-grid-meta { color: var(--kpy-grey); font-size: 0.85rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.mag-grid-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.mag-grid-meta i { color: var(--kpy-primary); }
.mag-grid-title { font-family: var(--kpy-font-heading); font-size: 1.25rem; font-weight: 700; color: var(--kpy-base); line-height: 1.4; margin: 0 0 0.75rem; transition: color 0.3s ease; }
.mag-grid-post:hover .mag-grid-title { color: var(--kpy-primary); }
.mag-grid-excerpt { color: var(--kpy-grey); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.ls-related-thumbnail { width: 100%; height: 120px; margin: 0 0 var(--ls-space-sm) 0; }



/* ============================================================  NEWS & BLOG LISTING  ============================================================ */
.mag-all-news-layout { padding: 3rem 0 4rem; background: #fff; }
.mag-all-news-layout .mag-all-news-cards { margin-bottom: 3rem; }
.mag-all-news-layout .mag-all-news-card { display: block; position: relative; min-height: 220px; padding: 2rem 1.5rem; border-radius: 40px 0 40px 0; overflow: hidden; text-decoration: none; border: none; box-shadow: none; }
.mag-all-news-layout .mag-all-news-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.mag-all-news-layout .mag-all-news-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.mag-all-news-layout .mag-all-news-card-label { position: relative; z-index: 1; display: block; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.12em; color: #fff; margin-bottom: 0.35rem; }
.mag-all-news-layout .mag-all-news-card-desc { position: relative; z-index: 1; display: block; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.mag-all-news-layout .mag-all-news-posts { display: flex; flex-direction: column; gap: 2.5rem; }
.mag-all-news-layout .mag-all-news-post { display: flex; gap: 1.5rem; align-items: flex-start; border: none; box-shadow: none; padding: 0; }
.mag-all-news-layout .mag-all-news-meta-strip { flex-shrink: 0; width: 100px; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.75rem; color: var(--kpy-grey); padding-top: 0.25rem; }
.mag-all-news-layout .mag-all-news-meta-strip .mag-all-news-cats { margin-bottom: 0.25rem; }
.mag-all-news-layout .mag-all-news-meta-strip .mag-all-news-cats a { color: var(--kpy-primary); text-decoration: none; font-weight: 600; }
.mag-all-news-layout .mag-all-news-meta-strip .mag-all-news-cats a:hover { text-decoration: underline; }
.mag-all-news-layout .mag-all-news-meta-item { display: flex; align-items: center; gap: 0.35rem; }
.mag-all-news-layout .mag-all-news-meta-item i { color: var(--kpy-primary); font-size: 0.85rem; }
.mag-all-news-layout .mag-all-news-post-card { flex: 1; min-width: 0; display: block; text-decoration: none; color: inherit; border: none; box-shadow: none; border-radius: 40px 0 40px 0; overflow: hidden; background: #f8fafb; transition: background 0.2s ease; }
.mag-all-news-layout .mag-all-news-post-card:hover { background: var(--kpy-bg-secondary, #e6f2f2); }
.mag-all-news-layout .mag-all-news-post-image { width: 100%; height: 280px; overflow: hidden; }
.mag-all-news-layout .mag-all-news-post-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mag-all-news-layout .mag-all-news-post-body { padding: 1.5rem 1.75rem; }
.mag-all-news-layout .mag-all-news-post-title { font-size: 1.4rem; font-weight: 700; color: var(--kpy-base); margin: 0 0 0.5rem; line-height: 1.3; }
.mag-all-news-layout .mag-all-news-post-card:hover .mag-all-news-post-title { color: var(--kpy-primary); }
.mag-all-news-layout .mag-all-news-post-excerpt { font-size: 0.95rem; line-height: 1.6; color: var(--kpy-grey); margin: 0 0 1rem; }
.mag-all-news-layout .mag-all-news-post-more { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--kpy-primary); color: #fff; font-size: 0.8rem; font-weight: 700; padding: 0.5rem 1.1rem; border-radius: 40px 0 40px 0; transition: background 0.2s ease; }
.mag-all-news-layout .mag-all-news-post-card:hover .mag-all-news-post-more { background: var(--kpy-primary-dark); }
.mag-all-news-layout .mag-all-news-content-wrapper { margin-top: 0; }
.mag-all-news-layout .mag-all-news-sidebar { background: var(--kpy-bg-secondary, #e6f2f2); padding: 1.75rem; border-radius: 40px 0 40px 0; border: none; box-shadow: none; }
.mag-all-news-layout .mag-all-news-widget { margin-bottom: 2rem; }
.mag-all-news-layout .mag-all-news-widget:last-child { margin-bottom: 0; }
.mag-all-news-layout .mag-all-news-search-form { display: flex; width: 100%; border: none; box-shadow: none; border-radius: 40px 0 40px 0; overflow: hidden; }
.mag-all-news-layout .mag-all-news-search-input { flex: 1; padding: 0.65rem 1rem; font-size: 0.9rem; border: none; background: #fff; }
.mag-all-news-layout .mag-all-news-search-btn { padding: 0.65rem 1rem; background: var(--kpy-primary); color: #fff; border: none; transition: background 0.2s ease; }
.mag-all-news-layout .mag-all-news-search-btn:hover { background: var(--kpy-primary-dark); color: #fff; }
.mag-all-news-layout .mag-widget-author { text-align: center; }
.mag-all-news-layout .mag-all-news-author-avatar { margin-bottom: 0.75rem; }
.mag-all-news-layout .mag-all-news-author-img { border-radius: 50%; width: 100px; height: 100px; object-fit: cover; }
.mag-all-news-layout .mag-all-news-author-name { font-size: 1.1rem; font-weight: 700; color: var(--kpy-base); margin: 0 0 0.2rem; }
.mag-all-news-layout .mag-all-news-author-role { font-size: 0.8rem; color: var(--kpy-grey); margin: 0 0 0.5rem; }
.mag-all-news-layout .mag-all-news-author-social { display: flex; justify-content: center; gap: 0.5rem; }
.mag-all-news-layout .mag-all-news-author-social a { color: var(--kpy-primary); font-size: 1.1rem; }
.mag-all-news-layout .mag-all-news-widget-title { background: var(--kpy-primary); color: #fff; font-size: 0.85rem; font-weight: 700; padding: 0.6rem 1rem; margin: 0 0 1rem; border-radius: 40px 0 40px 0; border: none; box-shadow: none; }
.mag-all-news-layout .mag-all-news-popular-list { list-style: none; padding: 0; margin: 0; }
.mag-all-news-layout .mag-all-news-popular-item { display: flex; gap: 0.75rem; align-items: center; padding: 0.5rem 0; text-decoration: none; color: inherit; border: none; }
.mag-all-news-layout .mag-all-news-popular-thumb { width: 60px; height: 60px; flex-shrink: 0; object-fit: cover; border-radius: 40px 0 40px 0; }
.mag-all-news-layout .mag-all-news-popular-thumb-placeholder { display: flex; align-items: center; justify-content: center; background: var(--kpy-primary); color: #fff; font-size: 1.25rem; }
.mag-all-news-layout .mag-all-news-popular-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.mag-all-news-layout .mag-all-news-popular-title { font-size: 0.9rem; font-weight: 600; color: var(--kpy-base); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mag-all-news-layout .mag-all-news-popular-time { font-size: 0.75rem; color: var(--kpy-grey); }
.mag-all-news-layout .mag-all-news-categories-list { list-style: none; padding: 0; margin: 0; }
.mag-all-news-layout .mag-all-news-categories-list li { margin-bottom: 0.4rem; }
.mag-all-news-layout .mag-all-news-categories-list a { display: flex; justify-content: space-between; padding: 0.4rem 0; text-decoration: none; color: var(--kpy-base); font-size: 0.9rem; }
.mag-all-news-layout .mag-all-news-categories-list a:hover { color: var(--kpy-primary); }
.mag-all-news-layout .mag-all-news-categories-list a span { color: var(--kpy-grey); }
.mag-all-news-layout .mag-all-news-pagination { margin-top: 2.5rem; }
.mag-all-news-layout .mag-all-news-pagination ul { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; justify-content: center; }
.mag-all-news-layout .mag-all-news-pagination a, .mag-all-news-layout .mag-all-news-pagination span { display: inline-block; padding: 0.5rem 1rem; background: var(--kpy-bg-secondary, #e6f2f2); color: var(--kpy-base); text-decoration: none; border-radius: 40px 0 40px 0; font-size: 0.9rem; font-weight: 600; }
.mag-all-news-layout .mag-all-news-pagination a:hover { background: var(--kpy-primary); color: #fff; }
.mag-all-news-layout .mag-all-news-pagination .current { background: var(--kpy-primary); color: #fff; }
.mag-all-news-layout .mag-no-posts { text-align: center; padding: 4rem 2rem; background: #fff; border-radius: 8px; color: #666; }
.mag-all-news-layout .mag-no-posts i { font-size: 3rem; color: var(--kpy-primary); display: block; margin-bottom: 1rem; }

/* ============================================================  RESPONSIVE – LISTING  ============================================================ */
@media (max-width: 991px) {
.mag-all-news-layout .mag-all-news-post { flex-direction: column; gap: 0.75rem; }
.mag-all-news-layout .mag-all-news-meta-strip { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; }
}
@media (max-width: 576px) {
.mag-all-news-layout .mag-all-news-post-image { height: 220px; }
.mag-all-news-layout .mag-all-news-post-body { padding: 1.25rem; }
}

/* ============================================================  SINGLE POST  ============================================================ */
.mag-single-main .mag-article-section { background: #fff; padding: 3rem 0 4rem; }
.mag-single-main .mag-article-hero-img { width: 100%; max-height: 360px; margin: 0 auto 1rem; overflow: hidden; border-radius: 40px 0 40px 0; }
.mag-single-main .mag-article-hero-img-el { width: 100%; height: 100%; display: block; object-fit: cover; }
.mag-single-main .mag-article-title { font-size: 2rem; font-weight: 700; color: var(--kpy-base); margin: 0 0 1.5rem; line-height: 1.3; }
.mag-single-main .mag-article-layout { display: flex; gap: 2rem; align-items: flex-start; margin-top: 0; }
.mag-single-main .mag-article-meta-strip { flex-shrink: 0; width: 120px; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.8rem; color: var(--kpy-grey); }
.mag-single-main .mag-article-meta-strip .mag-article-cats { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.25rem; }
.mag-single-main .mag-article-meta-strip .mag-article-cats a { color: var(--kpy-primary); text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.mag-single-main .mag-article-meta-strip .mag-article-cats a:hover { text-decoration: underline; }
.mag-single-main .mag-article-meta-item { display: flex; align-items: center; gap: 0.35rem; }
.mag-single-main .mag-article-meta-item i { color: var(--kpy-primary); font-size: 0.9rem; }
.mag-single-main .mag-social-share-inline { margin-top: 0.5rem; }
.mag-single-main .mag-social-share-inline .mag-share-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mag-single-main .mag-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 40px 0 40px 0; background: var(--kpy-bg-secondary); color: var(--kpy-primary); border: none; transition: background 0.2s ease, color 0.2s ease; }
.mag-single-main .mag-share-btn:hover { background: var(--kpy-primary); color: #fff; }
.mag-single-main .mag-article-content { flex: 1; min-width: 0; }
.mag-single-main .mag-article-body { font-size: 1rem; line-height: 1.75; color: var(--kpy-dark); }
.mag-single-main .mag-article-body p { margin-bottom: 1rem; }
.mag-single-main .mag-article-body img { max-width: 100%; height: auto; border-radius: 40px 0 40px 0; }
.mag-single-main .mag-project-info { margin-top: 1.5rem; padding: 1.25rem; background: var(--kpy-bg-secondary); border-radius: 40px 0 40px 0; border: none; box-shadow: none; }
.mag-single-main .mag-project-info-title { font-size: 1rem; font-weight: 700; color: var(--kpy-base); margin: 0 0 1rem; }
.mag-single-main .mag-project-details { display: flex; flex-direction: column; gap: 0.75rem; }
.mag-single-main .mag-project-detail { display: flex; gap: 0.75rem; align-items: flex-start; }
.mag-single-main .mag-project-detail i { color: var(--kpy-primary); margin-top: 0.2rem; }
.mag-single-main .mag-project-detail div { display: flex; flex-direction: column; gap: 0.15rem; }
.mag-single-main .mag-article-tags { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: 0.9rem; }
.mag-single-main .mag-article-tags i { color: var(--kpy-primary); }
.mag-single-main .mag-tags-list a { display: inline-block; margin-right: 0.5rem; color: var(--kpy-primary); text-decoration: none; }
.mag-single-main .mag-tags-list a:hover { text-decoration: underline; }
.mag-single-main .mag-article-sidebar { background: var(--kpy-bg-secondary); padding: 1.75rem; border-radius: 40px 0 40px 0; border: none; box-shadow: none; }
.mag-single-main .mag-sidebar-widget { margin-bottom: 2rem; }
.mag-single-main .mag-sidebar-widget:last-child { margin-bottom: 0; }
.mag-single-main .mag-widget-title { background: var(--kpy-primary); color: #fff; font-size: 0.85rem; font-weight: 700; padding: 0.6rem 1rem; margin: 0 0 1rem; border-radius: 40px 0 40px 0; border: none; box-shadow: none; }
.mag-single-main .mag-single-search-form { display: flex; width: 100%; border: none; border-radius: 40px 0 40px 0; overflow: hidden; background: #fff; }
.mag-single-main .mag-single-search-input { flex: 1; padding: 0.65rem 1rem; font-size: 0.9rem; border: 1px solid var(--kpy-light-grey); }
.mag-single-main .mag-single-search-btn { padding: 0.65rem 1rem; background: var(--kpy-primary); color: #fff; border: none; transition: background 0.2s ease; }
.mag-single-main .mag-single-search-btn:hover { background: var(--kpy-primary-dark); color: #fff; }
.mag-single-main .mag-widget-author { text-align: center; }
.mag-single-main .mag-author-avatar { margin-bottom: 0.75rem; }
.mag-single-main .mag-author-img { border-radius: 50%; width: 100px; height: 100px; object-fit: cover; }
.mag-single-main .mag-author-name { font-size: 1.1rem; font-weight: 700; color: var(--kpy-base); margin: 0 0 0.2rem; }
.mag-single-main .mag-author-role { font-size: 0.8rem; color: var(--kpy-grey); margin: 0 0 0.5rem; line-height: 1.5; }
.mag-single-main .mag-author-social { display: flex; justify-content: center; gap: 0.5rem; }
.mag-single-main .mag-author-social a { color: var(--kpy-primary); font-size: 1.1rem; }
.mag-single-main .mag-single-popular-list { list-style: none; padding: 0; margin: 0; }
.mag-single-main .mag-single-popular-item { display: flex; gap: 0.75rem; align-items: center; padding: 0.5rem 0; text-decoration: none; color: inherit; border: none; }
.mag-single-main .mag-single-popular-thumb { width: 60px; height: 60px; flex-shrink: 0; object-fit: cover; border-radius: 40px 0 40px 0; }
.mag-single-main .mag-single-popular-thumb-placeholder { display: flex; align-items: center; justify-content: center; background: var(--kpy-primary); color: #fff; font-size: 1.25rem; }
.mag-single-main .mag-single-popular-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.mag-single-main .mag-single-popular-title { font-size: 0.9rem; font-weight: 600; color: var(--kpy-base); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mag-single-main .mag-single-popular-time { font-size: 0.75rem; color: var(--kpy-grey); }
.mag-single-main .mag-single-categories-list { list-style: none; padding: 0; margin: 0; }
.mag-single-main .mag-single-categories-list li { margin-bottom: 0.4rem; }
.mag-single-main .mag-single-categories-list a { display: flex; justify-content: space-between; padding: 0.4rem 0; text-decoration: none; color: var(--kpy-base); font-size: 0.9rem; }
.mag-single-main .mag-single-categories-list a:hover { color: var(--kpy-primary); }
.mag-single-main .mag-single-categories-list a span { color: var(--kpy-grey); }
.mag-single-main .mag-newsletter-intro { font-size: 0.85rem; color: var(--kpy-grey); margin: 0 0 1rem; line-height: 1.5; }
.mag-single-main .mag-newsletter-form { display: flex; flex-direction: column; gap: 0.5rem; }
.mag-single-main .mag-newsletter-input { padding: 0.6rem 1rem; font-size: 0.9rem; border: 1px solid var(--kpy-light-grey); border-radius: 40px 0 40px 0; }
.mag-single-main .mag-newsletter-btn { padding: 0.6rem 1rem; background: var(--kpy-primary); color: #fff; font-weight: 600; border: none; border-radius: 40px 0 40px 0; cursor: pointer; transition: background 0.2s ease; }
.mag-single-main .mag-newsletter-btn:hover { background: var(--kpy-primary-dark); color: #fff; }

/* ============================================================  RESPONSIVE – SINGLE  ============================================================ */
@media (max-width: 991px) {
.mag-single-main .mag-article-layout { flex-direction: column; gap: 1rem; }
.mag-single-main .mag-article-meta-strip { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; }
.mag-single-main .mag-article-meta-strip .mag-article-cats { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================  SLIDER  ============================================================ */
.mag-slider-section { padding: 4rem 0; background: #fff; }
.mag-slider-section .mag-slider-header .mag-slider-title { color: #1a1a1a; font-size: 2rem; }
.mag-slider-section .mag-slider-subtitle { color: #666; }
.mag-slider-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.mag-slider-card .mag-slider-img-wrap { position: relative; }
.mag-slider-card .mag-slider-content { padding: 2.25rem 1.75rem 1.75rem; }
.mag-slider-card .mag-slider-content .mag-slider-title { color: #1a1a1a; }
.mag-slider-card .mag-slider-content .mag-slider-title:hover { color: #7cb342; }
.mag-slider-date, .mag-slider-excerpt { color: #555; }

/* =========================================  ALPHA FUND CARDS  ========================================= */
.alpha-features-section .row { margin-top: 2rem; }
.alpha-fund-card { background: #fff; border-radius: 12px; padding: 2rem 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; border: 1px solid rgba(3,92,92,0.1); }
.alpha-fund-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(3,92,92,0.15); border-color: var(--kpy-primary, #035c5c); }
.alpha-fund-card .feature-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--kpy-primary, #035c5c) 0%, rgba(3,92,92,0.8) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all 0.3s ease; }
.alpha-fund-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.alpha-fund-card .feature-icon i { font-size: 1.6rem; color: #fff; }
.alpha-fund-card h3 { font-size: 1.15rem; font-weight: 700; color: #222; margin-bottom: 0.85rem; line-height: 1.3; min-height: 2.6rem; }
.alpha-fund-card p { font-size: 0.92rem; color: #666; line-height: 1.7; margin-bottom: 1rem; flex-grow: 1; }
.fund-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.fund-tag { display: inline-block; padding: 0.35rem 0.85rem; background: rgba(3,92,92,0.08); color: var(--kpy-primary, #035c5c); border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-section-cta i { transition: transform 0.3s ease; }
.btn-section-cta:hover i { transform: translateX(5px); }
.alpha-advertisement-section .alpha-ad-wrapper { transition: transform 0.3s ease; }
.alpha-advertisement-section .alpha-ad-wrapper:hover { transform: translateY(-5px); }
.alpha-ad-btn:hover { background: rgba(3,92,92,0.9) !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(3,92,92,0.45) !important; }
.alpha-ad-btn i { transition: transform 0.3s ease; }
.alpha-ad-btn:hover i { transform: translateX(5px); }
.alpha-features-section { padding: 4.5rem 0; }
.alpha-features-section .section-label { display: inline-block; margin-bottom: 0.75rem; }
.alpha-features-section .alpha-section-split-heading { margin-bottom: 1rem; }
.alpha-footer-copyright { color: #666; font-size: 14px; }
.alpha-footer-separator { margin: 0 8px; color: #999; }

/* =========================================  RESPONSIVE  ========================================= */
@media (max-width: 1199px) {
.alpha-fund-card h3 { font-size: 1.1rem; min-height: 2.8rem; }
.alpha-fund-card p { font-size: 0.88rem; }
}
@media (max-width: 991px) {
.alpha-features-section .col-lg-4 { flex: 0 0 auto; width: 50%; }
.alpha-features-section .col-lg-4:nth-child(5) { margin: 0 auto; }
.alpha-fund-card { padding: 1.75rem 1.25rem; }
}
@media (max-width: 767px) {
.alpha-features-section .col-lg-4 { width: 100%; }
.alpha-fund-card h3 { font-size: 1.2rem; min-height: auto; }
.alpha-fund-card p { font-size: 0.95rem; }
.alpha-ad-wrapper .row { flex-direction: column-reverse; }
.alpha-ad-content { padding: 2rem 1.5rem !important; }
.alpha-ad-media img, .alpha-ad-media video { min-height: 250px !important; }
}
@media (max-width: 575px) {
.alpha-fund-card { padding: 1.5rem 1rem; }
.alpha-fund-card .feature-icon { width: 55px; height: 55px; }
.alpha-fund-card .feature-icon i { font-size: 1.4rem; }
.fund-tag { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
}

/* ============================================================
   ALPHA ASSET MANAGERS — TEAM SECTION
   Brand palette: Alpha Green (#035c5c) — kpy variables
   ============================================================ */

/* ── Section wrapper ──────────────────────────────────────── */
.alpha-team { padding: 5rem 0 6rem; background-color: var(--kpy-bg-secondary); }

/* ── Section header ──────────────────────────────────────── */
.alpha-team-header { text-align: center; margin-bottom: 3.5rem; }
.alpha-team-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--kpy-primary); font-family: var(--kpy-font-heading); margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.alpha-team-subtitle { font-size: 1.05rem; color: var(--kpy-grey); font-family: var(--kpy-font-primary); max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.6; }

/* Decorative dot divider */
.alpha-team-divider { display: flex; align-items: center; justify-content: center; gap: 6px; }
.alpha-team-divider span { display: inline-block; border-radius: 50%; background: var(--kpy-primary); }
.alpha-team-divider span:nth-child(1), .alpha-team-divider span:nth-child(3) { width: 8px; height: 8px; opacity: 0.35; }
.alpha-team-divider span:nth-child(2) { width: 32px; height: 8px; border-radius: 4px; }

/* ── Grid ─────────────────────────────────────────────────── */
.alpha-team-grid { row-gap: 2rem; }
.alpha-team-col { display: flex; }

/* ── Member card ─────────────────────────────────────────── */
.alpha-member-card { background: var(--kpy-white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(var(--kpy-primary-rgb), 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; width: 100%; text-align: center; }
.alpha-member-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(var(--kpy-primary-rgb), 0.2); }

/* ── Photo wrapper ───────────────────────────────────────── */
.alpha-member-img-wrap { position: relative; overflow: hidden; background: var(--kpy-primary-dark); aspect-ratio: 1 / 1; }
.alpha-member-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.4s ease; }
.alpha-member-card:hover .alpha-member-img-wrap img { transform: scale(1.06); filter: brightness(0.72); }

/* Social icons overlay */
.alpha-member-socials { position: absolute; bottom: -60px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; padding: 14px 10px; background: linear-gradient(to top, var(--kpy-bg-overlay) 0%, transparent 100%); transition: bottom 0.35s ease; }
.alpha-member-card:hover .alpha-member-socials { bottom: 0; }
.alpha-member-socials a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.18); color: var(--kpy-white); backdrop-filter: blur(4px); transition: background 0.2s ease, transform 0.2s ease; text-decoration: none; }
.alpha-member-socials a:hover { background: var(--kpy-primary-lighter); color: var(--kpy-white); transform: scale(1.15); }

/* ── Member info ─────────────────────────────────────────── */
.alpha-member-info { padding: 1.4rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; align-items: center; }
.alpha-member-name { font-size: 1.05rem; font-weight: 700; font-family: var(--kpy-font-heading); color: var(--kpy-primary); margin: 0 0 0.3rem; }
.alpha-member-role { font-size: 0.82rem; color: var(--kpy-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; margin: 0 0 0.25rem; font-family: var(--kpy-font-primary); }
.alpha-member-org { font-size: 0.8rem; color: var(--kpy-grey); margin: 0 0 1rem; font-family: var(--kpy-font-primary); }

/* View Profile button */
.alpha-member-btn { margin-top: auto; padding: 0.45rem 1.25rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; font-family: var(--kpy-font-primary); border: 2px solid var(--kpy-primary); border-radius: 50px; background: transparent; color: var(--kpy-primary); cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.alpha-member-btn:hover { background: var(--kpy-primary); color: var(--kpy-white); transform: scale(1.04); }

/* ── Modal ───────────────────────────────────────────────── */
.alpha-team-modal .modal-content { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(var(--kpy-primary-rgb), 0.22); }
.alpha-modal-img-col { position: relative; background: var(--kpy-primary-dark); min-height: 300px; }
.alpha-modal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.alpha-modal-socials-strip { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; padding: 12px; background: linear-gradient(to top, var(--kpy-bg-overlay) 0%, transparent 100%); }
.alpha-modal-socials-strip a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.18); color: var(--kpy-white); text-decoration: none; font-size: 12px; font-weight: 700; transition: background 0.2s ease; }
.alpha-modal-socials-strip a:hover { background: var(--kpy-primary-lighter); }
.alpha-modal-body { padding: 2rem 1.75rem; position: relative; overflow-y: auto; max-height: 80vh; }
.alpha-modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--kpy-grey); cursor: pointer; transition: color 0.2s; }
.alpha-modal-close:hover { color: var(--kpy-primary); }
.alpha-modal-body h4 { font-size: 1.4rem; font-weight: 800; font-family: var(--kpy-font-heading); color: var(--kpy-primary); margin-bottom: 0.25rem; padding-right: 2rem; }
.alpha-modal-role { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--kpy-secondary); margin-bottom: 0.2rem; font-family: var(--kpy-font-primary); }
.alpha-modal-org { font-size: 0.9rem; color: var(--kpy-grey); margin-bottom: 0; font-family: var(--kpy-font-primary); }
.alpha-modal-divider { border: none; border-top: 2px solid var(--kpy-light-grey); margin: 1.25rem 0; }
.alpha-modal-bio { font-size: 0.92rem; line-height: 1.75; color: var(--kpy-dark); font-family: var(--kpy-font-secondary); }
.alpha-modal-bio p { margin-bottom: 0.8rem; }

/* Contact pills */
.alpha-modal-contact { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 8px; }
.alpha-contact-pill { display: inline-block; padding: 5px 14px; border-radius: 50px; background: var(--kpy-accent); color: var(--kpy-primary); font-size: 0.78rem; font-weight: 600; font-family: var(--kpy-font-primary); text-decoration: none; transition: background 0.2s ease, color 0.2s ease; word-break: break-all; }
.alpha-contact-pill:hover { background: var(--kpy-primary); color: var(--kpy-white); }

/* ── "No members" message ────────────────────────────────── */
.alpha-no-members { text-align: center; color: var(--kpy-grey); font-style: italic; padding: 2rem; font-family: var(--kpy-font-primary); }

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 767px) {
    .alpha-team { padding: 3.5rem 0 4rem; }
    .alpha-modal-img-col { min-height: 240px; }
    .alpha-modal-body { padding: 1.5rem 1.25rem; max-height: 60vh; }
}

/* ================================================================
   ALPHA ASSET MANAGERS — FAQ ACCORDION
   ================================================================ */

/* ── Section wrapper ── */
.alpha-faq-section { padding: 5rem 1.25rem; background: linear-gradient(160deg, #ffffff 0%, #f0f7f7 60%, #e6f2f2 100%); position: relative; overflow: hidden; }
.alpha-faq-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(3,92,92,0.07) 0%, transparent 70%); pointer-events: none; }
.alpha-faq-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(3,92,92,0.05) 0%, transparent 70%); pointer-events: none; }

/* ── Container ── */
.alpha-faq-container { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Header ── */
.alpha-faq-header { text-align: center; margin-bottom: 3rem; }
.alpha-faq-header__badge { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.alpha-faq-header__badge span { font-family: var(--kpy-font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kpy-primary); background: var(--alpha-green-bg); border: 1px solid rgba(3,92,92,0.15); padding: 0.35rem 1rem; border-radius: 100px; }
.alpha-faq-header__title { font-family: var(--kpy-font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--kpy-base); margin-bottom: 0.85rem; line-height: 1.2; }
.alpha-faq-header__title::after { content: ''; display: block; width: 56px; height: 3px; background: var(--kpy-gradient-primary); border-radius: 2px; margin: 0.75rem auto 0; }
.alpha-faq-header__desc { font-family: var(--kpy-font-primary); font-size: 1rem; color: var(--kpy-grey); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Accordion wrapper ── */
.alpha-accordion { display: flex; flex-direction: column; gap: 0.6rem; }

/* ── Accordion item ── */
.alpha-accordion__item { background: #ffffff; border-radius: 0 14px 0 14px; border: 1px solid rgba(3,92,92,0.1); overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.alpha-accordion__item:hover { box-shadow: 0 6px 24px rgba(3,92,92,0.10); border-color: rgba(3,92,92,0.22); }
.alpha-accordion__item--open,
.alpha-accordion__item:has(.alpha-accordion__trigger[aria-expanded="true"]) { border-left: 3px solid var(--kpy-primary); box-shadow: 0 6px 24px rgba(3,92,92,0.12); border-color: rgba(3,92,92,0.25); }

/* ── Trigger ── */
.alpha-accordion__trigger { display: flex; align-items: center; gap: 0.75rem; width: 100%; padding: 1.15rem 1.4rem; background: transparent; border: none; cursor: pointer; text-align: left; transition: background 0.25s ease; }
.alpha-accordion__trigger:hover,
.alpha-accordion__trigger[aria-expanded="true"] { background: var(--alpha-green-bg); }
.alpha-accordion__trigger-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--alpha-green-bg); border-radius: 50%; color: var(--kpy-primary); font-size: 1rem; transition: background 0.25s ease, color 0.25s ease; }
.alpha-accordion__trigger[aria-expanded="true"] .alpha-accordion__trigger-icon { background: var(--kpy-primary); color: #ffffff; }
.alpha-accordion__trigger-text { flex: 1; font-family: var(--kpy-font-heading); font-size: 0.95rem; font-weight: 600; color: var(--kpy-base); line-height: 1.4; }
.alpha-accordion__trigger[aria-expanded="true"] .alpha-accordion__trigger-text { color: var(--kpy-primary); }
.alpha-accordion__trigger-arrow { flex-shrink: 0; color: var(--kpy-primary-lighter); font-size: 0.85rem; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.alpha-accordion__trigger[aria-expanded="true"] .alpha-accordion__trigger-arrow { transform: rotate(-180deg); color: var(--kpy-primary); }

/* ── Collapse border ── */
.alpha-accordion__item .accordion-collapse { border-top: 1px solid var(--alpha-green-bg); }

/* ── Body ── */
.alpha-accordion__body { padding: 1.25rem 1.4rem 1.5rem 1.4rem; font-family: var(--kpy-font-primary); font-size: 0.9rem; color: var(--kpy-grey); line-height: 1.75; background: #ffffff; }

/* ── Star bullets ── */
.alpha-accordion__body ul { list-style: none; padding-left: 0; margin: 0.5rem 0 0; }
.alpha-accordion__body ol { padding-left: 1.4rem; margin: 0.5rem 0 0; }
.alpha-accordion__body ul li { position: relative; padding-left: 1.65rem; margin-bottom: 0.5rem; }
.alpha-accordion__body ul li::before { content: '\2605'; position: absolute; left: 0; top: 0.05em; color: var(--kpy-primary); font-size: 0.78rem; line-height: 1.75; }
.alpha-accordion__body ol li { margin-bottom: 0.5rem; }
.alpha-accordion__body ol li::marker { color: var(--kpy-primary); font-weight: 700; }

/* ── Body typography ── */
.alpha-accordion__body p { margin-bottom: 0.6rem; }
.alpha-accordion__body p:last-child { margin-bottom: 0; }
.alpha-accordion__body strong, .alpha-accordion__body b { color: var(--kpy-primary); font-weight: 600; }
.alpha-accordion__body a { color: var(--kpy-primary); text-decoration: underline; text-underline-offset: 2px; }
.alpha-accordion__body a:hover { color: var(--kpy-primary-dark); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .alpha-faq-section { padding: 3.5rem 1rem; }
    .alpha-accordion__trigger { padding: 1rem 1.1rem; }
    .alpha-accordion__body { padding: 1rem 1.1rem 1.2rem; }
    .alpha-faq-header__title { font-size: 1.6rem; }
}



/* ============================================================  CONTAINER OVERRIDES  ============================================================ */
@media (min-width: 1200px) {
.container, .container-lg, .container-md, .container-sm, .container-xl { max-width: 1140px !important; }
.alpha-nav-bar > .container, .alpha-middle-bar > .container, .alpha-top-bar > .container, .alpha-footer-main > .container, .alpha-footer-bottom > .container { max-width: 100% !important; width: 100% !important; }
}

/* ============================================================  UPCOMING EVENTS  ============================================================ */
.kpy-events-section { max-width: 1200px; margin: 0 auto; padding: 40px 20px; overflow: hidden; }
.kpy-section-title { font-family: var(--kpy-font-3); font-size: 3.5rem; color: var(--kpy-secondary-2); text-align: center; margin-bottom: 60px; position: relative; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.kpy-events-section.in-view .kpy-section-title { opacity: 1; transform: translateY(0); }
.kpy-section-title:after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary)); }
.kpy-events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.kpy-event-card-main { grid-column: 1; }
.kpy-event-card-side { grid-column: 2; display: flex; flex-direction: column; gap: 30px; }
.kpy-event-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.kpy-event-card.main-card { height: 100%; }
.kpy-event-card.side-card { height: calc((100% - 60px)/3); }
.kpy-event-card-main .kpy-event-card { transform: translateX(-100px); opacity: 0; transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.kpy-event-card-side .kpy-event-card { transform: translateX(100px); opacity: 0; transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.kpy-event-card-side .kpy-event-card:nth-child(1) { transition-delay: 0.9s; }
.kpy-event-card-side .kpy-event-card:nth-child(2) { transition-delay: 0.9s; }
.kpy-event-card-side .kpy-event-card:nth-child(3) { transition-delay: 0.9s; }
.kpy-events-section.in-view .kpy-event-card { transform: translateX(0); opacity: 1; }
.kpy-event-card:hover { transform: translateY(-5px) !important; box-shadow: 0 15px 30px rgba(var(--kpy-primary-rgb), 0.15); }
.event-card-inner { display: flex; height: 100%; }
.event-thumbnail { flex: 0 0 40%; overflow: hidden; }
.main-card .event-thumbnail { flex: 0 0 45%; }
.event-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.kpy-event-card:hover .event-image { transform: scale(1.05); }
.event-content { flex: 1; padding: 25px; display: flex; flex-direction: column; }
.main-card .event-content { padding: 35px; }
.event-date { font-family: var(--kpy-font); font-size: 0.9rem; color: var(--kpy-secondary-2); margin-bottom: 10px; }
.main-card .event-date { font-size: 1rem; }
.event-title { font-family: var(--kpy-font); font-size: 1.3rem; margin: 0 0 15px; color: var(--kpy-black); line-height: 1.4; }
.main-card .event-title { font-size: 1.8rem; margin-bottom: 20px; }
.event-meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 15px; font-family: var(--kpy-font-2); font-size: 0.9rem; }
.main-card .event-meta { font-size: 1rem; gap: 20px; }
.event-location, .event-time { display: flex; align-items: center; gap: 5px; color: rgba(var(--kpy-base-rgb), 0.8); }
.kpy-no-events { text-align: center; padding: 40px; font-family: var(--kpy-font-2); color: rgba(var(--kpy-base-rgb), 0.6); }
.kpy-event-card.main-card .event-card-inner { flex-direction: column; }
.kpy-event-card.main-card .event-thumbnail { flex: 0 0 auto; width: 100%; }
.kpy-event-card.main-card .event-image { width: 100%; height: 350px; object-fit: cover; }
.event { min-height: 360px; margin-bottom: 4rem; margin-top: 3rem; }
@media (max-width: 992px) {
.event-card-inner { flex-direction: column; }
.event-thumbnail { flex: 0 0 200px; }
.main-card .event-thumbnail { flex: 0 0 250px; }
}
@media (max-width: 768px) {
.kpy-events-grid { grid-template-columns: 1fr; gap: 20px; }
.kpy-event-card-main, .kpy-event-card-side { grid-column: 1; }
.kpy-event-card-side { gap: 20px; }
.kpy-event-card.side-card { height: auto; }
.kpy-section-title { font-size: 1.8rem; }
.kpy-event-card { transform: translateY(30px) !important; opacity: 0; }
.kpy-events-section.in-view .kpy-event-card { transform: translateY(0) !important; opacity: 1; }
}

/* ============================================================  GALLERY  ============================================================ */
.gallery-cards-container { margin: 0 auto; padding: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; }
.gallery-card { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: all 0.3s ease; aspect-ratio: 1/1; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
.gallery-thumbnail-wrapper { position: relative; width: 100%; height: 100%; }
.gallery-thumbnail { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-card:hover .gallery-thumbnail { transform: scale(1.05); }
.gallery-title-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); color: #fff; }
.gallery-title { margin: 0; font-size: 2.2rem; line-height: 1.2; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); transform: translateY(10px); transition: transform 0.3s ease; opacity: 0.9; }
.gallery-card:hover .gallery-title { transform: translateY(0); opacity: 1; }
.gallery-card-link { display: block; height: 100%; text-decoration: none; color: inherit; }
.gallery-pagination { display: flex; justify-content: center; margin-top: 40px; }
.gallery-pagination .page-numbers { display: flex; list-style: none; padding: 0; margin: 0; gap: 8px; }
.gallery-pagination .page-numbers li a, .gallery-pagination .page-numbers li span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 6px; background: #f8f9fa; color: #495057; text-decoration: none; font-weight: 500; transition: all 0.3s ease; }
.gallery-pagination .page-numbers li a:hover { background: #228b22; color: #fff; }
.gallery-pagination .page-numbers li span.current { background: #228b22; color: #fff; }
.gallery-pagination .page-numbers li .pagination-arrow { margin: 0 5px; }
@media (max-width: 768px) {
.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.gallery-title-overlay { padding: 15px; }
.gallery-title { font-size: 1rem; }
}
@media (max-width: 480px) {
.gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-title-overlay { padding: 10px; }
}

/* ============================================================  PARTNERS  ============================================================ */
.partners { padding: 15px 10px; }
.partner { display: flex; overflow: hidden; position: relative; }
.partner .card { min-height: 100px; white-space: nowrap; animation: marquee-animation 10s linear infinite; }
.partner img { height: 100px; object-fit: contain; object-position: center; display: grid; gap: 10px; padding: 10px; width: 200px; }
@keyframes marquee-animation { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.marquee a { animation: marquee-animation 5s linear infinite; }
.partnerlist img { width: 100%; height: 100px; object-fit: contain; object-position: center; }
.urreno_assoc img { width: 100%; height: auto; }
.urreno_assoc h3 { font-size: 1rem; font-family: 'Roboto', sans-serif; letter-spacing: -0.5px; }
.urreno_assoc .card { height: 200px; padding: 15px; margin-bottom: 20px; }

/* ============================================================  PUBLICATIONS  ============================================================ */
.downloads-category-menu { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.category-menu-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; }
.category-menu-list { list-style: none; padding: 0; margin: 0; }
.category-menu-item { margin-bottom: 8px; }
.category-menu-link { text-decoration: none; color: #333; display: flex; justify-content: space-between; padding: 10px; border-radius: 5px; transition: background 0.3s, color 0.3s; }
.category-menu-link:hover { background: #f0f0f0; color: #007bff; }
.category-count { background: #eee; padding: 2px 8px; border-radius: 10px; font-size: 0.85em; }
#downloads-table_wrapper { margin: 20px 0; margin-left: 50px; }
.dataTables_length, .dataTables_filter { margin-bottom: 15px; }
.dataTables_length label, .dataTables_filter label { display: flex; align-items: center; gap: 10px; }
.dataTables_length select, .dataTables_filter input { padding: 5px; border: 1px solid #ddd; border-radius: 4px; }
#downloads-table { width: 100%; border-collapse: collapse; }
#downloads-table th, #downloads-table td { padding: 12px 15px; border-bottom: 1px solid #e0e0e0; }
.pub-title { margin: 0; font-size: 20px; color: #1716a3; font-weight: 700; }
.dataTables_paginate { margin-top: 15px; display: flex; gap: 5px; }
.paginate_button { padding: 5px 10px; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; }
.paginate_button.current { background: #f7a81b; color: white; border-color: #f7a81b; }
.paginate_button.disabled { opacity: 0.5; cursor: not-allowed; }
.pub-download a { color: #f7a81b; text-decoration: none; }
.pub-download a:hover { text-decoration: underline; }
@media (max-width: 768px) {
#downloads-table_wrapper { margin-left: 15px; margin-right: 15px; overflow-x: auto; }
.dataTables_length, .dataTables_filter { flex-direction: column; align-items: flex-start; gap: 5px; }
.dataTables_length label, .dataTables_filter label { font-size: 14px; flex-direction: column; align-items: flex-start; }
.dataTables_length select, .dataTables_filter input { width: 100%; font-size: 14px; }
#downloads-table th, #downloads-table td { padding: 10px; font-size: 14px; }
.pub-title { font-size: 18px; }
.pub-link p { font-size: 14px; }
.dataTables_paginate { flex-wrap: wrap; justify-content: center; }
.paginate_button { font-size: 13px; padding: 5px 8px; }
.downloads-category-menu { padding: 15px; }
.category-menu-title { font-size: 1rem; }
.category-menu-link { flex-direction: column; align-items: flex-start; gap: 4px; }
.category-count { font-size: 0.8em; align-self: flex-start; }
}
@media (max-width: 480px) {
.pub-title { font-size: 16px; }
.dataTables_length, .dataTables_filter { font-size: 13px; }
.category-menu-title { font-size: 0.95rem; }
.category-menu-link { font-size: 14px; }
#downloads-table_wrapper { margin-left: 10px; margin-right: 10px; }
.dataTables_info { font-size: 12px; text-align: center; }
.category-menu-list { padding: 0; }
}

/* ============================================================  SINGLE PAGE HERO  ============================================================ */
.header-wrap1 { position: relative; height: 400px; overflow: hidden; padding-top: 0; min-height: auto; }
.header-wrap1 .hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; animation: zoomInOut 15s ease-in-out infinite; z-index: 1; }
.header-wrap1 h1 { font-weight: 700; width: 100%; color: var(--kpy-white); font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.header-wrap1 .breadcrumb { color: var(--kpy-white); position: relative; z-index: 10; display: block; top: -5px; font-size: 1.1rem; font-weight: 400; opacity: 0.9; }
.header-wrap1 .breadcrumb a { text-decoration: none; color: #fff; }
.header-wrap1 .breadcrumb a:hover { text-decoration: underline; }
.about-side { border-left: 1px solid #ccc; position: sticky; top: 5%; }
@media (max-width: 768px) {
.header-wrap1 { height: 300px; }
.header-wrap1 h1 { font-size: 2rem; }
}
/* ============================================================  DIRECTORY  ============================================================ */
.publications { margin-bottom: 40px; }
#downloads-table { border-collapse: separate; border-spacing: 0 15px; margin-top: 20px; width: 100%; }
#downloads-table thead { display: none; }
#downloads-table tbody tr { box-shadow: 0 3px 10px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; background-color: #fff; border-radius: 8px; }
#downloads-table tbody tr:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
#downloads-table td { padding: 20px; vertical-align: top; border: none; }
.member-thumbnail { text-align: center; }
.member-thumbnail img { max-width: 100%; height: auto; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.member-title { font-size: 1.4rem; font-weight: 600; color: #333; margin-bottom: 10px; transition: color 0.3s ease; }
.member-title:hover { color: #0056b3; }
.pub-summ { font-size: 1rem; font-weight: 500; color: #555; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.pub-desc { margin-bottom: 15px; color: #666; line-height: 1.6; }
.member-summ { background-color: #f9f9f9; padding: 12px !important; border-radius: 5px; margin-top: 10px; color: #555; line-height: 1.8; }
.member-summ small { display: block; margin-bottom: 3px; }
.member-summ strong { color: #444; }
.member-link { margin-top: 15px; }
.member-link a { display: inline-block; background-color: #0056b3; color: white; padding: 8px 20px; border-radius: 4px; text-decoration: none; font-weight: 500; transition: background-color 0.3s ease; }
.member-link a:hover { background-color: #003d82; text-decoration: none; }
.page-content2 { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.post-content { background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 2rem; }
.pub-single { margin-bottom: 2rem; }
.post-thumbnail { overflow: hidden; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.post-thumbnail img { width: 100%; height: auto; transition: transform 0.3s ease; }
.post-thumbnail img:hover { transform: scale(1.02); }
.about-side-pub { padding-left: 1.5rem; }
h1.entry-title { font-size: 2.2rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
h4.pub-summ { font-size: 1.25rem; margin-bottom: 0.75rem; color: #555; font-weight: 600; }
hr { margin: 1.5rem 0; border-color: #eee; }
.btn-sm { padding: 0.25rem 0.5rem; font-size: 0.875rem; border-radius: 4px; transition: all 0.2s ease; }
.btn-facebook { background-color: #3b5998; color: white; }
.btn-facebook:hover { background-color: #2d4373; color: white; }
.btn-twitter { background-color: #1da1f2; color: white; }
.btn-twitter:hover { background-color: #0c85d0; color: white; }
.btn-whatsapp { background-color: #25D366; color: white; }
.btn-whatsapp:hover { background-color: #128C7E; color: white; }

/* ============================================================  ERROR 404  ============================================================ */
.Error_404 { overflow: hidden; padding: 80px 0 120px; }
.Error_404 .error_pic { width: 35%; float: left; text-align: center; }
.Error_404 .error_pic i { color: #F72331; font-size: 250px; line-height: 250px; margin-right: 0.2em; text-align: center; font-variant: normal; text-transform: none; margin-left: 0.2em; }
.Error_404 .error_desk { width: 65%; float: left; padding-top: 40px; }
.Error_404 .error_desk h2 { font-size: 55px; line-height: 60px; color: #F72331; font-weight: 500; }
.Error_404 .error_desk h4 { font-size: 28px; line-height: 30px; }
.Error_404 .error_desk p .check { line-height: 45px; font-size: 16px; }
.Error_404 .error_desk p .button { padding: 13px 20px; margin: 0 0 0 10px; border-radius: 5px; display: inline; box-shadow: inset 0 0 0 0; }
.Error_404 .error_desk p .button:hover { color: #f9f9f9; text-decoration: none; background: #F72331; }
a.button, a.tp-button { transition: 0.2s all; background: transparent; color: #F72331; border: solid 2px; }
.wp-block-ub-tabbed-content-tab-title strong { font-weight: 500 !important; }

/* ============================================================  ADMIN & TYPOGRAPHY  ============================================================ */
.post-type-newsletter_sub .wp-list-table th.column-subscribed_date, .post-type-newsletter_sub .wp-list-table th.column-subscribed_ip { width: 15%; }
.post-type-newsletter_sub .wp-list-table .column-title { width: 40%; }
html { font-family: var(--kpy-font-primary) !important; }
body { font-family: var(--kpy-font-primary) !important; color: var(--kpy-grey); background-color: var(--kpy-bg-primary); }
h1, h2, h3, h4, h5, h6 { font-family: var(--kpy-font-heading) !important; color: var(--kpy-base); }

/* ============================================================  LANGUAGE SWITCHER  ============================================================ */
.kpy-menu-language-switcher { position: relative; }
.kpy-menu-lang-dropdown { position: relative; }
.kpy-menu-lang-toggle { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.3); border-radius: 25px; padding: 8px 16px; cursor: pointer; color: var(--kpy-white); font-weight: 600; font-size: 0.9rem; transition: all var(--kpy-transition); }
.kpy-menu-lang-toggle:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.kpy-menu-lang-flag { font-size: 1.2rem; line-height: 1; }
.kpy-menu-lang-arrow { font-size: 0.75rem; transition: transform var(--kpy-transition); }
.kpy-menu-lang-dropdown.active .kpy-menu-lang-arrow { transform: rotate(180deg); }
.kpy-menu-lang-dropdown-menu { position: absolute; top: calc(100% + 10px); right: 0; background: var(--kpy-white); border-radius: 12px; box-shadow: var(--kpy-shadow-xl); min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all var(--kpy-transition); z-index: 1000; overflow: hidden; }
.kpy-menu-lang-dropdown.active .kpy-menu-lang-dropdown-menu, .kpy-menu-lang-dropdown-menu.active { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; display: block !important; }
.kpy-menu-lang-dropdown-menu::before { content: ''; position: absolute; top: -8px; right: 20px; width: 16px; height: 16px; background: var(--kpy-white); transform: rotate(45deg); box-shadow: -2px -2px 5px rgba(0,0,0,0.1); }
.kpy-menu-lang-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--kpy-base); text-decoration: none; transition: all var(--kpy-transition); border-bottom: 1px solid var(--kpy-light-grey); }
.kpy-menu-lang-option:last-child { border-bottom: none; }
.kpy-menu-lang-option:hover, .kpy-menu-lang-option.active { background: var(--kpy-bg-secondary); color: var(--kpy-primary); padding-left: 20px; }
.kpy-menu-lang-option .kpy-menu-lang-flag { font-size: 1.5rem; }
.kpy-menu-lang-name { font-weight: 500; }
.kpy-language-switcher { position: fixed; top: 50%; right: 20px; transform: translateY(-50%); z-index: 9998; background: var(--kpy-white); border-radius: 50px; box-shadow: var(--kpy-shadow-lg); padding: 8px; display: none; }
.kpy-lang-toggle { display: flex; align-items: center; gap: 8px; background: transparent; border: none; padding: 8px 16px; cursor: pointer; color: var(--kpy-base); font-weight: 600; transition: all var(--kpy-transition); }
.kpy-lang-toggle:hover { color: var(--kpy-primary); }
.kpy-lang-dropdown { position: absolute; bottom: 100%; right: 0; margin-bottom: 10px; background: var(--kpy-white); border-radius: 12px; box-shadow: var(--kpy-shadow-xl); min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--kpy-transition); }
.kpy-lang-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.kpy-lang-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--kpy-base); text-decoration: none; transition: all var(--kpy-transition); border-bottom: 1px solid var(--kpy-light-grey); }
.kpy-lang-option:last-child { border-bottom: none; }
.kpy-lang-option:hover, .kpy-lang-option.active { background: var(--kpy-bg-secondary); color: var(--kpy-primary); }
.kpy-lang-flag { font-size: 1.5rem; }

/* ============================================================  SLIDER  ============================================================ */
.kpy-slide { position: relative; min-height: 800px; height: 100vh; overflow: hidden; }
.kpy-curtain-left, .kpy-curtain-right { position: absolute; top: 0; width: 50%; height: 100%; background: rgba(0,0,0,0.7); z-index: 10; transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.5s ease-out; will-change: transform, opacity; }
.kpy-curtain-left { left: 0; transform: translateX(0); opacity: 1; }
.kpy-curtain-right { right: 0; transform: translateX(0); opacity: 1; }
.swiper-slide-active .kpy-curtain-left { transform: translateX(-100%); opacity: 0; }
.swiper-slide-active .kpy-curtain-right { transform: translateX(100%); opacity: 0; }
.swiper-slide:not(.swiper-slide-active) .kpy-curtain-left, .swiper-slide:not(.swiper-slide-active) .kpy-curtain-right { transform: translateX(0); opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease; }
.kpy-slide-image-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-attachment: fixed; opacity: 0.3; filter: blur(4px) brightness(0.5); transform: scale(1.05); transition: opacity 1.8s ease-out 0.2s, filter 1.8s ease-out 0.2s, transform 1.8s ease-out 0.2s; z-index: 1; }
.swiper-slide-active .kpy-slide-image-layer { opacity: 1; filter: blur(0px) brightness(1); transform: scale(1.1); }
.swiper-slide:not(.swiper-slide-active) .kpy-slide-image-layer { opacity: 0.3; filter: blur(4px) brightness(0.5); transform: scale(1.05); transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease; }
.kpy-slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(3,92,92,0.50) 0%, rgba(3,92,92,0.40) 20%, rgba(3,92,92,0.30) 40%, rgba(3,92,92,0.20) 60%, rgba(3,92,92,0.10) 80%, transparent 100%); z-index: 2; pointer-events: none; }
.kpy-slide-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: hidden; }
.kpy-shape { position: absolute; border-radius: 50%; opacity: 0.1; animation: float 20s infinite ease-in-out; }
.kpy-shape-1 { width: 300px; height: 300px; background: var(--kpy-white); top: -100px; right: -100px; animation-delay: 0s; }
.kpy-shape-2 { width: 200px; height: 200px; background: var(--kpy-accent); bottom: -50px; left: -50px; animation-delay: 5s; }
.kpy-shape-3 { width: 150px; height: 150px; background: var(--kpy-secondary); top: 50%; left: 10%; animation-delay: 10s; }
@keyframes float { 0%, 100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(30px,-30px) rotate(120deg); } 66% { transform: translate(-20px,20px) rotate(240deg); } }
.kpy-slider-content { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; padding: var(--kpy-space-xl) 0 var(--kpy-space-lg); margin-top: 3rem; }
.kpy-slider-content-inner { max-width: 800px; color: var(--kpy-white); }
.main-slider .kpy-slider-content { justify-content: center; }
.main-slider .kpy-slider-content-inner { text-align: center; margin-left: auto; margin-right: auto; }
.main-slider .kpy-slide-title, .main-slider .kpy-slide-title h2 { text-align: center; }
.main-slider .kpy-slide-text { text-align: center; color: #ffffff; font-size: 1.25rem; line-height: 1.8; margin-bottom: var(--kpy-space-lg); opacity: 0.95; }
.main-slider .kpy-slide-text p { color: #ffffff; text-align: center; margin-left: auto; margin-right: auto; }
.main-slider .kpy-slide-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.main-slider .kpy-slide-btn { display: inline-block; padding: 0.85rem 1.75rem; border-radius: 6px; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; transition: all 0.3s ease; }
.main-slider .kpy-slide-btn-learn { background: #ffffff; color: var(--kpy-primary, #035c5c); border: 2px solid #ffffff; }
.main-slider .kpy-slide-btn-learn:hover { background: transparent; color: #ffffff; border-color: #ffffff; }
.main-slider .kpy-slide-btn-contact { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.main-slider .kpy-slide-btn-contact:hover { background: #ffffff; color: var(--kpy-primary, #035c5c); border-color: #ffffff; }
.kpy-slide-title h2 { font-size: 4rem; font-weight: 800; line-height: 1.2; margin-bottom: var(--kpy-space-md); text-shadow: 2px 4px 8px rgba(0,0,0,0.3); color: var(--kpy-white); }
.kpy-slide-text { font-size: 1.25rem; line-height: 1.8; margin-bottom: var(--kpy-space-lg); opacity: 0.95; }
.kpy-slide-curve { position: absolute; bottom: 0; left: 0; width: 100%; height: 180px; z-index: 4; }
.kpy-slider-left-social { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.kpy-social-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--kpy-white); font-size: 1.2rem; text-decoration: none; transition: all 0.3s ease; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.kpy-social-icon:hover { color: var(--kpy-white); background: rgba(255,255,255,0.2); transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.kpy-slider-right-nav { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }
.kpy-nav-link { font-family: var(--kpy-font-heading); font-size: 1.1rem; font-weight: 600; color: var(--kpy-white); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; padding: 12px 0; position: relative; transition: all 0.3s ease; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.kpy-nav-link::after { content: ''; position: absolute; bottom: 8px; right: 0; width: 0; height: 2px; background: var(--kpy-white); transition: width 0.3s ease; }
.kpy-nav-link:hover { color: var(--kpy-white); transform: translateX(-5px); }
.kpy-nav-link:hover::after { width: 100%; }
.kpy-nav-link-all { margin-top: 10px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.3); font-size: 0.9rem; letter-spacing: 1.5px; }
.main-slider .swiper-button-next, .main-slider .swiper-button-prev, #main-slider__swiper-button-next, #main-slider__swiper-button-prev, .thm-swiper__slider .swiper-button-next, .thm-swiper__slider .swiper-button-prev { display: none !important; }
#main-slider-pagination { display: none !important; }

/* ============================================================  HERO  ============================================================ */
.kpy-page-hero, .kpy-archive-hero, .kpy-property-hero { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden; }
.kpy-hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.kpy-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--kpy-gradient-hero); }
.kpy-hero-content { position: relative; z-index: 2; text-align: center; color: var(--kpy-white); max-width: 800px; padding: 0 var(--kpy-space-md); }
.kpy-hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: var(--kpy-space-sm); text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.kpy-hero-subtitle { font-size: 1.25rem; margin-bottom: var(--kpy-space-md); opacity: 0.95; }
.kpy-hero-breadcrumb { font-size: 1rem; opacity: 0.9; }
.kpy-hero-breadcrumb a { color: var(--kpy-white); text-decoration: none; transition: opacity var(--kpy-transition); }
.kpy-hero-breadcrumb a:hover { opacity: 0.8; }
.kpy-hero-curve { position: absolute; bottom: 0; left: 0; width: 100%; height: 80px; z-index: 1; }

/* ============================================================  BUTTONS  ============================================================ */
.kpy-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; font-family: var(--kpy-font-primary); font-weight: 600; text-decoration: none; border: none; border-radius: 8px; cursor: pointer; transition: all var(--kpy-transition); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.9rem; }
.kpy-btn-primary { background: var(--kpy-gradient-primary); color: var(--kpy-white); box-shadow: var(--kpy-shadow); border-radius: 0 20px 0 20px; }
.kpy-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--kpy-shadow-lg); }
.kpy-btn-secondary { background: var(--kpy-white); color: var(--kpy-primary); border: 2px solid var(--kpy-primary); }
.kpy-btn-secondary:hover { background: var(--kpy-primary); color: var(--kpy-white); }
.kpy-btn-lg { padding: 16px 32px; font-size: 1rem; }
.kpy-btn-block { width: 100%; display: block; }

/* ============================================================  PROPERTY CARDS  ============================================================ */
.kpy-property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--kpy-space-lg); margin-top: var(--kpy-space-lg); }
.kpy-property-card { background: var(--kpy-white); border-radius: 12px; overflow: hidden; box-shadow: var(--kpy-shadow); transition: all var(--kpy-transition); position: relative; }
.kpy-property-card:hover { transform: translateY(-5px); box-shadow: var(--kpy-shadow-xl); }
.kpy-property-image-wrapper { position: relative; overflow: hidden; height: 250px; }
.kpy-property-image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--kpy-transition); }
.kpy-property-card:hover .kpy-property-image { transform: scale(1.1); }
.kpy-property-placeholder { width: 100%; height: 100%; background: var(--kpy-bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--kpy-light-grey); }
.kpy-property-badge { position: absolute; top: 15px; padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.kpy-badge-featured { left: 15px; background: var(--kpy-primary); color: var(--kpy-white); }
.kpy-badge-status { right: 15px; }
.kpy-status-available { background: var(--kpy-secondary); color: var(--kpy-white); }
.kpy-status-sold, .kpy-status-rented { background: var(--kpy-grey); color: var(--kpy-white); }
.kpy-status-pending { background: var(--kpy-primary); color: var(--kpy-white); }
.kpy-property-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--kpy-transition); }
.kpy-property-card:hover .kpy-property-overlay { opacity: 1; }
.kpy-property-view-btn { background: var(--kpy-white); color: var(--kpy-primary); padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all var(--kpy-transition); }
.kpy-property-view-btn:hover { background: var(--kpy-primary); color: var(--kpy-white); }
.kpy-property-content { padding: var(--kpy-space-md); }
.kpy-property-title { font-size: 1.5rem; margin-bottom: var(--kpy-space-xs); }
.kpy-property-title a { color: var(--kpy-base); text-decoration: none; transition: color var(--kpy-transition); }
.kpy-property-title a:hover { color: var(--kpy-primary); }
.kpy-property-location { color: var(--kpy-grey); font-size: 0.9rem; margin-bottom: var(--kpy-space-sm); display: flex; align-items: center; gap: 6px; }
.kpy-property-price { font-size: 1.75rem; font-weight: 700; color: var(--kpy-primary); margin-bottom: var(--kpy-space-sm); }
.kpy-property-meta { display: flex; flex-wrap: wrap; gap: var(--kpy-space-md); margin-bottom: var(--kpy-space-sm); padding-bottom: var(--kpy-space-sm); border-bottom: 1px solid var(--kpy-light-grey); }
.kpy-property-meta-item { display: flex; align-items: center; gap: 6px; color: var(--kpy-grey); font-size: 0.9rem; }
.kpy-property-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--kpy-space-sm); }
.kpy-property-tag { padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 500; background: var(--kpy-bg-secondary); color: var(--kpy-base); }
.kpy-tag-type { background: var(--kpy-primary-lighter); color: var(--kpy-primary-dark); }
.kpy-tag-category { background: rgba(45,143,71,0.1); color: var(--kpy-secondary); }
.kpy-property-footer { margin-top: var(--kpy-space-sm); }
.kpy-property-link { display: inline-flex; align-items: center; gap: 8px; color: var(--kpy-primary); text-decoration: none; font-weight: 600; transition: all var(--kpy-transition); }
.kpy-property-link:hover { gap: 12px; color: var(--kpy-primary-dark); }

/* ============================================================  PROPERTY FILTERS & ARCHIVE  ============================================================ */
.kpy-property-filters-section { background: var(--kpy-bg-secondary); padding: var(--kpy-space-lg) 0; margin-top: -80px; position: relative; z-index: 2; }
.kpy-filter-form { background: var(--kpy-white); padding: var(--kpy-space-lg); border-radius: 12px; box-shadow: var(--kpy-shadow-lg); }
.kpy-filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--kpy-space-md); align-items: end; }
.kpy-filter-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--kpy-base); font-size: 0.9rem; }
.kpy-filter-group select, .kpy-filter-group input { width: 100%; padding: 12px 16px; border: 2px solid var(--kpy-light-grey); border-radius: 8px; font-family: var(--kpy-font-primary); font-size: 0.95rem; transition: all var(--kpy-transition); }
.kpy-filter-group select:focus, .kpy-filter-group input:focus { outline: none; border-color: var(--kpy-primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.kpy-filter-actions { display: flex; gap: var(--kpy-space-sm); }
.kpy-property-results-section { padding: var(--kpy-space-xl) 0; }
.kpy-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--kpy-space-lg); flex-wrap: wrap; gap: var(--kpy-space-md); }
.kpy-results-title { font-size: 2rem; color: var(--kpy-base); }
.kpy-sort-select { padding: 10px 16px; border: 2px solid var(--kpy-light-grey); border-radius: 8px; font-family: var(--kpy-font-primary); cursor: pointer; }
.kpy-properties-loading { text-align: center; padding: var(--kpy-space-xl); }
.kpy-spinner { border: 4px solid var(--kpy-light-grey); border-top: 4px solid var(--kpy-primary); border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 0 auto var(--kpy-space-md); }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.kpy-no-properties { text-align: center; padding: var(--kpy-space-xl); color: var(--kpy-grey); font-size: 1.1rem; }
.kpy-property-pagination { margin-top: var(--kpy-space-xl); text-align: center; }

/* ============================================================  SINGLE PROPERTY  ============================================================ */
.kpy-single-property { padding-top: 0; }
.kpy-property-hero { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.kpy-property-hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.kpy-property-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.kpy-property-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%); z-index: 2; }
.kpy-property-hero-content { position: relative; z-index: 3; text-align: left; max-width: 100%; color: #ffffff; padding: 80px 0; }
.kpy-property-breadcrumb { font-size: 0.9rem; margin-bottom: var(--kpy-space-sm); color: rgba(255,255,255,0.9); }
.kpy-property-breadcrumb a { color: var(--kpy-white); text-decoration: none; opacity: 0.9; transition: opacity 0.3s ease; }
.kpy-property-breadcrumb a:hover { opacity: 1; }
.kpy-property-breadcrumb span { margin: 0 8px; opacity: 0.7; }
.kpy-property-hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: var(--kpy-space-sm); color: #ffffff; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.kpy-property-hero-location { font-size: 1.2rem; opacity: 0.95; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.95); margin-top: 10px; }
.kpy-property-hero-location i { font-size: 1.1rem; }
.kpy-property-main { padding: var(--kpy-space-xl) 0; }
.kpy-property-layout { display: grid; grid-template-columns: 2fr 1fr; gap: var(--kpy-space-xl); }
.kpy-property-gallery { margin-bottom: var(--kpy-space-xl); }
.kpy-gallery-main { margin-bottom: var(--kpy-space-md); border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; transition: transform 0.3s ease; }
.kpy-gallery-main:hover { transform: scale(1.01); }
.kpy-gallery-main a { display: block; width: 100%; height: 100%; }
.kpy-gallery-main-image { width: 100%; height: 500px; object-fit: cover; transition: transform 0.3s ease; }
.kpy-gallery-main:hover .kpy-gallery-main-image { transform: scale(1.05); }
.kpy-gallery-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--kpy-space-sm); }
.kpy-gallery-thumb { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; transition: transform var(--kpy-transition); }
.kpy-gallery-thumb:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.kpy-gallery-thumb img { width: 100%; height: 100px; object-fit: cover; border-radius: 8px; transition: transform var(--kpy-transition); }
.kpy-gallery-thumb:hover img { transform: scale(1.1); }
.kpy-property-description, .kpy-property-details { margin-bottom: var(--kpy-space-xl); }
.kpy-section-title { font-size: 2rem; margin-bottom: var(--kpy-space-lg); color: var(--kpy-base); position: relative; padding-bottom: 15px; }
.kpy-section-title:after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--kpy-gradient-primary); border-radius: 2px; }
.kpy-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--kpy-space-md); }
.kpy-detail-item { display: flex; align-items: center; gap: var(--kpy-space-md); padding: var(--kpy-space-md); background: var(--kpy-bg-secondary); border-radius: 8px; }
.kpy-detail-item i { font-size: 2rem; color: var(--kpy-primary); }
.kpy-detail-item strong { display: block; margin-bottom: 4px; color: var(--kpy-base); }
.kpy-detail-item span { color: var(--kpy-grey); }
.kpy-property-sidebar { display: flex; flex-direction: column; gap: var(--kpy-space-md); }
.kpy-property-price-card, .kpy-property-contact-card, .kpy-property-location-card { background: var(--kpy-white); padding: var(--kpy-space-lg); border-radius: 12px; box-shadow: var(--kpy-shadow); }
.kpy-price-display { text-align: center; padding: var(--kpy-space-md); background: var(--kpy-bg-secondary); border-radius: 8px; margin-bottom: var(--kpy-space-md); }
.kpy-price-label { display: block; font-size: 0.9rem; color: var(--kpy-grey); margin-bottom: 8px; }
.kpy-price-value { display: block; font-size: 2.5rem; font-weight: 700; color: var(--kpy-primary); }
.kpy-contact-title, .kpy-location-title { font-size: 1.25rem; margin-bottom: var(--kpy-space-md); color: var(--kpy-base); display: flex; align-items: center; gap: 8px; }
.kpy-contact-item { display: flex; align-items: center; gap: 12px; padding: var(--kpy-space-sm) 0; color: var(--kpy-grey); }
.kpy-contact-link { text-decoration: none; transition: color var(--kpy-transition); }
.kpy-contact-link:hover { color: var(--kpy-primary); }
.kpy-location-address { color: var(--kpy-grey); line-height: 1.8; margin-bottom: var(--kpy-space-md); }
.kpy-related-properties { padding: var(--kpy-space-xl) 0; background: var(--kpy-bg-secondary); }

/* ============================================================  ABOUT PAGE  ============================================================ */
.kpy-about-content { padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); position: relative; overflow: hidden; }
.kpy-about-content::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%); border-radius: 50%; }
.kpy-about-text { max-width: 900px; margin: 0 auto; font-size: 1.2rem; line-height: 2; color: #333; position: relative; z-index: 1; }
.kpy-business-areas { padding: 120px 0; background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%); position: relative; }
.kpy-business-areas::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #FF6B35 50%, transparent); }
.kpy-business-areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 60px; }
.kpy-business-area-card { background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; border: 1px solid rgba(255,107,53,0.1); }
.kpy-business-area-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #FF6B35, #E55A2B); transform: scaleX(0); transition: transform 0.4s ease; }
.kpy-business-area-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 20px 60px rgba(255,107,53,0.2); border-color: rgba(255,107,53,0.3); }
.kpy-business-area-card:hover::before { transform: scaleX(1); }
.kpy-business-area-image { width: 100%; height: 240px; overflow: hidden; position: relative; background: linear-gradient(135deg, #FF6B35, #E55A2B); }
.kpy-business-area-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%); z-index: 1; }
.kpy-business-area-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.kpy-business-area-card:hover .kpy-business-area-image img { transform: scale(1.15) rotate(2deg); }
.kpy-business-area-content { padding: 40px; position: relative; }
.kpy-business-area-icon { width: 70px; height: 70px; margin-bottom: 25px; background: linear-gradient(135deg, #FF6B35, #E55A2B); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1.8rem; box-shadow: 0 8px 20px rgba(3,92,92,0.3); transform: rotate(-5deg); transition: all 0.4s ease; }
.kpy-business-area-card:hover .kpy-business-area-icon { transform: rotate(0deg) scale(1.1); box-shadow: 0 12px 30px rgba(255,107,53,0.4); }
.kpy-business-area-content h3 { font-size: 1.6rem; font-weight: 700; color: #1a1a1a; margin-bottom: 18px; font-family: var(--kpy-font-heading); background: linear-gradient(135deg, #1a1a1a, #333); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.kpy-business-area-content p { color: #555; line-height: 1.8; margin: 0; font-size: 1.05rem; }
.kpy-mission-vision { padding: 120px 0; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); position: relative; overflow: hidden; }
.kpy-mission-vision::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%); border-radius: 50%; }
.kpy-mission-vision::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%); border-radius: 50%; }
.kpy-mission-card, .kpy-vision-card { background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%); padding: 50px; border-radius: 24px; height: 100%; border: 2px solid transparent; background-clip: padding-box; position: relative; box-shadow: 0 15px 50px rgba(0,0,0,0.2); transition: all 0.4s ease; overflow: hidden; }
.kpy-mission-card::before, .kpy-vision-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, #FF6B35, #E55A2B, #FF6B35); background-size: 200% 100%; animation: gradientShift 3s ease infinite; }
.kpy-mission-card:hover, .kpy-vision-card:hover { transform: translateY(-8px); box-shadow: 0 25px 70px rgba(255,107,53,0.3); border-color: rgba(255,107,53,0.3); }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.kpy-card-title { font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, #FF6B35, #E55A2B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 25px; font-family: var(--kpy-font-heading); position: relative; }
.kpy-card-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60px; height: 4px; background: linear-gradient(90deg, #FF6B35, #E55A2B); border-radius: 2px; }
.kpy-card-content { color: #444; line-height: 1.9; font-size: 1.1rem; }
.kpy-card-content p { margin-bottom: 18px; }

/* ============================================================  SERVICES  ============================================================ */
.kpy-value-card h3, .kpy-service-detail-card h3 { font-size: 1.5rem; margin-bottom: var(--kpy-space-sm); color: var(--kpy-base); }
.kpy-service-features { list-style: none; padding: 0; margin: var(--kpy-space-md) 0; text-align: left; }
.kpy-service-features li { padding: 8px 0; display: flex; align-items: center; gap: 8px; color: var(--kpy-grey); }
.kpy-service-features li i { color: var(--kpy-secondary); }
.kpy-service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--kpy-primary); text-decoration: none; font-weight: 600; margin-top: var(--kpy-space-md); transition: all var(--kpy-transition); }
.kpy-service-link:hover { gap: 12px; color: var(--kpy-primary-dark); }
.kpy-services-overview { padding: var(--kpy-space-xl) 0; }
.kpy-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--kpy-space-lg); margin-top: var(--kpy-space-lg); }
.kpy-service-overview-card { background: var(--kpy-white); padding: var(--kpy-space-lg); border-radius: 12px; box-shadow: var(--kpy-shadow); text-align: center; transition: all var(--kpy-transition); }
.kpy-service-overview-card:hover { transform: translateY(-5px); box-shadow: var(--kpy-shadow-lg); }
.kpy-service-icon { width: 70px; height: 70px; margin: 0 auto var(--kpy-space-md); background: var(--kpy-gradient-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--kpy-white); }
.kpy-why-choose-us { padding: var(--kpy-space-xl) 0; }
.kpy-advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--kpy-space-lg); margin-top: var(--kpy-space-lg); }
.kpy-advantage-item { text-align: center; padding: var(--kpy-space-lg); }
.kpy-advantage-item i { font-size: 3rem; color: var(--kpy-primary); margin-bottom: var(--kpy-space-md); }
.kpy-advantage-item h4 { font-size: 1.25rem; margin-bottom: var(--kpy-space-sm); color: var(--kpy-base); }
.kpy-advantage-item p { color: var(--kpy-grey); line-height: 1.6; }

/* ============================================================  CONTACT  ============================================================ */
.kpy-contact-container { padding: var(--kpy-space-xl) 0; margin-top: -80px; position: relative; z-index: 2; }
.kpy-contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--kpy-space-xl); }
.kpy-contact-info-card, .kpy-contact-form-card { background: var(--kpy-white); padding: var(--kpy-space-xl); border-radius: 12px; box-shadow: var(--kpy-shadow-lg); }
.kpy-contact-info-title, .kpy-form-title { font-size: 2rem; margin-bottom: var(--kpy-space-lg); color: var(--kpy-base); position: relative; padding-bottom: 15px; }
.kpy-contact-info-title:after, .kpy-form-title:after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--kpy-gradient-primary); border-radius: 2px; }
.kpy-contact-info-item { display: flex; align-items: flex-start; gap: var(--kpy-space-md); margin-bottom: var(--kpy-space-lg); padding: var(--kpy-space-md); border-radius: 8px; transition: background var(--kpy-transition); }
.kpy-contact-info-item:hover { background: var(--kpy-bg-secondary); }
.kpy-contact-icon { width: 50px; height: 50px; background: var(--kpy-gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--kpy-white); font-size: 1.25rem; flex-shrink: 0; }
.kpy-contact-text h4 { font-size: 1.1rem; margin-bottom: 6px; color: var(--kpy-base); }
.kpy-contact-text p { margin: 0; color: var(--kpy-grey); line-height: 1.6; }
.kpy-contact-hours { margin-top: var(--kpy-space-lg); padding-top: var(--kpy-space-md); border-top: 2px solid var(--kpy-light-grey); }
.kpy-contact-hours h4 { font-size: 1.1rem; margin-bottom: var(--kpy-space-sm); color: var(--kpy-base); }
.kpy-form-subtitle { color: var(--kpy-grey); margin-bottom: var(--kpy-space-lg); line-height: 1.6; }
.kpy-form-group { margin-bottom: var(--kpy-space-md); }
.kpy-form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--kpy-base); }
.kpy-form-group label span { color: var(--kpy-primary); }
.kpy-form-group input, .kpy-form-group textarea, .kpy-form-group select { width: 100%; padding: 12px 16px; border: 2px solid var(--kpy-light-grey); border-radius: 8px; font-family: var(--kpy-font-primary); font-size: 1rem; transition: all var(--kpy-transition); }
.kpy-form-group input:focus, .kpy-form-group textarea:focus, .kpy-form-group select:focus { outline: none; border-color: var(--kpy-primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.kpy-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--kpy-space-md); }
.kpy-form-submit { margin-top: var(--kpy-space-lg); }
.kpy-contact-success-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26,32,44,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: all var(--kpy-transition); backdrop-filter: blur(5px); }
.kpy-contact-success-popup.active { opacity: 1; visibility: visible; }
.kpy-success-content { background: var(--kpy-white); padding: var(--kpy-space-xl); border-radius: 15px; text-align: center; max-width: 450px; transform: translateY(30px); transition: all var(--kpy-transition); box-shadow: var(--kpy-shadow-xl); }
.kpy-contact-success-popup.active .kpy-success-content { transform: translateY(0); }
.kpy-checkmark { width: 90px; height: 90px; margin: 0 auto var(--kpy-space-md); }
.kpy-checkmark svg { width: 100%; height: 100%; }
.kpy-success-content h3 { font-size: 1.8rem; margin-bottom: var(--kpy-space-sm); color: var(--kpy-primary); }
.kpy-success-content p { margin-bottom: var(--kpy-space-lg); color: var(--kpy-grey); line-height: 1.6; }
.kpy-close-popup { background: var(--kpy-gradient-primary); color: var(--kpy-white); border: none; padding: 12px 30px; border-radius: 8px; cursor: pointer; transition: all var(--kpy-transition); font-weight: 600; }
.kpy-close-popup:hover { transform: translateY(-2px); box-shadow: var(--kpy-shadow); }

/* ============================================================  CTA & PARTNERS  ============================================================ */
.kpy-about-cta { padding: 120px 0; background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%); position: relative; overflow: hidden; margin-bottom: 0 !important; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; }
.kpy-about-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; }
.kpy-about-cta::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; }
.kpy-about-cta .kpy-cta-content { text-align: center; position: relative; z-index: 1; }
.kpy-about-cta .kpy-cta-content h2 { font-size: 3rem; font-weight: 700; color: #ffffff; margin-bottom: 25px; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.kpy-about-cta .kpy-cta-content p { font-size: 1.3rem; color: rgba(255,255,255,0.95); margin-bottom: 35px; }
.kpy-about-cta .kpy-btn { background: #ffffff; color: #FF6B35; border: 2px solid #ffffff; padding: 18px 45px; font-size: 1.1rem; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.kpy-about-cta .kpy-btn:hover { background: transparent; color: #ffffff; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.3); }
.kpy-about-partners { padding: 120px 0; background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%); position: relative; }
.kpy-partners-content { margin-top: 50px; }
.kpy-partner-item { background: #ffffff; border-radius: 16px; padding: 30px; text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 2px solid transparent; box-shadow: 0 5px 20px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.kpy-partner-item::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent); transition: left 0.5s ease; }
.kpy-partner-item:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 15px 40px rgba(255,107,53,0.2); border-color: rgba(255,107,53,0.3); }
.kpy-partner-item:hover::before { left: 100%; }
.kpy-partner-logo { margin-bottom: 20px; padding: 20px; background: linear-gradient(135deg, #f8f9fa, #ffffff); border-radius: 12px; transition: all 0.3s ease; }
.kpy-partner-logo img { max-width: 100%; height: auto; filter: grayscale(100%) opacity(0.7); transition: all 0.4s ease; }
.kpy-partner-item:hover .kpy-partner-logo { background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.1)); }
.kpy-partner-item:hover .kpy-partner-logo img { filter: grayscale(0%) opacity(1); transform: scale(1.1); }
.kpy-partner-name { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; margin: 0; transition: color 0.3s ease; }
.kpy-partner-item:hover .kpy-partner-name { color: #FF6B35; }
.kpy-services-cta { padding: var(--kpy-space-xl) 0; background: var(--kpy-gradient-primary); color: var(--kpy-white); text-align: center; margin-bottom: 0 !important; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; }
.kpy-cta-content h2 { font-size: 2.5rem; margin-bottom: var(--kpy-space-md); color: var(--kpy-white); }
.kpy-cta-content p { font-size: 1.25rem; margin-bottom: var(--kpy-space-lg); opacity: 0.95; }
.kpy-cta-buttons { display: flex; gap: var(--kpy-space-md); justify-content: center; flex-wrap: wrap; }

/* ============================================================  RESPONSIVE  ============================================================ */
@media only screen and (max-width: 600px) {
.menu-section .logo { object-fit: contain !important; height: 70px; }
.menu-section .navbar-nav { height: 100%; display: flex; align-items: flex-start; gap: 5px; }
.menu-section .navbar-nav .nav-link { color: var(--kpy-black) !important; font-family: var(--kpy-font); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; font-size: 16px; height: 40px; display: flex; align-items: center; position: relative; transition: all 0.3s ease; padding: 0 0.5rem !important; }
.menu-section { height: 80px; position: relative; top: 0; z-index: 1000; background: #f7f7f7; display: flex; align-items: center; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 2px 10px rgba(0,0,0,0); }
.intro-image-col { display: flex; flex-direction: column; align-items: center; padding-bottom: 20px; padding-top: 0; }
.message-heading { font-size: 25px; font-weight: 400; color: var(--kpy-primary); }
.president-img img { margin-bottom: 0; height: 250px; width: 100%; max-width: 100%; object-position: top; }
.president-message-text p { margin-top: 0; margin-bottom: 16px; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #212529; }
.president-message-text { display: -webkit-box; -webkit-line-clamp: 10; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; max-height: calc(1.6em * 10); }
.message-button { display: block; padding-top: 10px; }
.rotary-content { padding: 15px; }
.rotary-header h1, .president-header h1 { font-size: 25px; }
.president-profile { flex-direction: column; justify-content: center; }
.president-photo { width: 200px; height: 200px; }
#downloads-table { border-spacing: 0; }
#downloads-table tr { display: flex; flex-direction: column; margin-bottom: 20px; }
#downloads-table td { width: 100% !important; display: block; padding: 15px; }
.member-thumbnail { margin-bottom: 15px; }
.project-image { height: 180px; }
.contact-page { margin: 20px 0; padding: 40px 0; }
.contact-form, .contact-info { padding: 25px; }
.contact-form { margin-bottom: 30px; }
.contact-info ul li strong { width: 70px; }
.map-container iframe { height: 250px; }
.footer-menus { gap: 5px; font-size: 12px; }
.footer-menus a { font-size: 12px; }
.footer-menus .social-links a { font-size: 18px; }
.donation-form-area { padding-left: 5%; padding-right: 5%; }
}
@media (max-width: 768px) {
.kpy-property-hero { min-height: 50vh; }
.kpy-property-hero-title { font-size: 2rem; }
.kpy-property-hero-location { font-size: 1rem; }
.kpy-property-hero-content { padding: 60px 0; }
.kpy-hero-title { font-size: 2.5rem; }
.kpy-slide-title h2 { font-size: 2.5rem; }
.kpy-property-grid { grid-template-columns: 1fr; }
.kpy-filter-grid { grid-template-columns: 1fr; }
.kpy-form-row { grid-template-columns: 1fr; }
.kpy-details-grid { grid-template-columns: 1fr; }
.kpy-language-switcher { right: 10px; }
.kpy-hero-curve { height: 60px; }
.kpy-menu-language-switcher { margin-right: 0.5rem; }
.kpy-menu-lang-toggle { padding: 6px 12px; font-size: 0.8rem; }
.kpy-menu-lang-flag { font-size: 1rem; }
}
@media (max-width: 1200px) {
.kpy-property-layout { grid-template-columns: 1fr; }
.kpy-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
.kpy-hero-title { font-size: 2rem; }
.kpy-contact-container { margin-top: -60px; }
.kpy-hero-curve { height: 40px; }
}


/* Footer Styles */
.kpy-footer {
    background: var(--kpy-bg-dark);
    color: var(--kpy-white);
    position: relative;
    margin-top: var(--kpy-space-xl);
}

.kpy-footer-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    display: block;
}

.kpy-footer-logo-curve-position {
    position: relative;
    z-index: 2;
    margin-top: -75px;
    margin-bottom: 30px;
    text-align: center;
}

.kpy-footer-logo-wrapper {
    display: inline-block;
    padding: 15px 25px;
    background: var(--kpy-white);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--kpy-space-md);
}

.kpy-footer-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.kpy-specialization-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--kpy-primary);
    color: var(--kpy-white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpy-footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--kpy-space-md);
    color: var(--kpy-white);
}

.kpy-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kpy-footer-links li {
    margin-bottom: 12px;
}

.kpy-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all var(--kpy-transition);
}

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

.kpy-footer-links i {
    margin-right: 8px;
    color: var(--kpy-primary);
}

.kpy-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kpy-footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
}

.kpy-footer-contact i {
    margin-right: 10px;
    color: var(--kpy-primary);
    margin-top: 4px;
}

.kpy-footer-social-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--kpy-space-md);
}

.kpy-social-links {
    display: flex;
    gap: var(--kpy-space-md);
}

.kpy-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--kpy-transition);
}

.kpy-social-link:hover {
    background: var(--kpy-primary);
    transform: translateY(-3px);
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--kpy-space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kpy-footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--kpy-transition);
}

.kpy-footer-bottom a:hover {
    color: var(--kpy-primary);
}

.kpy-footer-bottom .small {
    color: rgba(255, 255, 255, 0.7);
}

/** ==========================================================
Alpha Footer - Modern Redesign
===========================================================**/

/* Main Footer Container */
.alpha-footer {
    position: relative;
    background: #1a4a4f;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    overflow: hidden;
}

/* Remove margin-top when CTA section is present before footer */
.alpha-home-cta+.alpha-footer,
main:has(.alpha-home-cta)+.alpha-footer {
    margin-top: 0;
}

/* Top Wave Design with Teal Graphics */
.alpha-footer-top-wave {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -120px;
    overflow: hidden;
    background: #1a4a4f;
}

.alpha-footer-wave-svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Flowing Wave Graphics (exact screenshot style) */
.alpha-footer-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.alpha-footer-wave-flow {
    position: absolute;
    background: #3a7a80;
    opacity: 0.8;
}

/* Top right sweeping down and left */
.alpha-footer-wave-flow.wave-flow-1 {
    width: 600px;
    height: 400px;
    top: -150px;
    right: -100px;
    border-radius: 50% 30% 60% 40%;
    transform: rotate(-35deg);
    clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 0% 100%, 0% 30%);
}

/* Bottom left sweeping up and right */
.alpha-footer-wave-flow.wave-flow-2 {
    width: 500px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    border-radius: 40% 50% 50% 60%;
    transform: rotate(25deg);
    clip-path: polygon(0% 20%, 80% 0%, 100% 80%, 20% 100%);
}

/* Upper-middle horizontal curved band */
.alpha-footer-wave-flow.wave-flow-3 {
    width: 800px;
    height: 200px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    border-radius: 50% 50% 40% 40%;
    clip-path: ellipse(60% 50% at 50% 50%);
}

/* Main Footer Content */
.alpha-footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.alpha-footer-main .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.alpha-footer-main .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.alpha-footer-main .row>[class*="col-"] {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Brand/Logo Section */
.alpha-footer-brand {
    margin-bottom: 25px;
}

.alpha-footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.alpha-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.alpha-footer-logo-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--kpy-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.alpha-footer-logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Footer Description */
.alpha-footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 100%;
}

/* Specialization Tags */
.alpha-footer-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.alpha-specialization-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(3, 92, 92, 0.2);
    border: 1px solid rgba(3, 92, 92, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.alpha-specialization-tag:hover {
    background: rgba(3, 92, 92, 0.3);
    border-color: var(--kpy-primary);
    transform: translateY(-2px);
}

/* Footer Section Titles */
.alpha-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.alpha-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--kpy-primary);
    border-radius: 2px;
}

/* Footer Menu Links */
.alpha-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-footer-menu li {
    margin-bottom: 12px;
}

.alpha-footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.alpha-footer-menu a i {
    font-size: 16px;
    color: #fff !important;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.alpha-footer-menu a:hover {
    color: var(--kpy-primary);
    padding-left: 5px;
}

.alpha-footer-menu a:hover i {
    transform: translateX(3px);
    color: var(--kpy-primary) !important;
    opacity: 1;
}

/* Footer Get In Touch - aligned icons and content */
.alpha-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-footer-contact-item {
    margin-bottom: 1.25rem;
}

.alpha-footer-contact-item:last-child {
    margin-bottom: 0;
}

.alpha-footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--kpy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alpha-footer-contact-icon .bi {
    font-size: 1.25rem;
    color: #fff;
}

.alpha-footer-contact-content {
    flex: 1;
    min-width: 0;
}

.alpha-footer-contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alpha-footer-contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: block;
}

.alpha-footer-contact-value:hover {
    color: #fff;
}

/* Social Media Section */
.alpha-footer-social-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alpha-footer-social-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.alpha-footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.alpha-footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.alpha-footer-social-link:hover {
    background: var(--kpy-primary);
    border-color: var(--kpy-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 92, 92, 0.4);
}

/* Footer Bottom Bar */
.alpha-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 0;
}

.alpha-footer-bottom .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.alpha-footer-bottom .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.alpha-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    text-align: left;
}

.alpha-footer-copyright strong {
    color: var(--kpy-primary);
    font-weight: 600;
}

.alpha-footer-bottom-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.alpha-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.alpha-footer-bottom-links a,
.alpha-footer-bottom-center a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.alpha-footer-bottom-links a:hover,
.alpha-footer-bottom-center a:hover {
    color: var(--kpy-primary);
}

.alpha-footer-regulator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    white-space: nowrap;
}

.alpha-footer-regulator strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Footer Separator */
.alpha-footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    font-size: 14px;
}

/* LWEGATECH Credits (inline with copyright) */
.alpha-footer-credits-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}

.alpha-footer-credits-link {
    color: var(--kpy-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.alpha-footer-credits-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kpy-primary);
    transition: width 0.3s ease;
}

.alpha-footer-credits-link:hover {
    color: #fff;
}

.alpha-footer-credits-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .alpha-footer-main {
        padding: 50px 0 30px;
    }

    .alpha-footer-title {
        margin-top: 30px;
    }

    .alpha-footer-social-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .alpha-footer-social-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .alpha-footer-bottom {
        text-align: center;
    }

    .alpha-footer-bottom-center {
        justify-content: center;
        margin-top: 15px;
    }

    .alpha-footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .alpha-footer-copyright {
        text-align: center;
        margin-bottom: 10px;
    }

    .alpha-footer-credits-text {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .alpha-footer-top-wave {
        height: 60px;
        margin-top: -60px;
    }

    .alpha-footer-main {
        padding: 40px 0 25px;
    }

    .alpha-footer-logo-main {
        font-size: 28px;
    }

    .alpha-footer-description {
        max-width: 100%;
        font-size: 14px;
    }

    .alpha-footer-title {
        font-size: 16px;
        margin-top: 25px;
    }

    .alpha-footer-contact li {
        margin-bottom: 18px;
    }

    .alpha-footer-social-section {
        text-align: center;
    }

    .alpha-footer-social-text {
        margin-bottom: 15px;
    }

    .alpha-footer-social-links {
        justify-content: center;
    }

    .alpha-footer-bottom {
        text-align: center;
    }

    .alpha-footer-bottom-center {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .alpha-footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .alpha-footer-separator {
        display: none;
    }

    .alpha-footer-top-wave {
        height: 100px;
        margin-top: -100px;
    }

    .alpha-footer-wave-flow {
        opacity: 0.5;
    }
}

/**
 * Homepage Template Styles (from homepage-styles.css)
 * Inspired by Oppenheim Group - Modern, Clean, Luxury Real Estate Design
 */

/* Homepage Hero Section */
.homepage-hero {
    position: relative;
    height: 400px;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.homepage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.homepage-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 4rem 0;
}

.homepage-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fff;
}

.homepage-hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.homepage-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.homepage-hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--kpy-secondary, #2D8F47);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.homepage-hero-button:hover {
    background: var(--kpy-secondary-dark, #247539);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 143, 71, 0.3);
    color: #fff;
}

.homepage-hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
}

/* Statistics Section */
.homepage-stats {
    padding: 5rem 0;
    background: #fff;
}

.homepage-stat-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.homepage-stat-card:hover {
    transform: translateY(-5px);
}

.homepage-stat-icon {
    font-size: 2.5rem;
    color: var(--kpy-primary);
    margin-bottom: 1rem;
}

.homepage-stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.homepage-stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Featured Listings Section */
.homepage-listings {
    padding: 6rem 0;
    background: #fafafa;
}

.homepage-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.homepage-section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.homepage-section-subtitle {
    font-size: 1.125rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.homepage-listing-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.homepage-listing-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 300px;
}

.homepage-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.homepage-listing-card:hover .homepage-listing-image img {
    transform: scale(1.1);
}

.homepage-listing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.homepage-listing-card:hover .homepage-listing-overlay {
    opacity: 1;
}

.homepage-listing-price {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

.homepage-listing-content {
    padding: 1.5rem;
}

.homepage-listing-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.homepage-listing-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.homepage-listing-title a:hover {
    color: var(--kpy-primary);
}

.homepage-listing-location {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.homepage-listing-details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #999;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.homepage-listing-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.homepage-section-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.homepage-section-button:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* About Section */
.homepage-about {
    padding: 6rem 0;
    background: #fff;
}

.homepage-about-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.homepage-about-image {
    position: relative;
    overflow: hidden;
}

.homepage-about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* Services Section */
.homepage-services {
    padding: 6rem 0;
    background: #fafafa;
}

.homepage-service-card {
    background: #fff;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.homepage-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.homepage-service-icon {
    font-size: 3rem;
    color: var(--kpy-primary);
    margin-bottom: 1.5rem;
}

.homepage-service-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.homepage-service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.homepage-service-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.homepage-service-link:hover {
    color: var(--kpy-primary);
    gap: 1rem;
}

/* Testimonials Section */
.homepage-testimonials {
    padding: 6rem 0;
    background: #fff;
}

.homepage-testimonial-card {
    background: #fafafa;
    padding: 2.5rem;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.homepage-testimonial-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.homepage-testimonial-quote {
    font-size: 3rem;
    color: var(--kpy-primary);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.homepage-testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.homepage-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.homepage-testimonial-author strong {
    color: #1a1a1a;
    font-weight: 500;
}

.homepage-testimonial-author span {
    color: #999;
    font-size: 0.875rem;
}

/* Content Section */
.homepage-content {
    padding: 4rem 0;
    background: #fff;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .homepage-hero-title {
        font-size: 3rem;
    }

    .homepage-hero-description {
        font-size: 1.125rem;
    }

    .homepage-section-title {
        font-size: 2.25rem;
    }

    .homepage-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .homepage-hero {
        min-height: 70vh;
    }

    .homepage-hero-title {
        font-size: 2.25rem;
    }

    .homepage-hero-description {
        font-size: 1rem;
    }

    .homepage-section-title {
        font-size: 1.875rem;
    }

    .homepage-listing-details {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ============================================================
   Ginger Martin Style - Property Listings & Pages
   ============================================================ */

/* Featured Listings Section - Oppenheim Style */
.gm-featured-listings {
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.gm-listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gm-listings-title-group {
    flex: 1;
}

.gm-exclusive-title {
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kpy-primary);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.gm-exclusive-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--kpy-primary);
}

.gm-featured-title {
    font-family: var(--kpy-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.gm-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kpy-primary);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gm-view-all-btn:hover {
    background: var(--kpy-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

.gm-view-all-btn i {
    font-size: 1.2rem;
}

.gm-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gm-listing-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gm-listing-card:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.gm-listing-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gm-listing-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #000000;
}

.gm-listing-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 4rem;
}

.gm-listing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gm-listing-card:hover .gm-listing-image {
    transform: scale(1.1);
}

.gm-listing-info {
    padding: 25px 0;
}

.gm-listing-price {
    font-family: var(--kpy-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-decoration: underline;
    text-decoration-color: var(--kpy-primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    line-height: 1.2;
}

.gm-listing-address {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.gm-listing-specs {
    display: none !important;
}

.gm-listings-empty {
    text-align: center;
    padding: 60px 20px;
    color: #ffffff;
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .gm-featured-title {
        font-size: 2.5rem;
    }

    .gm-listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .gm-featured-listings {
        padding: 60px 0;
    }

    .gm-featured-title {
        font-size: 2rem;
    }

    .gm-listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gm-view-all-btn {
        width: 100%;
        justify-content: center;
    }

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

    .gm-listing-price {
        font-size: 1.5rem;
    }
}

/* .gm-listing-specs removed - not used in featured listings to match Oppenheim style */

/* Property Archive - Ginger Martin Style */
.gm-properties-archive {
    background: #f8f8f8;
    min-height: 100vh;
    padding-bottom: 100px;
}

.gm-listings-header-section {
    background: #ffffff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

.gm-listings-main-title {
    font-family: var(--kpy-font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: #999;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gm-search-filter-bar {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
    align-items: center;
}

.gm-search-wrapper {
    flex: 1;
    position: relative;
}

.gm-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.gm-search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--kpy-font-primary);
}

.gm-neighborhood-select {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--kpy-font-primary);
    background: #ffffff;
    min-width: 250px;
}

.gm-range-filters {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-end;
    flex-wrap: wrap;
}

.gm-filter-group {
    flex: 1;
    min-width: 250px;
}

.gm-filter-label {
    display: block;
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gm-range-slider-wrapper {
    position: relative;
}

.gm-range-slider {
    position: relative;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
}

.gm-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
}

.gm-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--kpy-primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
}

.gm-range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--kpy-primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: none;
    position: relative;
    z-index: 2;
}

.gm-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

.gm-clear-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #333;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: var(--kpy-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gm-clear-filters-btn:hover {
    background: #000;
}

.gm-properties-grid-section {
    padding: 60px 0;
}

.gm-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gm-property-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gm-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gm-property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gm-property-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
}

.gm-property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gm-property-card:hover .gm-property-image {
    transform: scale(1.05);
}

.gm-property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gm-property-details {
    padding: 25px;
}

.gm-property-address {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.gm-property-price {
    font-family: var(--kpy-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kpy-primary);
}

.gm-pagination {
    margin-top: 60px;
    text-align: center;
}

.gm-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gm-pagination .page-numbers li a,
.gm-pagination .page-numbers li span {
    display: inline-block;
    padding: 10px 15px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gm-pagination .page-numbers li a:hover,
.gm-pagination .page-numbers li .current {
    background: var(--kpy-primary);
    color: #ffffff;
}

.gm-no-properties {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Single Property - Ginger Martin Style */
.gm-single-property {
    background: #ffffff;
    min-height: 100vh;
}

/* GM Property Hero Section */
.gm-property-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

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

.gm-property-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.gm-property-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 100%;
    color: #ffffff;
    padding: 80px 0;
}

.gm-property-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gm-property-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gm-property-breadcrumb a:hover {
    opacity: 1;
}

.gm-property-breadcrumb span {
    margin: 0 8px;
    opacity: 0.7;
}

.gm-property-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gm-property-hero-location {
    font-size: 1.2rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
    margin-bottom: 20px;
}

.gm-property-hero-location i {
    font-size: 1.1rem;
}

.gm-property-hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--kpy-font-heading);
    margin-top: 15px;
}

/* Responsive styles for GM property hero */
@media (max-width: 768px) {
    .gm-property-hero {
        min-height: 50vh;
    }

    .gm-property-hero-title {
        font-size: 2rem;
    }

    .gm-property-hero-location {
        font-size: 1rem;
    }

    .gm-property-hero-price {
        font-size: 1.5rem;
    }

    .gm-property-hero-content {
        padding: 60px 0;
    }

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

    .gm-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gm-property-gallery-section {
    padding: 0;
    background: #ffffff;
}

.gm-gallery-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-gallery-main {
    position: relative;
}

.gm-main-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gm-main-image-wrapper:hover {
    transform: scale(1.02);
}

.gm-main-image-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.gm-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gm-main-image-wrapper:hover .gm-main-image {
    transform: scale(1.05);
}

.gm-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-primary);
    font-size: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.gm-video-play-btn:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

.gm-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gm-thumb-link {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
    display: block;
    border-radius: 4px;
}

.gm-thumb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gm-thumb-link:hover .gm-thumb-image {
    transform: scale(1.1);
}

.gm-thumb-placeholder {
    width: 100%;
    padding-top: 75%;
    background: #f0f0f0;
    border-radius: 4px;
}

.gm-property-details-header {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.gm-property-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    flex-wrap: wrap;
}

.gm-property-price {
    font-family: var(--kpy-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--kpy-primary);
    flex: 0 0 auto;
}

.gm-property-address {
    font-size: 1.1rem;
    color: #333;
    flex: 1;
    min-width: 200px;
}

.gm-property-specs {
    display: flex;
    gap: 30px;
    flex: 0 0 auto;
}

.gm-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #666;
}

.gm-spec-item i {
    color: var(--kpy-primary);
    font-size: 1.2rem;
}

.gm-property-nav {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.gm-nav-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gm-nav-arrow:hover {
    background: var(--kpy-primary);
    color: #ffffff;
}

.gm-property-content-section {
    padding: 60px 0;
    background: #ffffff;
}

.gm-content-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.gm-tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.gm-tab-btn:hover,
.gm-tab-btn.active {
    color: var(--kpy-primary);
    border-bottom-color: var(--kpy-primary);
}

.gm-tab-content {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-tab-content.active {
    display: block;
}

.gm-branding {
    margin-bottom: 40px;
}

.gm-brand-name {
    font-family: var(--kpy-font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.gm-section-title {
    font-family: var(--kpy-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.gm-subsection-title {
    font-family: var(--kpy-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gm-property-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
}

.gm-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
}

.gm-overview-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.gm-overview-label {
    font-weight: 600;
    color: #333;
}

.gm-overview-value {
    color: #666;
}

.gm-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
}

.gm-feature-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.gm-feature-label {
    font-weight: 600;
    color: #333;
}

.gm-feature-value {
    color: #666;
    text-align: right;
}

/* Sticky Connect Button */
.gm-connect-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #333;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--kpy-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gm-connect-sticky:hover {
    background: var(--kpy-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gm-listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

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

    .gm-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .gm-featured-title {
        font-size: 2.5rem;
    }

    .gm-listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gm-search-filter-bar {
        flex-direction: column;
    }

    .gm-range-filters {
        flex-direction: column;
    }

    .gm-properties-grid {
        grid-template-columns: 1fr;
    }

    .gm-property-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .gm-content-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .gm-overview-grid,
    .gm-features-grid {
        grid-template-columns: 1fr;
    }

    .gm-connect-sticky {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.75rem;
    }
}

/* ============================================================
   Partners Carousel Section - Footer
   ============================================================ */

.kpy-partners-carousel-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 0;
}

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

.kpy-partners-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.kpy-partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll-partners linear infinite;
    will-change: transform;
    --partners-speed: 30;
}

.kpy-partners-track[data-speed] {
    animation-duration: calc(var(--partners-speed) * 1s);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.kpy-partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.kpy-partner-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.kpy-partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kpy-partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.kpy-partner-item:hover .kpy-partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Pause animation on hover */
.kpy-partners-wrapper:hover .kpy-partners-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kpy-partners-carousel-section {
        padding: 40px 0;
    }

    .kpy-partner-item {
        width: 150px;
        height: 90px;
        padding: 15px;
    }

    .kpy-partners-track {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .kpy-partner-item {
        width: 120px;
        height: 70px;
        padding: 10px;
    }

    .kpy-partners-track {
        gap: 30px;
    }
}

/* ============================================================
   Oppenheim Group Style Templates
   ============================================================ */

/* About Page - Oppenheim Style */
.og-about-page {
    background: #ffffff;
}

.og-about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.og-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.og-hero-text-col {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
}

.og-hero-text-content {
    width: 100%;
}

.og-hero-large-text {
    font-family: var(--kpy-font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--kpy-primary);
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.og-hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 300;
}

.og-hero-image-col {
    position: relative;
    z-index: 2;
    padding: 0;
}

.og-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

.og-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.og-hero-nav:hover {
    background: var(--kpy-primary);
    color: #ffffff;
}

.og-hero-nav-prev {
    left: 30px;
}

.og-hero-nav-next {
    right: 30px;
}

/* ============================================================
   Inner Page Hero Section (for page.php)
   ============================================================ */

.inner-page-hero {
    position: relative !important;
    height: 520px !important;
    min-height: 520px !important;
    width: 100% !important;
    display: block !important;
    overflow: visible !important;
    background-color: #1a1a1a !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: both !important;
    margin-bottom: 100px !important;
}

.inner-page-hero .container-fluid {
    height: 100% !important;
    min-height: 520px !important;
    position: relative;
    z-index: 2;
}

.inner-page-hero .row {
    height: 100% !important;
    min-height: 520px !important;
    margin: 0 !important;
}

.inner-hero-bg-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.kenburns-effect {
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-3%, -3%);
    }
}

.inner-hero-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 1;
    pointer-events: none;
}

/* For the V-shaped inner-page-hero, hide the old full-height green overlay */
.inner-page-hero .inner-hero-green-overlay {
    display: none !important;
}

/* V-shaped hero: full image hero clipped to a V at the bottom */
.inner-page-hero {
    background-color: #1a1a1a !important;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.inner-hero-bg-image {
    top: 0;
    bottom: auto;
    height: 100% !important;
    clip-path: none;
}

.inner-hero-scroll-trigger {
    position: absolute;
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 3;
}

.inner-hero-scroll-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid var(--kpy-primary);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: inner-scroll-pulse 2.4s ease-in-out infinite;
}

.inner-hero-scroll-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--kpy-primary);
}

.inner-hero-scroll-trigger:hover .inner-hero-scroll-circle {
    box-shadow: 0 6px 14px rgba(3, 92, 92, 0.35);
}

@keyframes inner-scroll-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 92, 92, 0.4);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 12px rgba(3, 92, 92, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 92, 92, 0);
    }
}

/* Folded Paper Banner Hero Section - Starts at bottom and extends upward */
.inner-hero-folded-banner-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    pointer-events: none;
}

.inner-hero-folded-banner-wrapper * {
    pointer-events: auto;
}

.inner-hero-angular-banner {
    position: relative;
    background: linear-gradient(135deg, #035c5c 0%, #047a7a 25%, #035c5c 50%, #024949 75%, #035c5c 100%) !important;
    padding: 3.5rem 6rem !important;
    max-width: 85% !important;
    text-align: center;
    /* Green ribbon with scissor-cut ends: V-cut notches on left and right */
    clip-path: polygon(
            /* Left scissor-cut end */
            0% 25%,
            10% 0%,
            12% 8%,
            10% 15%,
            0% 30%,
            /* Left side straight */
            0% 70%,
            /* Left bottom scissor-cut */
            10% 85%,
            12% 92%,
            10% 100%,
            0% 75%,
            /* Bottom edge straight */
            100% 75%,
            /* Right bottom scissor-cut */
            90% 100%,
            88% 92%,
            90% 85%,
            100% 70%,
            /* Right side straight */
            100% 30%,
            /* Right top scissor-cut */
            90% 15%,
            88% 8%,
            90% 0%,
            100% 25%,
            /* Top edge straight back to start */
            0% 25%) !important;
    transform: translateY(0) !important;
    box-shadow:
        0 -8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 0 !important;
    /* Extend upward to overlap hero section - starts at bottom edge and extends up */
    margin-top: -100px !important;
    /* Metallic ribbon shine effect */
    background-size: 200% 200% !important;
    animation: ribbonShine 3s ease-in-out infinite !important;
}

@keyframes ribbonShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.inner-hero-angular-banner .inner-hero-large-text {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 1.25rem 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-family: 'Open Sans', sans-serif !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    font-family: 'Open Sans', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.3s !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb a:hover {
    opacity: 1 !important;
    text-decoration: underline !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb span {
    color: #ffffff !important;
    margin: 0 12px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    opacity: 0.8 !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb span:last-child {
    color: #ffffff !important;
    margin: 0 !important;
}

/* Responsive adjustments for folded banner */
@media (max-width: 768px) {
    .inner-hero-angular-banner {
        padding: 2.5rem 4rem !important;
        max-width: 92% !important;
        margin-top: -60px !important;
        clip-path: polygon(
                /* Left scissor-cut end */
                0% 25%,
                10% 0%,
                12% 8%,
                10% 15%,
                0% 30%,
                /* Left side straight */
                0% 70%,
                /* Left bottom scissor-cut */
                10% 85%,
                12% 92%,
                10% 100%,
                0% 75%,
                /* Bottom edge straight */
                100% 75%,
                /* Right bottom scissor-cut */
                90% 100%,
                88% 92%,
                90% 85%,
                100% 70%,
                /* Right side straight */
                100% 30%,
                /* Right top scissor-cut */
                90% 15%,
                88% 8%,
                90% 0%,
                100% 25%,
                /* Top edge straight back to start */
                0% 25%) !important;
    }

    .inner-hero-angular-banner .inner-hero-large-text {
        font-size: 2.5rem !important;
        letter-spacing: 1.5px !important;
    }

    .inner-hero-angular-banner .inner-hero-breadcrumb {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .inner-hero-angular-banner {
        padding: 2rem 2.5rem !important;
        max-width: 95% !important;
        margin-top: -40px !important;
        clip-path: polygon(
                /* Left scissor-cut end */
                0% 25%,
                10% 0%,
                12% 8%,
                10% 15%,
                0% 30%,
                /* Left side straight */
                0% 70%,
                /* Left bottom scissor-cut */
                10% 85%,
                12% 92%,
                10% 100%,
                0% 75%,
                /* Bottom edge straight */
                100% 75%,
                /* Right bottom scissor-cut */
                90% 100%,
                88% 92%,
                90% 85%,
                100% 70%,
                /* Right side straight */
                100% 30%,
                /* Right top scissor-cut */
                90% 15%,
                88% 8%,
                90% 0%,
                100% 25%,
                /* Top edge straight back to start */
                0% 25%) !important;
    }

    .inner-hero-angular-banner .inner-hero-large-text {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 1px !important;
    }

    .inner-hero-angular-banner .inner-hero-breadcrumb {
        font-size: 0.9rem !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
    }

    .inner-hero-angular-banner .inner-hero-breadcrumb span {
        margin: 0 !important;
    }
}

/* New Hero Section with Green Overlay - Page Title and Excerpt Only */
.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-page-title {
    font-size: 2.6rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 1.5rem 0 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-family: 'Open Sans', sans-serif !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.inner-hero-page-excerpt {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-family: 'Open Sans', sans-serif !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.95 !important;
}

.inner-hero-green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 92, 92, 0.75), rgba(3, 92, 92, 0.3), transparent);
    z-index: 1;
}

/* Responsive adjustments for new hero section */
@media (max-width: 992px) {
    .inner-hero-content {
        max-width: 500px !important;
        padding-left: 40px !important;
    }

    .inner-hero-page-title {
        font-size: 2.75rem !important;
    }

    .inner-hero-page-excerpt {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: 400px !important;
        min-height: 400px !important;
    }

    .inner-hero-content {
        max-width: 100% !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .inner-hero-page-title {
        font-size: 2.25rem !important;
        margin-bottom: 1rem !important;
    }

    .inner-hero-page-excerpt {
        font-size: 1rem !important;
    }

    .inner-hero-green-overlay {
        width: 60% !important;
    }
}

@media (max-width: 576px) {
    .inner-page-hero {
        height: 350px !important;
        min-height: 350px !important;
    }

    .inner-hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .inner-hero-page-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .inner-hero-page-excerpt {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .inner-hero-green-overlay {
        width: 70% !important;
    }
}

/* ============================================================
   Events Archive Page (archive-events.php)
   ============================================================ */
.events-archive-page .inner-hero-content {
    text-align: left;
}

.events-archive-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.events-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.events-archive-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(3, 92, 92, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.events-archive-card:hover {
    box-shadow: 0 12px 40px rgba(3, 92, 92, 0.12);
    transform: translateY(-4px);
}

.events-archive-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.events-archive-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e8ecef;
}

.events-archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.events-archive-card:hover .events-archive-img {
    transform: scale(1.05);
}

.events-archive-card-date-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--kpy-primary, #035c5c);
    color: #fff;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(3, 92, 92, 0.35);
}

.events-archive-card-date-badge i {
    font-size: 1rem;
}

.events-archive-card-body {
    padding: 1.5rem 1.25rem;
}

.events-archive-card-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.events-archive-card:hover .events-archive-card-title {
    color: var(--kpy-primary, #035c5c);
}

.events-archive-card-location,
.events-archive-card-time {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.events-archive-card-location i,
.events-archive-card-time i {
    color: var(--kpy-primary, #035c5c);
    flex-shrink: 0;
}

.events-archive-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kpy-primary, #035c5c);
    transition: gap 0.25s ease;
}

.events-archive-card:hover .events-archive-card-cta {
    gap: 0.6rem;
}

.events-archive-card-cta i {
    font-size: 1rem;
}

/* Events archive pagination */
.events-archive-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.events-archive-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.events-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.events-archive-pagination .page-numbers:hover,
.events-archive-pagination .page-numbers.current {
    background: var(--kpy-primary, #035c5c);
    color: #fff;
    border-color: var(--kpy-primary, #035c5c);
}

.events-archive-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

.events-archive-pagination .page-numbers.dots:hover {
    background: transparent;
    color: #333;
}

/* Events archive empty state */
.events-archive-empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.events-archive-empty-icon {
    font-size: 4rem;
    color: var(--kpy-primary, #035c5c);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.events-archive-empty-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.75rem;
}

.events-archive-empty-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   Single Event Page
   ============================================================ */
.single-event-page .single-event-hero .inner-hero-green-overlay {
    display: block !important;
}

.single-event-hero-inner {
    max-width: 100%;
}

.single-event-hero-top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.single-event-hero-breadcrumb {
    font-size: 0.95rem;
    font-weight: 500;
}

.single-event-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.single-event-hero-breadcrumb a:hover {
    opacity: 0.85;
}

.single-event-hero-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.single-event-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--kpy-primary, #035c5c);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(3, 92, 92, 0.4);
}

.single-event-scroll-btn {
    flex-shrink: 0;
}

/* Single event content section */
.single-event-content {
    padding: 3.5rem 0 4rem;
    background: #fff;
}

.single-event-article {
    margin: 0;
}

.single-event-header {
    margin-bottom: 2rem;
}

.single-event-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.single-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.single-event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: #555;
}

.single-event-meta-item i {
    color: var(--kpy-primary, #035c5c);
    font-size: 1.1rem;
}

.single-event-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-height: 260px;
}

.single-event-img {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    object-fit: cover;
}

.single-event-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
}

.single-event-body p {
    margin-bottom: 1.25rem;
}

.single-event-body p:last-child {
    margin-bottom: 0;
}

.single-event-share {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.single-event-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.single-event-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.single-event-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.single-event-share-btn:hover {
    background: var(--kpy-primary, #035c5c);
    color: #fff;
}

.single-event-sidebar {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eee;
}

.single-event-sidebar-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kpy-primary, #035c5c);
}

.single-event-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-event-related-item a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.single-event-related-item:last-child a {
    border-bottom: none;
}

.single-event-related-item a:hover {
    background: rgba(3, 92, 92, 0.06);
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
}

.single-event-related-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.single-event-related-body {
    flex: 1;
    min-width: 0;
}

.single-event-related-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.single-event-related-item a:hover .single-event-related-title {
    color: var(--kpy-primary, #035c5c);
}

.single-event-related-date,
.single-event-related-location {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.single-event-related-date i,
.single-event-related-location i {
    margin-right: 0.25rem;
    color: var(--kpy-primary, #035c5c);
}

.single-event-related-empty {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .single-event-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-event-content {
        padding: 2.5rem 0 3rem;
    }

    .single-event-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .events-archive-section {
        padding: 3rem 0 4rem;
    }

    .events-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .events-archive-card-image {
        height: 200px;
    }

    .events-archive-card-body {
        padding: 1.25rem 1rem;
    }

    .events-archive-card-title {
        font-size: 1.15rem;
    }
}

.inner-hero-text-col {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.6) !important;
    height: 100% !important;
    min-height: 400px !important;
    width: 33.333333% !important;
}

.inner-hero-text-content {
    width: 100%;
}

.inner-hero-large-text {
    font-family: var(--kpy-font-heading, 'Arial', sans-serif);
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--kpy-primary, #FF6B35) !important;
    line-height: 1.1;
    margin: 0 0 20px 0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.inner-hero-breadcrumb {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

.inner-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.inner-hero-breadcrumb a:hover {
    opacity: 0.8;
}

.inner-hero-breadcrumb span {
    margin: 0 8px;
    color: #ffffff;
}

.inner-hero-image-col {
    position: relative !important;
    z-index: 1 !important;
    padding: 0 !important;
    height: 100% !important;
    min-height: 400px !important;
    width: 66.666667% !important;
}

@media (max-width: 992px) {
    .inner-hero-large-text {
        font-size: 1.75rem;
    }

    .inner-hero-text-col {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: 300px;
        min-height: 300px;
    }

    .inner-hero-large-text {
        font-size: 1.5rem;
    }

    .inner-hero-text-col {
        padding: 20px 30px;
        background: rgba(0, 0, 0, 0.7);
        min-height: 300px;
    }

    .inner-hero-image-col {
        min-height: 300px;
    }
}

.og-about-description {
    padding: 80px 0;
    background: #ffffff;
}

.og-description-content {
    max-width: 900px;
    margin: 0 auto;
}

.og-description-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 40px;
}

.og-description-text p {
    margin-bottom: 20px;
}

.og-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kpy-primary);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.og-learn-more-btn:hover {
    background: var(--kpy-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.og-about-features {
    padding: 0;
    background: #f8f8f8;
}

.og-feature-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.og-feature-item:hover {
    transform: translateY(-5px);
}

.og-feature-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.og-feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.og-feature-content {
    padding: 40px 30px;
    background: #ffffff;
}

.og-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.og-feature-title {
    font-family: var(--kpy-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.og-feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.og-about-stats {
    padding: 80px 0;
    background: #ffffff;
}

.og-stat-item {
    text-align: center;
}

.og-stat-number {
    font-family: var(--kpy-font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--kpy-primary);
    line-height: 1;
    margin-bottom: 15px;
}

.og-stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.og-about-cta {
    padding: 80px 0;
    background: #f8f8f8;
}

.og-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.og-cta-title {
    font-family: var(--kpy-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.og-cta-text {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 40px 0;
}

.og-cta-btn {
    display: inline-block;
    background: var(--kpy-primary);
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 20px 0 20px;
    transition: all 0.3s ease;
}

.og-cta-btn:hover {
    background: var(--kpy-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Service Pages - Individual */
.og-service-page {
    background: #ffffff;
}

.og-service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.og-service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.og-service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 60px 20px;
}

.og-service-hero-title {
    font-family: var(--kpy-font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.og-service-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
}

.og-service-content {
    padding: 80px 0;
    background: #ffffff;
}

.og-service-main-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.og-service-main-content p {
    margin-bottom: 20px;
}

.og-service-features {
    padding: 80px 0;
    background: #f8f8f8;
}

.og-section-title {
    font-family: var(--kpy-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.og-feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.og-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.og-feature-card-icon {
    width: 70px;
    height: 70px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.og-feature-card h3 {
    font-family: var(--kpy-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.og-feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    flex: 1;
}

.og-service-properties {
    padding: 80px 0;
    background: #ffffff;
}

.og-service-property-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.og-service-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.og-service-property-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.og-service-property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.og-service-property-card:hover .og-service-property-image img {
    transform: scale(1.1);
}

.og-service-property-info {
    padding: 25px;
}

.og-service-property-price {
    font-family: var(--kpy-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin-bottom: 10px;
}

.og-service-property-size {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.og-service-property-address {
    font-size: 1rem;
    color: #333;
}

.og-view-all-btn {
    display: inline-block;
    background: transparent;
    color: var(--kpy-primary);
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--kpy-primary);
    transition: all 0.3s ease;
}

.og-view-all-btn:hover {
    background: var(--kpy-primary);
    color: #ffffff;
}

.og-service-cta {
    padding: 80px 0;
    background: #f8f8f8;
}

/* Services Overview Page */
.og-services-page {
    background: #ffffff;
}

.og-services-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.og-services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.og-services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 60px 20px;
}

.og-services-hero-title {
    font-family: var(--kpy-font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.og-services-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
}

.og-services-content {
    padding: 80px 0;
    background: #ffffff;
}

.og-services-main-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.og-services-grid-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.og-service-card-wrapper {
    margin-bottom: 30px;
}

.og-service-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.og-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.og-service-card-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.og-service-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.og-service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.og-service-card-title {
    font-family: var(--kpy-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.og-service-card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
    flex: 1;
}

.og-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kpy-primary);
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.og-service-card:hover .og-service-card-link {
    gap: 12px;
}

.og-services-advantages {
    padding: 80px 0;
    background: #ffffff;
}

.og-advantage-card {
    text-align: center;
    padding: 30px 20px;
}

.og-advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.og-advantage-card h4 {
    font-family: var(--kpy-font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.og-advantage-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.og-services-cta {
    padding: 80px 0;
    background: #f8f8f8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .og-hero-large-text {
        font-size: 4rem;
    }

    .og-service-hero-title,
    .og-services-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .og-hero-text-col {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        min-height: auto;
        padding: 60px 40px;
    }

    .og-hero-large-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        font-size: 3.5rem;
    }

    .og-hero-image-col {
        min-height: 50vh;
    }

    .og-hero-image-wrapper {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .og-hero-large-text {
        font-size: 2.5rem;
    }

    .og-service-hero-title,
    .og-services-hero-title {
        font-size: 2rem;
    }

    .og-section-title {
        font-size: 2rem;
    }

    .og-stat-number {
        font-size: 3rem;
    }

    .og-cta-title {
        font-size: 2rem;
    }

    .og-hero-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .og-hero-nav-prev {
        left: 15px;
    }

    .og-hero-nav-next {
        right: 15px;
    }
}

/* Homepage Property Search Section */
.homepage-property-search {
    padding: 0;
    margin-top: -180px;
    position: relative;
    z-index: 10;
    background: transparent;
}

.homepage-search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.homepage-search-title {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.homepage-search-subtitle {
    font-size: 1.1rem;
    color: var(--kpy-grey, #718096);
}

.homepage-search-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.homepage-search-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.homepage-search-form .form-control:focus {
    border-color: var(--kpy-primary, #FF6B35);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Homepage Neighborhoods Section */
.homepage-neighborhoods {
    padding: 5rem 0;
    background: #ffffff;
}

.homepage-neighborhood-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.homepage-neighborhood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.homepage-neighborhood-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.homepage-neighborhood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.homepage-neighborhood-card:hover .homepage-neighborhood-image img {
    transform: scale(1.1);
}

.homepage-neighborhood-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.homepage-neighborhood-content h3 {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.homepage-neighborhood-content p {
    color: var(--kpy-grey, #718096);
    margin-bottom: 1rem;
    flex: 1;
}

.homepage-neighborhood-count {
    color: var(--kpy-primary, #035c5c);
    font-weight: 600;
    margin-bottom: 1rem;
}

.homepage-neighborhood-link {
    color: var(--kpy-secondary, #2D8F47);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.homepage-neighborhood-link:hover {
    color: var(--kpy-secondary-dark, #247539);
    gap: 0.75rem;
}

/* Homepage Why Choose Us Section */
.homepage-why-choose {
    padding: 5rem 0;
    background: #f8f9fa;
}

.homepage-why-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.homepage-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.homepage-why-icon {
    width: 80px;
    height: 80px;
    background: var(--kpy-secondary, #2D8F47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 2rem;
}

.homepage-why-card h3 {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.homepage-why-card p {
    color: var(--kpy-grey, #718096);
    line-height: 1.6;
    margin: 0;
}

/* Homepage Property Types Section */
.homepage-property-types {
    padding: 5rem 0;
    background: #ffffff;
}

.homepage-type-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.homepage-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.homepage-type-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.homepage-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.homepage-type-card:hover .homepage-type-image img {
    transform: scale(1.1);
}

.homepage-type-content {
    padding: 1.5rem;
    text-align: center;
}

.homepage-type-content h3 {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.homepage-type-content p {
    color: var(--kpy-grey, #718096);
    margin: 0;
}

/* Homepage Market Insights Section */
.homepage-market-insights {
    padding: 5rem 0;
    background: #f8f9fa;
}

.homepage-insights-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--kpy-grey, #718096);
    margin-bottom: 2rem;
}

.homepage-insights-posts {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.homepage-insights-posts h3 {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.homepage-insights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.homepage-insight-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.homepage-insight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.homepage-insight-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.homepage-insight-item h4 {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.homepage-insight-item:hover h4 {
    color: var(--kpy-primary, #035c5c);
}

.homepage-insight-date {
    font-size: 0.9rem;
    color: var(--kpy-grey, #718096);
}

@media (max-width: 768px) {
    .homepage-search-title {
        font-size: 2rem;
    }

    .homepage-neighborhood-card,
    .homepage-type-card {
        margin-bottom: 2rem;
    }
}

/* Homepage CTA Parallax Section */
.homepage-cta-parallax {
    position: relative;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('https://lwegatech.net/alpha/wp-content/uploads/2026/01/alpha1.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.homepage-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 92, 92, 0.75) 0%, rgba(4, 122, 122, 0.6) 50%, rgba(2, 74, 74, 0.75) 100%);
}

.homepage-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 60px 20px;
}

.homepage-cta-title {
    font-family: var(--kpy-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.homepage-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.homepage-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--kpy-primary, #035c5c);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0 20px 0 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.homepage-cta-button:hover {
    background: var(--alpha-green-75);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.4);
}


/* Concierge Page Styles */
.kpy-concierge-page {
    padding-top: 0;
}

.kpy-concierge-intro {
    padding: 60px 0;
}

.kpy-concierge-services,
.kpy-concierge-features {
    padding: 80px 0;
}

.kpy-concierge-services {
    background: #ffffff;
}

.kpy-concierge-features {
    background: #f8f9fa;
}

.kpy-concierge-service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.kpy-concierge-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kpy-service-icon {
    width: 60px;
    height: 60px;
    background: var(--kpy-primary, #035c5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.kpy-service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.kpy-concierge-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.kpy-concierge-feature-item {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.kpy-concierge-feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.kpy-concierge-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--kpy-primary, #FF6B35) 0%, var(--kpy-primary-dark, #e55a2b) 100%);
    color: #ffffff;
    text-align: center;
    margin-bottom: 0 !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.kpy-concierge-cta h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.kpy-concierge-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* List with Us Page Styles */
.kpy-list-with-us-page {
    padding-top: 0;
}

.kpy-list-intro {
    padding: 60px 0;
    background: #ffffff;
}

.kpy-list-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.kpy-list-process {
    padding: 80px 0;
    background: #ffffff;
}

.kpy-list-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.kpy-benefit-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}

.kpy-benefit-card:hover {
    transform: translateY(-5px);
}

.kpy-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--kpy-primary, #035c5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.kpy-benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.kpy-benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.kpy-process-timeline {
    max-width: 800px;
    margin: 40px auto 0;
}

.kpy-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.kpy-process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: #e0e0e0;
}

.kpy-process-step:last-child::before {
    display: none;
}

.kpy-process-number {
    width: 60px;
    height: 60px;
    background: var(--kpy-primary, #035c5c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
}

.kpy-process-content {
    flex: 1;
}

.kpy-process-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.kpy-list-form-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.kpy-list-form-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #1a1a1a;
}

/* Our Agents Shortcode Styles */
.kpy-our-agents-section {
    padding: 40px 0;
}

.kpy-agent-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.kpy-agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kpy-agent-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.kpy-agent-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kpy-agent-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpy-agent-placeholder i {
    font-size: 4rem;
    color: #ccc;
}

.kpy-agent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kpy-agent-card:hover .kpy-agent-overlay {
    opacity: 1;
}

.kpy-agent-social {
    display: flex;
    gap: 15px;
}

.kpy-agent-social-link {
    width: 40px;
    height: 40px;
    background: var(--kpy-primary, #035c5c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.kpy-agent-social-link:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.kpy-agent-info {
    padding: 25px;
    text-align: center;
}

.kpy-agent-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.kpy-agent-designation {
    font-size: 0.9rem;
    color: var(--kpy-primary, #035c5c);
    margin-bottom: 10px;
    font-weight: 500;
}

.kpy-agent-bio {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.kpy-agent-link {
    color: var(--kpy-primary, #035c5c);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.kpy-agent-link:hover {
    color: var(--kpy-primary-dark, #e55a2b);
}

.kpy-no-agents {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Concierge Services List Grid */
.kpy-concierge-services-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.kpy-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.kpy-service-item {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.kpy-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--kpy-primary, #FF6B35);
}

.kpy-service-item h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Concierge Gallery */
.kpy-concierge-gallery {
    padding: 80px 0;
    background: #ffffff;
}

.kpy-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.kpy-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.kpy-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kpy-gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================================================
   COMPREHENSIVE FIXES - SIDEBAR, CTA, HERO, PAGE DESIGNS
   ========================================================== */

/* Sidebar Improvements - Bold Headings, Even Spacing */
.sidebar,
.sidebar-widget {
    padding: 0;
    margin: 0;
}

.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar-widget h2,
.sidebar-widget h3,
.sidebar-widget h4,
.widget-title {
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    color: var(--kpy-base) !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-widget:first-child h2,
.sidebar-widget:first-child h3,
.sidebar-widget:first-child h4,
.sidebar-widget:first-child .widget-title {
    margin-top: 0 !important;
}

.sidebar ul,
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar li,
.sidebar-widget li {
    padding: 0.875rem 1rem;
    margin: 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: var(--kpy-bg-secondary);
    border-radius: 4px;
}

.sidebar li:hover,
.sidebar-widget li:hover {
    background: rgba(3, 92, 92, 0.1);
    border-left-color: var(--kpy-primary);
    padding-left: 1.25rem;
    transform: translateX(5px);
}

.sidebar a,
.sidebar-widget a {
    color: var(--kpy-grey);
    text-decoration: none;
    display: block;
    width: 100%;
    transition: color 0.3s ease;
}

.sidebar a:hover,
.sidebar-widget a:hover {
    color: var(--kpy-primary);
}

.sidebar .widget {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--kpy-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Reduce Hero Section Padding */
.inner-hero-section,
.page-hero,
.hero-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.inner-hero-section+*,
.page-hero+*,
.hero-section+* {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* CTA Sections - Touch Footer, Parallax Effect */
.kpy-about-cta,
.kpy-services-cta,
.kpy-concierge-cta,
.og-about-cta,
.og-service-cta,
.homepage-cta-parallax {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.kpy-footer {
    margin-top: 0 !important;
}

/* All CTA sections should have parallax background support */
.kpy-about-cta[data-parallax],
.kpy-services-cta[data-parallax],
.kpy-concierge-cta[data-parallax],
.og-about-cta[data-parallax],
.og-service-cta[data-parallax] {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Modern Real Estate Page Design Improvements */
/* Remove excessive padding and improve spacing */
.homepage-template>section,
.kpy-concierge-page>section,
.kpy-about-page>section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.homepage-template>section:first-of-type {
    padding-top: 2rem !important;
}

/* Enhanced Card Designs - Luxury Real Estate Style */
.homepage-service-card,
.kpy-concierge-service-card,
.kpy-benefit-card,
.kpy-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.homepage-service-card::before,
.kpy-concierge-service-card::before,
.kpy-benefit-card::before,
.kpy-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.homepage-service-card:hover,
.kpy-concierge-service-card:hover,
.kpy-benefit-card:hover,
.kpy-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 92, 92, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.homepage-service-card:hover::before,
.kpy-concierge-service-card:hover::before,
.kpy-benefit-card:hover::before,
.kpy-feature-card:hover::before {
    transform: scaleX(1);
}

/* Icon Improvements */
.homepage-service-icon,
.kpy-concierge-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.homepage-service-card:hover .homepage-service-icon,
.kpy-concierge-service-card:hover .kpy-concierge-service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.homepage-service-icon i,
.kpy-concierge-service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Typography Improvements */
.homepage-section-title,
.kpy-section-title {
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.homepage-section-subtitle,
.kpy-section-subtitle {
    font-size: 1.2rem !important;
    color: var(--kpy-grey) !important;
    margin-bottom: 3rem !important;
}

/* Statistics Cards - Modern Design */
.homepage-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.homepage-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
    transform: scale(0);
}

.homepage-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--kpy-primary);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.homepage-stat-card:hover::before {
    transform: scale(1);
}

.homepage-stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.homepage-stat-card:hover .homepage-stat-icon {
    transform: rotate(360deg) scale(1.1);
}

.homepage-stat-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.homepage-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 0.5rem;
    font-family: var(--kpy-font-heading);
}

.homepage-stat-label {
    font-size: 1rem;
    color: var(--kpy-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Responsive Improvements */
@media (max-width: 768px) {

    .sidebar h2,
    .sidebar h3,
    .sidebar h4,
    .sidebar-widget h2,
    .sidebar-widget h3,
    .sidebar-widget h4,
    .widget-title {
        font-size: 1.2rem !important;
    }

    .homepage-section-title,
    .kpy-section-title {
        font-size: 2rem !important;
    }

    .homepage-stat-card,
    .homepage-service-card,
    .kpy-concierge-service-card {
        padding: 1.5rem;
    }
}

/* Ensure footer touches CTA */
.kpy-footer-top-curve {
    margin-top: 0 !important;
}

/* Additional OG CTA fixes */
.og-about-cta,
.og-service-cta {
    margin-bottom: 0 !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================================
   IMPROVED BLOG/NEWS/GALLERY ARCHIVE & SINGLE POST STYLES
   ========================================================== */

/* Category Archive Improvements */
.category-archive-page {
    background: #ffffff;
}

.category-hero {
    position: relative;
    overflow: hidden;
}

.category-hero-title {
    font-family: var(--kpy-font-heading);
}

.category-content-section {
    padding: 60px 0;
}

/* Modern Gallery Grid */
.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.modern-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
}

.modern-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.modern-gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-card-content {
    padding: 1.5rem;
    background: #ffffff;
}

.gallery-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kpy-base);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    font-family: var(--kpy-font-heading);
}

.gallery-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--kpy-grey);
    font-size: 0.9rem;
}

/* Modern News/Blog Grid */

.archive-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 1.5rem;
    font-family: var(--kpy-font-heading);
}

.archive-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--kpy-grey);
    margin-bottom: 2rem;
}

.archive-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.archive-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.archive-feature-item i {
    color: var(--kpy-primary);
    font-size: 1.2rem;
}

.archive-stats {
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    padding: 3rem;
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--kpy-font-heading);
}

.stat-label {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Category Pagination */
.category-pagination {
    margin-top: 4rem;
    text-align: center;
}

.category-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-pagination .page-numbers li {
    margin: 0;
}

.category-pagination .page-numbers a,
.category-pagination .page-numbers span {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    color: var(--kpy-base);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--kpy-light-grey);
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-pagination .page-numbers a:hover,
.category-pagination .page-numbers .current {
    background: var(--kpy-primary);
    color: #ffffff;
    border-color: var(--kpy-primary);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .category-hero-title {
        font-size: 2rem !important;
    }

    .media-section-title {
        font-size: 2rem !important;
    }

    .modern-gallery-grid,
    .modern-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .archive-features {
        grid-template-columns: 1fr;
    }

    .archive-intro-title {
        font-size: 2rem !important;
    }

    .stat-number {
        font-size: 3rem !important;
    }

    .single-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   COMPREHENSIVE PAGE REDESIGN - MODERN STYLES
   ============================================ */

/* About Page - Kasenga Intro Section */
.kpy-about-kasenga-intro {
    padding: 100px 0;
    background: #ffffff;
}

.kpy-about-kasenga-content {
    padding-right: 40px;
}

.kpy-about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: var(--kpy-font-heading);
    line-height: 1.2;
}

.kpy-about-main-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.kpy-about-main-text p {
    margin-bottom: 20px;
}

.kpy-about-main-image {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Business Areas - Modern Timeline Style */
.kpy-business-areas-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.kpy-business-areas-timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 60px;
}

.kpy-business-areas-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6B35 0%, rgba(255, 107, 53, 0.3) 100%);
}

.kpy-business-area-item-modern {
    position: relative;
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.kpy-business-area-item-modern::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 40px;
    width: 20px;
    height: 20px;
    background: #FF6B35;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px #FF6B35;
    z-index: 2;
}

.kpy-business-area-item-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
    border-left-color: #FF6B35;
}

.kpy-business-area-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    font-family: var(--kpy-font-heading);
}

.kpy-business-area-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.kpy-business-area-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
}

.kpy-business-area-title-modern a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kpy-business-area-title-modern a:hover {
    color: #FF6B35;
}

.kpy-business-area-desc-modern {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.kpy-business-area-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.kpy-business-area-link:hover {
    color: #E55A2B;
    gap: 12px;
}

/* List With Us - Side by Side Layout */
.kpy-list-form-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.kpy-list-info-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.kpy-list-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--kpy-font-heading);
}

.kpy-list-info-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.kpy-list-info-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 30px;
}

.kpy-list-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.kpy-list-info-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kpy-list-info-list li i {
    color: #FF6B35;
    font-size: 1.2rem;
}

.kpy-list-info-benefits {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.kpy-list-info-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.kpy-list-info-benefits p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.kpy-list-form-wrapper-modern {
    background: #ffffff;
    padding: 50px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.kpy-list-form-form-modern .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.kpy-list-form-form-modern .form-control:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.kpy-list-form-form-modern label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

/* Homepage Business Areas */
.homepage-business-areas {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.homepage-business-area-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.homepage-business-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #E55A2B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.homepage-business-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.homepage-business-area-card:hover::before {
    transform: scaleX(1);
}

.homepage-business-area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(3, 92, 92, 0.3);
    transition: all 0.3s ease;
}

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

.homepage-business-area-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
}

.homepage-business-area-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.homepage-business-area-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.homepage-business-area-link:hover {
    color: #E55A2B;
    gap: 12px;
}

/* Business Area Page Template */
.kpy-business-area-content-section {
    padding: 100px 0;
    background: #ffffff;
}

.kpy-business-area-main-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.kpy-business-area-main-content h2,
.kpy-business-area-main-content h3 {
    color: #1a1a1a;
    font-family: var(--kpy-font-heading);
    margin-top: 30px;
    margin-bottom: 20px;
}

.kpy-business-area-featured-image {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.kpy-business-area-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.kpy-service-item-modern {
    background: #ffffff;
    padding: 35px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.kpy-service-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.kpy-service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.kpy-service-item-modern:hover .kpy-service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.kpy-service-item-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
}

.kpy-service-item-modern p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kpy-about-main-title {
        font-size: 2.5rem;
    }

    .kpy-business-areas-timeline {
        padding-left: 40px;
    }

    .kpy-business-area-item-modern::before {
        left: -35px;
    }

    .kpy-list-info-section,
    .kpy-list-form-wrapper-modern {
        padding: 35px;
    }
}

/* Concierge Page - Modern Styles */
.kpy-concierge-intro-modern {
    padding: 100px 0;
    background: #ffffff;
}

.kpy-intro-subtitle-modern {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 600;
}

.kpy-intro-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: var(--kpy-font-heading);
    line-height: 1.2;
}

.kpy-intro-content-modern {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.kpy-intro-content-modern p {
    margin-bottom: 20px;
}

.kpy-intro-highlight-modern {
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #FF6B35;
    border-radius: 8px;
    margin-top: 30px;
}

.kpy-intro-highlight-modern p {
    margin: 0;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.kpy-page-content-modern {
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.kpy-concierge-featured-image {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 768px) {

    .kpy-about-kasenga-intro,
    .kpy-business-areas-modern,
    .kpy-list-form-modern,
    .kpy-concierge-intro-modern {
        padding: 60px 0;
    }

    .kpy-about-main-title,
    .kpy-intro-title-modern {
        font-size: 2rem;
    }

    .kpy-business-areas-timeline {
        padding-left: 30px;
    }

    .kpy-business-areas-timeline::before {
        left: 15px;
    }

    .kpy-business-area-item-modern {
        padding: 20px;
    }

    .kpy-business-area-item-modern::before {
        left: -25px;
        width: 15px;
        height: 15px;
    }

    .kpy-business-area-number {
        font-size: 2rem;
    }

    .kpy-list-info-section,
    .kpy-list-form-wrapper-modern {
        padding: 25px;
    }
}

/* Global Border Radius for Buttons and Images - Custom Shape */
.kpy-btn,
.kpy-btn-primary,
.kpy-btn-lg,
.homepage-cta-button,
.og-cta-btn,
.kpy-btn-secondary,
button.btn,
a.btn,
.news-card-image,
.news-card-image img,
.modern-news-card img,
.property-image,
.kpy-property-image,
.gm-listing-image,
.homepage-about-image img,
.kpy-about-main-image img,
.kpy-business-area-featured-image img,
img[class*="img-fluid"],
img[class*="rounded"] {
    border-radius: var(--kpy-border-radius-custom, 0 20px 0 20px) !important;
}

/* Exceptions - keep circular for icons/badges */
.news-card-badge,
.kpy-property-badge,
.badge,
[class*="badge"] {
    border-radius: 50px !important;
}

/* Business Areas Workflow Style - Inspired by Uptown Theme */
.kpy-business-areas-workflow {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.kpy-business-areas-workflow .kpy-section-header {
    text-align: left;
    margin-bottom: 80px;
}

.kpy-business-areas-workflow .kpy-section-header .kpy-section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kpy-primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.kpy-business-areas-workflow .kpy-section-header .kpy-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
}

.kpy-business-areas-workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.kpy-business-area-workflow-item {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--kpy-border-radius-custom);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.kpy-business-area-workflow-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 92, 92, 0.15);
    border-left-color: var(--kpy-primary);
}

.kpy-business-area-workflow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: var(--kpy-font-heading);
    box-shadow: 0 8px 20px rgba(3, 92, 92, 0.3);
}

.kpy-business-area-workflow-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
    line-height: 1.3;
}

.kpy-business-area-workflow-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kpy-business-area-workflow-title a:hover {
    color: var(--kpy-primary);
}

.kpy-business-area-workflow-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .kpy-business-areas-workflow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kpy-business-areas-workflow .kpy-section-header .kpy-section-title {
        font-size: 2.5rem;
    }
}

/*====================================================================
   Alpha Asset Managers Brand CSS
   Custom styling based on Alpha Asset Managers Brand Guidelines
   Primary Color: Alpha Green (#035c5c)
   Typography: Benton Sans Pro (headings), Open Sans (body)
===================================================================**/

/* ============================================
   BRAND COLOR PALETTE
   ============================================ */
:root {
    /* Primary Brand Color - Alpha Green */
    --alpha-primary: #035c5c;
    --alpha-primary-rgb: 6, 92, 93;
    --alpha-primary-75: rgba(6, 92, 93, 0.75);
    /* 75% tint */
    --alpha-primary-50: rgba(6, 92, 93, 0.50);
    /* 50% tint */
    --alpha-primary-25: rgba(6, 92, 93, 0.25);
    /* 25% tint */

    /* CMYK: 91, 46, 57, 28 */
    /* RGB: 6, 92, 93 */
    /* HEX: #035c5c */

    /* Extended Color Palette */
    --alpha-secondary: #1a7a7a;
    --alpha-accent: #4a9d9d;
    --alpha-light: #e6f2f2;
    --alpha-lighter: #f0f7f7;

    /* Neutral Colors */
    --alpha-base: #1a1a1a;
    --alpha-dark: #2d2d2d;
    --alpha-grey: #666666;
    --alpha-light-grey: #e5e5e5;
    --alpha-white: #ffffff;
    --alpha-black: #000000;

    /* Background Colors */
    --alpha-bg-primary: #ffffff;
    --alpha-bg-secondary: #f8f9fa;
    --alpha-bg-accent: #f0f7f7;
    --alpha-bg-dark: #035c5c;
    --alpha-bg-overlay: rgba(3, 92, 92, 0.85);

    /* Typography - Brand Fonts */
    --alpha-font-heading: "Benton Sans Pro", "Open Sans", system-ui, -apple-system, sans-serif;
    --alpha-font-body: "Open Sans", system-ui, -apple-system, sans-serif;

    /* Font Weights - Benton Sans Pro */
    --alpha-weight-book: 300;
    --alpha-weight-regular: 400;
    --alpha-weight-bold: 700;
    --alpha-weight-black: 900;

    /* Shadows & Effects */
    --alpha-shadow: 0 2px 4px rgba(3, 92, 92, 0.1);
    --alpha-shadow-md: 0 4px 8px rgba(3, 92, 92, 0.15);
    --alpha-shadow-lg: 0 8px 16px rgba(3, 92, 92, 0.2);
    --alpha-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --alpha-space-xs: 0.5rem;
    --alpha-space-sm: 1rem;
    --alpha-space-md: 1.5rem;
    --alpha-space-lg: 3rem;
    --alpha-space-xl: 4rem;
    --alpha-space-2xl: 6rem;

    /* Gradients */
    --alpha-gradient-primary: linear-gradient(135deg, #035c5c 0%, #024a4a 100%);
    --alpha-gradient-hero: linear-gradient(135deg, rgba(3, 92, 92, 0.95) 0%, rgba(2, 74, 74, 0.95) 100%);

    /* Accent Colors - Using Alpha Green Tints */
    --alpha-accent: var(--alpha-primary-75);
    /* 75% tint for accents */
    --alpha-accent-light: var(--alpha-primary-50);
    /* 50% tint for lighter accents */
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: var(--alpha-font-body);
    color: var(--alpha-base);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    color: var(--alpha-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1,
.h1 {
    font-size: 3rem;
    font-weight: var(--alpha-weight-black);
    letter-spacing: -0.02em;
}

h2,
.h2 {
    font-size: 2.5rem;
    font-weight: var(--alpha-weight-bold);
}

h3,
.h3 {
    font-size: 2rem;
    font-weight: var(--alpha-weight-bold);
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: var(--alpha-weight-regular);
}

h5,
.h5 {
    font-size: 1.25rem;
    font-weight: var(--alpha-weight-regular);
}

h6,
.h6 {
    font-size: 1rem;
    font-weight: var(--alpha-weight-regular);
}

p {
    font-family: var(--alpha-font-body);
    margin-bottom: 1rem;
    color: var(--alpha-grey);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--alpha-dark);
}

/* ============================================
   BRAND COLORS - OVERRIDES
   ============================================ */
.text-alpha-primary {
    color: var(--alpha-primary) !important;
}

.bg-alpha-primary {
    background-color: var(--alpha-primary) !important;
    color: var(--alpha-white) !important;
}

.bg-alpha-primary-75 {
    background-color: var(--alpha-primary-75) !important;
}

.bg-alpha-primary-50 {
    background-color: var(--alpha-primary-50) !important;
}

.bg-alpha-primary-25 {
    background-color: var(--alpha-primary-25) !important;
}

.bg-alpha-light {
    background-color: var(--alpha-light) !important;
}

.bg-alpha-lighter {
    background-color: var(--alpha-lighter) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-alpha-primary {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    border: 2px solid var(--alpha-primary);
    padding: 0.75rem 2rem;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--alpha-transition);
    text-decoration: none;
    display: inline-block;
}

.btn-alpha-primary:hover,
.btn-alpha-primary:focus {
    background-color: var(--alpha-secondary);
    border-color: var(--alpha-secondary);
    color: var(--alpha-white);
    transform: translateY(-2px);
    box-shadow: var(--alpha-shadow-md);
}

.btn-alpha-outline {
    background-color: transparent;
    color: var(--alpha-primary);
    border: 2px solid var(--alpha-primary);
    padding: 0.75rem 2rem;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--alpha-transition);
    text-decoration: none;
    display: inline-block;
}

.btn-alpha-outline:hover,
.btn-alpha-outline:focus {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    transform: translateY(-2px);
    box-shadow: var(--alpha-shadow-md);
}

.btn-alpha-white {
    background-color: var(--alpha-white);
    color: var(--alpha-primary);
    border: 2px solid var(--alpha-white);
    padding: 0.75rem 2rem;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--alpha-transition);
    text-decoration: none;
    display: inline-block;
}

.btn-alpha-white:hover,
.btn-alpha-white:focus {
    background-color: transparent;
    color: var(--alpha-white);
    border-color: var(--alpha-white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.alpha-header {
    background-color: var(--alpha-white);
    box-shadow: var(--alpha-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.alpha-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.alpha-nav {
    font-family: var(--alpha-font-heading);
}

.alpha-nav .navbar-nav .nav-link {
    color: var(--alpha-base);
    font-weight: var(--alpha-weight-regular);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: var(--alpha-transition);
    position: relative;
}

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

.alpha-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--alpha-primary);
    transform: scaleX(0);
    transition: transform var(--alpha-transition);
}

.alpha-nav .navbar-nav .nav-link:hover::after,
.alpha-nav .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.alpha-hero {
    background: var(--alpha-gradient-hero);
    color: var(--alpha-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.alpha-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 92, 92, 0.85);
    z-index: 1;
}

.alpha-hero .container {
    position: relative;
    z-index: 2;
}

.alpha-hero h1 {
    color: var(--alpha-white);
    font-weight: var(--alpha-weight-black);
    margin-bottom: 1.5rem;
}

.alpha-hero .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */
.alpha-value-prop {
    padding: 5rem 0;
    background-color: var(--alpha-bg-primary);
}

.alpha-value-prop h2 {
    color: var(--alpha-primary);
    margin-bottom: 2rem;
}

.alpha-value-prop .value-card {
    background-color: var(--alpha-white);
    padding: 2.5rem;
    box-shadow: var(--alpha-shadow);
    transition: var(--alpha-transition);
    height: 100%;
    border-top: 4px solid var(--alpha-primary);
}

.alpha-value-prop .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

.alpha-value-prop .value-card h3 {
    color: var(--alpha-primary);
    margin-bottom: 1rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.alpha-team {
    padding: 5rem 0;
    background-color: var(--alpha-bg-secondary);
}

.alpha-team-member {
    background-color: var(--alpha-white);
    padding: 2rem;
    box-shadow: var(--alpha-shadow);
    text-align: center;
    transition: var(--alpha-transition);
    margin-bottom: 2rem;
}

.alpha-team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

.alpha-team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--alpha-primary);
}

.alpha-team-member h4 {
    color: var(--alpha-primary);
    margin-bottom: 0.5rem;
}

.alpha-team-member .role {
    color: var(--alpha-grey);
    font-style: italic;
    margin-bottom: 1rem;
}

/* ============================================
   PRODUCTS/SERVICES SECTION
   ============================================ */
.alpha-products {
    padding: 5rem 0;
    background-color: var(--alpha-bg-primary);
}

.alpha-product-card {
    background-color: var(--alpha-white);
    padding: 2.5rem;
    box-shadow: var(--alpha-shadow);
    transition: var(--alpha-transition);
    height: 100%;
    border-left: 4px solid var(--alpha-primary);
}

.alpha-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

.alpha-product-card h3 {
    color: var(--alpha-primary);
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.alpha-footer {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    padding: 4rem 0 2rem;
}

.alpha-footer h5 {
    color: var(--alpha-white);
    font-weight: var(--alpha-weight-bold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.alpha-footer a:hover {
    color: var(--alpha-white);
}

.alpha-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

/* ============================================
   COMPLIANCE & DISCLOSURES
   ============================================ */
.alpha-compliance {
    background-color: var(--alpha-light);
    padding: 2rem;
    border-left: 4px solid var(--alpha-primary);
    margin: 2rem 0;
}

.alpha-compliance h4 {
    color: var(--alpha-primary);
    margin-bottom: 1rem;
}

.alpha-compliance p {
    font-size: 0.9rem;
    color: var(--alpha-grey);
    margin-bottom: 0.5rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.alpha-section {
    padding: 5rem 0;
}

.alpha-section-alt {
    background-color: var(--alpha-bg-secondary);
}

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

.alpha-minimalist {
    background-color: var(--alpha-white);
    padding: 2rem;
    border: 1px solid var(--alpha-light-grey);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    .alpha-hero {
        padding: 4rem 0;
    }

    .alpha-hero .lead {
        font-size: 1.25rem;
    }

    .alpha-section {
        padding: 3rem 0;
    }
}

/* ============================================
   ACCESSIBILITY (WCAG 2.1)
   ============================================ */
.alpha-focus-visible:focus-visible {
    outline: 3px solid var(--alpha-primary);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    text-decoration: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes alphaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alpha-fade-in {
    animation: alphaFadeIn 0.6s ease-out;
}

/* ============================================
   EXACT HOMEPAGE DESIGN - HEADER & MENU
   ============================================ */

/* Top Bar */
.alpha-top-bar {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.alpha-top-bar a {
    color: var(--alpha-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Navigation */
/* Removed duplicate .alpha-main-nav - using the one defined in header section */

.nav-logo img {
    max-height: 50px;
    width: auto;
}

.nav-logo .logo-text {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.25rem;
    color: var(--alpha-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-menu-list>li>a {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-regular);
    font-size: 0.95rem;
    color: var(--alpha-base);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu-list>li>a:hover,
.nav-menu-list>li.current-menu-item>a {
    color: var(--alpha-primary);
}

.nav-menu-list>li.has-dropdown>a::after {
    content: '';
    display: inline-block;
    margin-left: 0.25rem;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
}

.nav-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--alpha-white);
    box-shadow: var(--alpha-shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-menu-list>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-list .sub-menu li {
    padding: 0;
}

.nav-menu-list .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--alpha-base);
    text-transform: none;
    font-size: 0.9rem;
}

.nav-menu-list .sub-menu a:hover {
    background-color: var(--alpha-light);
    color: var(--alpha-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.nav-action-btn {
    background: none;
    border: none;
    color: var(--alpha-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.nav-action-btn:hover {
    color: var(--alpha-secondary);
}

.nav-call-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: var(--alpha-primary);
    font-family: var(--alpha-font-heading);
}

.nav-call-btn .call-text {
    font-size: 0.75rem;
    font-weight: var(--alpha-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-call-btn .call-number {
    font-size: 0.95rem;
    font-weight: var(--alpha-weight-bold);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--alpha-primary);
    transition: all 0.3s;
}

/* Search Overlay */
.alpha-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.alpha-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-overlay-content form {
    display: flex;
    gap: 1rem;
}

.search-overlay-content input {
    flex: 1;
    padding: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    border: 2px solid var(--alpha-white);
    color: var(--alpha-white);
    border-radius: 0;
}

.search-overlay-content input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-overlay-content button {
    padding: 1.5rem 2rem;
    background: var(--alpha-primary);
    border: none;
    color: var(--alpha-white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 0;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--alpha-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Menu */
.alpha-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--alpha-white);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.alpha-mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--alpha-light-grey);
}

.mobile-logo img {
    max-height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--alpha-primary);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--alpha-light-grey);
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--alpha-base);
    text-decoration: none;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-list a:hover {
    background-color: var(--alpha-light);
    color: var(--alpha-primary);
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.alpha-hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(3, 92, 92, 0.50) 0%, rgba(3, 92, 92, 0.40) 20%, rgba(3, 92, 92, 0.30) 40%, rgba(3, 92, 92, 0.20) 60%, rgba(3, 92, 92, 0.10) 80%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hide any curved bottom paths in hero sections */
.curved-bottom,
.kpy-hero-curve,
.inner-hero-curve {
    display: none !important;
}

/* Hide any SVG paths or elements in the hero slider */
.alpha-hero-slider svg,
.hero-slide svg,
.alpha-hero-slider path,
.hero-slide path {
    display: none !important;
    visibility: hidden !important;
}

/* Hide SVG paths and geometric shapes in main slider */
.main-slider svg,
.main-slider path,
.kpy-slide svg,
.kpy-slide path,
.kpy-slide-curve,
.kpy-slide-shapes,
.kpy-shape,
.kpy-shape-1,
.kpy-shape-2,
.kpy-shape-3,
.kpy-curtain-left,
.kpy-curtain-right {
    display: none !important;
    visibility: hidden !important;
}

/* Hide social icons and navigation links in slider */
.kpy-slider-left-social,
.kpy-slider-right-nav,
.kpy-social-icon,
.kpy-nav-link {
    display: none !important;
    visibility: hidden !important;
}

/* Geometric shapes removed - hidden via display none */
.hero-geometric-left,
.hero-geometric-right,
.geo-shape,
.geo-triangle-1,
.geo-triangle-2,
.geo-triangle-3,
.geo-angular {
    display: none !important;
    visibility: hidden !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--alpha-white);
    padding: 2rem 0;
}

.hero-label {
    display: inline-block;
    background: var(--kpy-gradient-medium);
    color: var(--alpha-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: var(--alpha-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(4, 122, 122, 0.4);
}

.hero-title {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--alpha-white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-hero-cta {
    display: inline-block;
    background: var(--alpha-white);
    color: var(--alpha-primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 2px solid var(--alpha-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-hero-cta:hover {
    background: var(--alpha-green-light);
    border-color: var(--alpha-green-light);
    color: var(--alpha-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 217, 217, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--alpha-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--alpha-white);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* ============================================
   FEATURE CARDS SECTION
   ============================================ */
.alpha-features-section {
    padding: 5rem 0;
    background: var(--kpy-gradient-light);
}

.feature-card {
    background: var(--alpha-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-top: 4px solid var(--alpha-green-50);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 122, 122, 0.2);
    border-top-color: var(--alpha-green-75);
    background: linear-gradient(to bottom, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--kpy-gradient-primary);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--alpha-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--alpha-white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.feature-card h3 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.5rem;
    color: var(--alpha-base);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--alpha-grey);
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.alpha-about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 50%, var(--alpha-white) 100%);
}

.about-image-wrapper {
    position: relative;
    border-radius: 50%;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.about-image,
.about-image-placeholder {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
}

.about-image-placeholder {
    background: var(--alpha-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px dashed var(--alpha-primary-50);
    border-radius: 50%;
    opacity: 0.5;
}

.section-label {
    display: inline-block;
    background: transparent;
    color: var(--kpy-primary);
    padding: 0.35rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: var(--alpha-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 2.5rem;
    color: var(--alpha-base);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--alpha-grey);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--alpha-base);
    font-size: 1rem;
}

.about-benefits li i {
    color: var(--alpha-green-75);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.about-benefits li:nth-child(even) i {
    color: var(--alpha-green-50);
}

.btn-section-cta {
    display: inline-block;
    background: var(--kpy-gradient-primary);
    color: var(--alpha-white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.btn-section-cta:hover {
    background: var(--kpy-gradient-medium);
    border-color: var(--alpha-green-75);
    color: var(--alpha-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 122, 122, 0.4);
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.alpha-solutions-section {
    padding: 5rem 0;
    background: var(--kpy-gradient-light);
}

.alpha-solutions-section .section-label {
    margin-bottom: 1rem;
}

.alpha-solutions-section h2 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 2.5rem;
    color: var(--alpha-base);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-intro {
    color: var(--kpy-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-home-highlights {
    padding: 4rem 0 4.5rem;
    background: #fff;
}

.alpha-home-highlights .alpha-highlights-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 0.75rem;
}

.alpha-home-highlights .alpha-highlights-intro {
    font-size: 0.98rem;
    color: var(--kpy-grey);
    max-width: 640px;
    margin: 0 auto;
}

.alpha-highlight-news-card {
    background: var(--kpy-bg-secondary);
    border-radius: 40px 0 40px 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: stretch;
}

.alpha-highlight-news-image {
    flex: 0 0 160px;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
}

.alpha-highlight-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alpha-highlight-news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.alpha-highlight-news-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--kpy-grey);
}

.alpha-highlight-news-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.alpha-highlight-news-title a {
    color: var(--kpy-base);
    text-decoration: none;
}

.alpha-highlight-news-title a:hover {
    color: var(--kpy-primary);
}

.alpha-highlight-news-excerpt {
    font-size: 0.9rem;
    color: var(--kpy-grey);
}

.alpha-highlight-events {
    background: var(--kpy-bg-secondary);
    border-radius: 40px 0 40px 0;
    padding: 1.75rem 1.5rem;
}

.alpha-highlight-events-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.alpha-highlight-events-list {
    margin: 0;
    padding: 0;
}

.alpha-highlight-event-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.alpha-highlight-event-date {
    flex: 0 0 54px;
    height: 54px;
    border-radius: 40px 0 40px 0;
    background: var(--kpy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.alpha-highlight-event-body {
    flex: 1;
    display: flex;
    align-items: center;
}

.alpha-highlight-event-title {
    font-size: 0.9rem;
    color: var(--kpy-base);
    text-decoration: none;
    font-weight: 600;
}

.alpha-highlight-event-title:hover {
    color: var(--kpy-primary);
}


.solution-card {
    background: var(--alpha-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-card:nth-child(1) .solution-icon {
    background: var(--kpy-gradient-primary);
}

.solution-card:nth-child(2) .solution-icon {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.solution-card:nth-child(3) .solution-icon {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--alpha-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem;
    color: var(--alpha-white);
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.solution-card h3 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.5rem;
    color: var(--alpha-base);
    margin: 0 1.5rem 1rem;
    text-align: center;
}

.solution-card p {
    color: var(--alpha-grey);
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    flex: 1;
}

.solution-link {
    display: block;
    text-align: center;
    color: var(--alpha-green-75);
    text-decoration: none;
    font-weight: var(--alpha-weight-bold);
    padding: 1rem;
    margin: 0 1.5rem 1.5rem;
    border-top: 2px solid var(--alpha-green-25);
    transition: all 0.3s;
}

.solution-link:hover {
    color: var(--alpha-primary);
    border-top-color: var(--alpha-green-50);
    background: var(--alpha-green-bg);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.alpha-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.alpha-process-section .section-label {
    margin-bottom: 1rem;
}

.alpha-process-section h2 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 2.5rem;
    color: var(--alpha-base);
    margin-bottom: 3rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -15%;
    width: 30%;
    height: 2px;
    background: var(--alpha-green-50);
    border-top: 2px dashed var(--alpha-green-50);
    transform: translateY(-50%);
    z-index: 1;
}

.process-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--alpha-green-50);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.process-step:nth-child(1) .process-number {
    background: var(--kpy-gradient-primary);
}

.process-step:nth-child(2) .process-number {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.process-step:nth-child(3) .process-number {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.process-step:nth-child(4) .process-number {
    background: var(--alpha-green-25);
    color: var(--alpha-primary);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--alpha-primary-75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpha-white);
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.process-step:nth-child(1) .process-icon {
    background: var(--kpy-gradient-primary);
}

.process-step:nth-child(2) .process-icon {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.process-step:nth-child(3) .process-icon {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.process-step:nth-child(4) .process-icon {
    background: var(--alpha-green-25);
    color: var(--alpha-primary);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--alpha-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpha-white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.process-step h4 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.25rem;
    color: var(--alpha-base);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--alpha-grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dotted line with arrow from each step to the next */
.alpha-process-section .row {
    position: relative;
}

.alpha-process-section .row>[class*="col-"] {
    position: relative;
}

.alpha-process-section .row>[class*="col-"]:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(50% + 1.5rem);
    height: 0;
    border-bottom: 2px dashed var(--alpha-green-50);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.alpha-process-section .row>[class*="col-"]:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.5rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--alpha-green-50);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {

    .alpha-process-section .row>[class*="col-"]:not(:last-child)::before,
    .alpha-process-section .row>[class*="col-"]:not(:last-child)::after {
        display: none;
    }
}

/* Xtra-style homepage: section labels & split headings */
.alpha-homepage-xtra .section-label-uppercase {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--kpy-primary);
    margin-bottom: 0.5rem;
}

.alpha-homepage-xtra .alpha-section-split-heading {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--kpy-base);
}

/* Dual CTA blocks */
.alpha-dual-cta-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.alpha-dual-cta-card {
    display: block;
    padding: 2.5rem;
    background: var(--kpy-primary);
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alpha-dual-cta-card:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 92, 92, 0.25);
}

.alpha-dual-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.alpha-dual-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alpha-dual-cta-card .btn-section-cta {
    background: #fff;
    color: var(--kpy-primary);
    border: none;
}

.alpha-dual-cta-card .btn-section-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--kpy-primary);
}

/* Stats / Trust section */
.alpha-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.alpha-stats-heading {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--kpy-base);
}

.alpha-stat-item {
    padding: 1.5rem;
}

.alpha-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kpy-primary);
    line-height: 1.1;
}

.alpha-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--kpy-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}

/* Process intro & bullets */
.alpha-process-intro {
    max-width: 800px;
    margin-bottom: 1.5rem;
    color: var(--kpy-grey);
    line-height: 1.7;
}

.alpha-process-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    max-width: 700px;
}

.alpha-process-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--kpy-grey);
}

.alpha-process-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--kpy-primary);
    border-radius: 50%;
}

/* About: second CTA button outline */
.btn-outline-alpha {
    background: transparent !important;
    color: var(--kpy-primary) !important;
    border: 2px solid var(--kpy-primary) !important;
    margin-left: 0.75rem;
}

.btn-outline-alpha:hover {
    background: var(--kpy-primary) !important;
    color: #fff !important;
}

/* From the Blog section */
.alpha-blog-section {
    padding: 5rem 0;
    background: var(--kpy-gradient-light);
}

.alpha-blog-card {
    display: block;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alpha-blog-card:hover {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.alpha-blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.alpha-blog-card-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

.alpha-blog-card-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--kpy-grey);
    margin: 0.75rem 0 0.5rem;
}

.alpha-blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding: 0 1rem 1rem;
    line-height: 1.35;
    color: var(--kpy-base);
}

/* Meet Our Team section */
.alpha-team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.alpha-team-card {
    background: #fff;
    overflow: hidden;
    padding-bottom: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 999px 999px 0 0;
}

.alpha-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.alpha-team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px 999px 0 0;
}

.alpha-team-card-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 3rem;
    border-radius: 999px 999px 0 0;
}

.alpha-team-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 1rem 0.25rem;
    color: var(--kpy-base);
}

.alpha-team-card-role {
    font-size: 0.9rem;
    color: var(--kpy-grey);
    margin: 0 1rem;
}

/* ============================================
   ALPHA PRELOADER (favicon)
   ============================================ */
.alpha-preloader,
#preloader.alpha-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f10;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.alpha-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.alpha-preloader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alpha-preloader-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: alpha-preloader-pulse 1.2s ease-in-out infinite;
}

.alpha-preloader-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(3, 92, 92, 0.25);
    border-top-color: var(--alpha-primary, #035c5c);
    border-radius: 50%;
    animation: alpha-preloader-spin 0.9s linear infinite;
}

@keyframes alpha-preloader-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

@keyframes alpha-preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.alpha-consultation-section {

    padding: 0;
    margin: 0;
}

/* CTA (black/white + green blend) */
.alpha-home-cta {
    position: relative;
    background: linear-gradient(135deg, #0b0f10 0%, #0b0f10 30%, var(--alpha-primary) 100%);
    color: var(--alpha-white);
    margin-bottom: 0;
    overflow: hidden;
}

.alpha-home-cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.alpha-home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 16, 0.85) 0%, rgba(11, 15, 16, 0.75) 30%, rgba(3, 92, 92, 0.80) 100%);
    z-index: 1;
}

.alpha-home-cta .container {
    position: relative;
    z-index: 2;
}

.alpha-home-cta .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.alpha-home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(143, 192, 192, 0.10) 100%);
    padding: 2.5rem 2.5rem;
}

.alpha-home-cta-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.alpha-home-cta-title {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    color: var(--alpha-white);
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.alpha-home-cta-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    max-width: 60ch;
}

.alpha-home-cta-actions {
    flex: 0 0 auto;
}

.alpha-home-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border: 2px solid var(--alpha-white);
    background: var(--alpha-white);
    color: #0b0f10;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.alpha-home-cta-button:hover {
    background: var(--alpha-green-light);
    border-color: var(--alpha-green-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-call-btn {
        display: none;
    }

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

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

    .process-arrow {
        display: none;
    }

    .alpha-home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .alpha-top-bar {
        font-size: 0.75rem;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

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

    .about-content h2,
    .alpha-solutions-section h2,
    .alpha-process-section h2,
    .alpha-home-cta-title {
        font-size: 2rem;
    }
}

/* ============================================================
   2. CAREERS CPT 
   ============================================================ */

.alpha-careers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.alpha-career-card {
    background: #f8fafb;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: none;
}

.alpha-career-card * {
    border: none;
    box-shadow: none;
}

.alpha-career-card .alpha-career-card__tag--salary {
    background: transparent;
    padding: 0;
}

.alpha-career-card__body {
    padding: 2.25rem 2rem;
}

.alpha-career-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.alpha-career-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.alpha-career-card__apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--kpy-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px 0 40px 0;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.alpha-career-card__apply-btn:hover {
    background: var(--kpy-primary-dark);
    color: #fff;
}

.alpha-career-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    margin-bottom: 1.25rem;
    row-gap: 0.35rem;
}

.alpha-career-card__tag {
    font-size: 0.85rem;
    color: var(--kpy-grey);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.alpha-career-card__tag:not(:last-child)::after {
    content: '';
    display: none;
}

.alpha-career-card__tag i {
    color: var(--kpy-primary);
    font-size: 0.95rem;
    opacity: 0.9;
}

.alpha-career-card__tag--salary {
    color: var(--kpy-primary);
    font-weight: 600;
}

.alpha-career-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--kpy-dark, #2d3748);
    margin: 0 0 1.25rem;
}

.alpha-career-card__section {
    margin-top: 1.5rem;
}

.alpha-career-card__section+.alpha-career-card__section {
    margin-top: 1.25rem;
}

.alpha-career-card__section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.6rem;
}

.alpha-career-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-career-card__list li {
    font-size: 0.9rem;
    color: var(--kpy-grey);
    line-height: 1.65;
    padding: 0.15rem 0 0.15rem 1.2rem;
    position: relative;
}

.alpha-career-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: var(--kpy-primary);
    border-radius: 50%;
    opacity: 0.8;
}

.alpha-career-card__deadline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--kpy-primary);
    font-weight: 600;
}

.alpha-career-card__deadline i {
    font-size: 1rem;
}

.alpha-careers-empty {
    text-align: center;
    padding: 3.5rem 2rem;
    background: #f8fafb;
    border-radius: 40px 0 40px 0;
}

.alpha-careers-empty i {
    font-size: 3rem;
    color: var(--kpy-primary);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.alpha-careers-empty p {
    color: var(--kpy-grey);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .alpha-career-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .alpha-career-card__body {
        padding: 1.75rem 1.5rem;
    }

    .alpha-careers-grid {
        padding: 1.5rem 0 2rem;
        gap: 1.5rem;
    }
}


/* ============================================================
   3. PRODUCTS TEMPLATE — FULL REDESIGN
   ============================================================ */

/* Hero */
.alpha-products-page .alpha-hero {
    position: relative;
    overflow: hidden;
}

.alpha-products-page .alpha-hero h1 {
    font-family: var(--alpha-font-head);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--alpha-white);
    margin: 0 0 .8rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.alpha-products-page .alpha-hero .lead {
    font-family: var(--alpha-font-body);
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.alpha-products-page .alpha-hero h2 {
    font-family: var(--alpha-font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--alpha-white);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

/* Overview section */
.alpha-products-page .alpha-section {
    padding: 3.5rem 0;
}

.alpha-products-page .alpha-content p {
    font-family: var(--alpha-font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--alpha-grey);
    margin-bottom: 1rem;
}

.alpha-products-page .alpha-content p:last-child {
    margin-bottom: 0;
}

/* Product cards grid */
.alpha-products-page .alpha-section-alt {
    background: var(--alpha-surface);
    padding: 4rem 0;
}

.alpha-products-page .alpha-product-card {
    background: var(--alpha-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--alpha-shadow-sm);
    border: 1px solid var(--alpha-green-light);
    transition: transform .3s var(--alpha-ease),
        box-shadow .3s var(--alpha-ease);
}

.alpha-products-page .alpha-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

/* top-left accent corner */
.alpha-products-page .alpha-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--alpha-grad-primary);
    border-radius: 0 0 4px 0;
}

.alpha-products-page .alpha-product-card h3 {
    font-family: var(--alpha-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--alpha-green);
    margin: 0.6rem 0 .65rem;
    line-height: 1.3;
}

.alpha-products-page .alpha-product-card p {
    font-family: var(--alpha-font-body);
    font-size: .9rem;
    line-height: 1.75;
    color: var(--alpha-grey);
    margin: 0 0 .8rem;
}

.alpha-products-page .alpha-product-card h4 {
    font-family: var(--alpha-font-head);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--alpha-base);
    margin: 0 0 .6rem !important;
}

.alpha-products-page .alpha-product-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-products-page .alpha-product-card ul li {
    font-family: var(--alpha-font-body);
    font-size: .85rem;
    color: var(--alpha-grey);
    padding: .28rem 0 .28rem 1.1rem;
    position: relative;
    line-height: 1.55;
}

.alpha-products-page .alpha-product-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .68rem;
    width: 6px;
    height: 6px;
    background: var(--alpha-green);
    border-radius: 50%;
}

/* CTA button inside product card */
.alpha-products-page .btn-alpha-primary {
    display: inline-block;
    background: var(--alpha-grad-primary);
    color: var(--alpha-white);
    font-family: var(--alpha-font-head);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    padding: .55rem 1.4rem;
    border-radius: 30px;
    margin-top: .5rem;
    transition: transform .2s var(--alpha-ease),
        box-shadow .2s var(--alpha-ease);
}

.alpha-products-page .btn-alpha-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(3, 92, 92, .3);
    color: var(--alpha-white);
}

/* Compliance strip */
.alpha-products-page .alpha-compliance {
    background: var(--alpha-green-bg);
    border-top: 1px solid var(--alpha-green-light);
    padding: 2.2rem 0;
}

.alpha-products-page .alpha-compliance h4 {
    font-family: var(--alpha-font-head);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--alpha-green);
    margin: 0 0 .8rem;
}

.alpha-products-page .alpha-compliance p {
    font-family: var(--alpha-font-body);
    font-size: .78rem;
    line-height: 1.7;
    color: var(--alpha-grey);
    margin: 0 0 .5rem;
}

.alpha-products-page .alpha-compliance strong {
    color: var(--alpha-base);
}

/* Bottom CTA */
.alpha-products-page .alpha-hero p {
    font-family: var(--alpha-font-body);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.alpha-products-page .btn-alpha-white {
    display: inline-block;
    background: var(--alpha-white);
    color: var(--alpha-green);
    font-family: var(--alpha-font-head);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform .2s var(--alpha-ease),
        box-shadow .2s var(--alpha-ease);
}

.alpha-products-page .btn-alpha-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    color: var(--alpha-green);
}


/* ============================================================
   4. SERVICES TEMPLATE — FULL REDESIGN
   ============================================================ */

.alpha-services .alpha-section {
    padding: 4rem 0;
}

.alpha-services .alpha-content {
    max-width: 780px;
    margin: 0 auto;
}

.alpha-services .alpha-content p {
    font-family: var(--alpha-font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--alpha-grey);
    margin-bottom: 1rem;
}

/* Process title */
.alpha-services .text-alpha-primary {
    font-family: var(--alpha-font-head);
    color: var(--alpha-green) !important;
    position: relative;
    display: inline-block;
}

.alpha-services .text-alpha-primary::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: var(--alpha-grad-primary);
    border-radius: 2px;
}

/* Process step cards */
.alpha-services .alpha-process-step {
    background: var(--alpha-white);
    border-radius: 12px;
    padding: 1.8rem 1.6rem;
    box-shadow: var(--alpha-shadow-sm);
    border: 1px solid var(--alpha-green-light);
    border-left: 4px solid var(--alpha-green);
    height: 100%;
    transition: transform .3s var(--alpha-ease),
        box-shadow .3s var(--alpha-ease);
}

.alpha-services .alpha-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--alpha-shadow-md);
}

.alpha-services .alpha-step-number {
    width: 44px;
    height: 44px;
    background: var(--alpha-grad-primary);
    color: var(--alpha-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--alpha-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .9rem;
    box-shadow: 0 3px 10px rgba(3, 92, 92, .25);
}

.alpha-services .alpha-process-step h4 {
    font-family: var(--alpha-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--alpha-base);
    margin: 0;
    line-height: 1.4;
}

/* Features section */
.alpha-services .alpha-section-alt {
    background: var(--alpha-surface);
}

/* CTA strip */
.alpha-services .alpha-section[style*="035c5c"] {
    position: relative;
    overflow: hidden;
}

.alpha-services .alpha-section[style*="035c5c"] h2 {
    font-family: var(--alpha-font-head);
    position: relative;
    z-index: 1;
}

.alpha-services .alpha-section[style*="035c5c"] p {
    font-family: var(--alpha-font-body);
    position: relative;
    z-index: 1;
}

.alpha-services .alpha-section[style*="035c5c"] a {
    position: relative;
    z-index: 1;
    font-family: var(--alpha-font-head);
    transition: transform .2s var(--alpha-ease),
        box-shadow .2s var(--alpha-ease);
}

.alpha-services .alpha-section[style*="035c5c"] a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}


/* ============================================================
   5. CONTACT TEMPLATES — UNIFIED FIX
   ============================================================ */

/* ── 5a. CONTACT (main form page) ── */

.alpha-contact .alpha-contact-info-section {
    padding: 4rem 0;
}

/* Info stack labels */
.alpha-contact .alpha-contact-info-section h2 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-base);
}

.alpha-contact .alpha-contact-info-section p {
    font-family: var(--alpha-font-body);
}

/* Testimonial / image card */
.alpha-contact .alpha-contact-info-section img {
    border-radius: 12px;
    object-fit: cover;
}

/* Form section card */
.alpha-contact .alpha-contact-form-section {
    padding: 4rem 0;
}

.alpha-contact .alpha-contact-form-section h2 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-base);
}

/* Form inputs */
.alpha-contact .alpha-contact-form-section input,
.alpha-contact .alpha-contact-form-section select,
.alpha-contact .alpha-contact-form-section textarea {
    font-family: var(--alpha-font-body);
    transition: border-color .25s var(--alpha-ease),
        box-shadow .25s var(--alpha-ease);
}

.alpha-contact .alpha-contact-form-section input:focus,
.alpha-contact .alpha-contact-form-section select:focus,
.alpha-contact .alpha-contact-form-section textarea:focus {
    border-color: var(--alpha-green) !important;
    box-shadow: 0 0 0 3px rgba(3, 92, 92, .12);
}

/* Static map iframe replacement ─── key fix ─── */
.alpha-contact .alpha-contact-form-section .alpha-static-map-wrap {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border-radius: 0;
    overflow: hidden;
}

.alpha-contact .alpha-contact-form-section .alpha-static-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Newsletter strip */
.alpha-contact input[type="email"]:focus {
    outline: none;
    border-color: var(--alpha-green);
    box-shadow: 0 0 0 2px rgba(3, 92, 92, .12);
}


/* ── 5b. CONTACT DETAILS (3-card grid) ── */

.alpha-contact-details .container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Section header */
.alpha-contact-details p[style*="kpy-primary"] {
    font-family: var(--alpha-font-head);
}

.alpha-contact-details h2 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-base);
}

/* Three cards */
.alpha-contact-details .col-lg-4>div {
    background: var(--alpha-white);
    border-radius: 14px;
    box-shadow: var(--alpha-shadow-md);
    overflow: hidden;
    height: 100%;
    transition: transform .3s var(--alpha-ease),
        box-shadow .3s var(--alpha-ease);
}

.alpha-contact-details .col-lg-4>div:hover {
    transform: translateY(-6px);
    box-shadow: var(--alpha-shadow-hover);
}

/* Card accent bar */
.alpha-contact-details .col-lg-4>div>div:first-child {
    height: 4px;
    background: var(--alpha-grad-primary);
}

/* Icon circle */
.alpha-contact-details .col-lg-4>div>div:nth-child(2)>div:first-child {
    background: var(--alpha-green-bg);
}

.alpha-contact-details .col-lg-4>div>div:nth-child(2)>div:first-child i {
    color: var(--alpha-green);
}

/* Card title */
.alpha-contact-details .col-lg-4 h3 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-green);
}

/* Info row text */
.alpha-contact-details .col-lg-4 a,
.alpha-contact-details .col-lg-4 span {
    font-family: var(--alpha-font-body);
}

.alpha-contact-details .col-lg-4 a:hover {
    color: var(--alpha-green) !important;
}

/* Full-width static map strip ─── key fix ─── */
.alpha-contact-details .alpha-static-map-strip {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: var(--alpha-surface);
}

.alpha-contact-details .alpha-static-map-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Regulatory disclaimer */
.alpha-contact-details .col-lg-9 {
    font-family: var(--alpha-font-body);
}


/* ── 5c. HQ ON MAP ── */

.alpha-hq-map .alpha-section {
    padding: 4rem 0;
}

/* Map container card */
.alpha-hq-map .alpha-map-container {
    background: var(--alpha-white);
    border-radius: 12px;
    box-shadow: var(--alpha-shadow-md);
    overflow: hidden;
}

/* Static map image inside */
.alpha-hq-map .alpha-map-container .alpha-static-map-wrap {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.alpha-hq-map .alpha-map-container .alpha-static-map-wrap img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

/* Location info sidebar card */
.alpha-hq-map .alpha-location-info {
    background: var(--alpha-white);
    border-radius: 12px;
    box-shadow: var(--alpha-shadow-md);
    padding: 2.2rem;
    height: 100%;
}

.alpha-hq-map .alpha-location-info h3 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
}

.alpha-hq-map .alpha-location-info h4 {
    font-family: var(--alpha-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--alpha-base);
    margin: 0 0 .5rem;
}

.alpha-hq-map .alpha-location-info p {
    font-family: var(--alpha-font-body);
    font-size: .9rem;
    color: var(--alpha-grey);
    line-height: 1.7;
    margin: 0 0 .8rem;
}

.alpha-hq-map .alpha-location-info a {
    color: var(--alpha-green);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.alpha-hq-map .alpha-location-info a:hover {
    color: var(--alpha-green-mid);
}

.alpha-hq-map .alpha-location-info i {
    color: var(--alpha-green);
    margin-right: .4rem;
}

/* Directions / Parking / Transport sub-sections */
.alpha-hq-map .alpha-location-info div[style*="border-top"] {
    border-top-color: var(--alpha-green-light) !important;
}


/* ============================================================
   6. SHARED UTILITIES
   ============================================================ */

/* Ensure Bootstrap icons load correctly across all templates */
.alpha-career-card i.bi,
.alpha-contact-details i.bi,
.alpha-hq-map i.bi,
.alpha-products-page i.bi,
.alpha-services i.bi {
    display: inline-block;
    vertical-align: middle;
}

/* Responsive: cards stack on mobile */
@media (max-width: 768px) {
    .alpha-products-page .alpha-product-card {
        padding: 1.4rem;
    }

    .alpha-services .alpha-process-step {
        padding: 1.3rem 1.2rem;
    }

    .alpha-hq-map .alpha-map-container .alpha-static-map-wrap img {
        min-height: 280px;
    }

    .alpha-hq-map .alpha-location-info {
        padding: 1.5rem;
    }
}

/* Uniform card/image/button shape: 40px on two edges, 0 on the other two (no box-shadow, no borders) */
.alpha-card-shape,
.alpha-card-shape img,
.alpha-btn-shape {
    border-radius: 40px 0 40px 0;
}

/* Legacy diagonal corner shape for CTA buttons/links */
.btn-section-cta,
.alpha-home-cta-button,
.solution-link {
    border-radius: 40px 0 40px 0;
}

/* Doorway / arch style for key cards & images on Home and About pages */
.alpha-features-section .feature-card,
.alpha-solutions-section .solution-card,
.alpha-homepage-exact .about-image-wrapper,
.alpha-homepage-exact .about-image,
.alpha-homepage-exact .solution-image img,
.alpha-blog-section .alpha-blog-card,
.alpha-blog-section .alpha-blog-card-img,
.alpha-about .value-card,
.alpha-about .alpha-minimalist {
    border-radius: 999px 999px 0 0;
    overflow: hidden;
}

/* Fade scroll: sections reveal on scroll
   IMPORTANT: Never hide content if JS/AOS fails.
   Sections are fully visible by default; JS can still add subtle transitions. */
.alpha-fade-section {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.alpha-fade-section.alpha-fade-visible {
    opacity: 1;
    transform: none;
}

/* Ensure any element using AOS attributes is visible
   even if AOS JavaScript or CSS is missing or disabled. */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Alpha Products Page */
.alpha-products-page .alpha-philosophy-title {
    color: var(--kpy-primary);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.alpha-products-page .alpha-section-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.alpha-products-page .alpha-audience-block {
    padding: 2.5rem;
    height: 100%;
}

.alpha-products-page .alpha-audience-icon {
    width: 60px;
    height: 60px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.alpha-products-page .alpha-audience-icon .bi {
    font-size: 1.75rem;
    color: #fff;
}

.alpha-products-page .alpha-offer-box {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 40px 0 40px 0;
}

.alpha-products-page .alpha-offer-box h4 {
    color: var(--kpy-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.alpha-products-page .process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.alpha-products-page .process-item .process-num-wrap {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.alpha-products-page .process-item .process-num-inner {
    width: 50px;
    height: 50px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.alpha-products-page .fund-card {
    background: #fff;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 40px 0 40px 0;
}

.alpha-products-page .fund-card .fund-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--kpy-primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 40px 0 40px 0;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.alpha-products-page .risk-disclosures {
    padding: 5rem 0 5.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.alpha-products-page .alpha-risk-cta .alpha-risk-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 92, 92, 0.88), rgba(3, 92, 92, 0.78));
}

.alpha-products-page .risk-disclosures .container {
    position: relative;
    z-index: 1;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-card {
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem;
    height: 100%;
    border-radius: 40px 0 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.alpha-products-page .alpha-risk-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.alpha-products-page .alpha-risk-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px 0 40px 0;
    background: var(--kpy-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.alpha-products-page .alpha-risk-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.alpha-products-page .alpha-disclosure-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin: 0 0 1rem;
}

.alpha-products-page .alpha-disclosure-title i {
    color: var(--kpy-primary);
}

.alpha-products-page .alpha-disclosure-highlight {
    background: var(--kpy-bg-secondary);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.alpha-products-page .alpha-disclosure-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--kpy-dark);
}

.alpha-products-page .alpha-disclosure-body {
    font-size: 0.95rem;
    color: var(--kpy-grey);
    margin: 0;
    line-height: 1.6;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 1rem;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list::-webkit-scrollbar {
    width: 6px;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--kpy-grey);
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list li {
    margin-bottom: 0.75rem;
}

.alpha-products-page .alpha-legal-strip {
    margin-top: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 40px 0 40px 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}

.alpha-products-page .alpha-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.alpha-products-page .alpha-legal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.alpha-products-page .alpha-legal-link i {
    color: #fff;
}

.alpha-products-page .alpha-legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

.alpha-products-page .alpha-legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.alpha-products-page .alpha-legal-updated i {
    color: #fff;
}

@media (max-width: 992px) {
    .alpha-products-page .process-item {
        flex-direction: column;
    }

    .alpha-products-page .process-item .process-num-wrap {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .alpha-products-page .col-lg-6[data-aos="fade-left"] {
        order: -1;
        min-height: 400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alpha-products-page .fund-card {
        transition: none;
        transform: none;
    }
}

/* Alpha Services Page */
.alpha-services .service-area-card {
    border-radius: 40px 0 40px 0;
    transition: all 0.3s ease;
}

.alpha-services .service-area-card:hover h3 {
    color: var(--kpy-primary);
}

.alpha-services .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: var(--kpy-primary);
    opacity: 0.2;
}

@media (max-width: 992px) {
    .alpha-services .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alpha-services .service-area-card {
        transition: none;
    }
}

/* Alpha Careers Page – section headers, no borders */
.alpha-careers-page .alpha-careers-content {
    background: #fff;
}

.alpha-careers-page .alpha-section-title {
    color: var(--kpy-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.alpha-careers-page .alpha-section-lead {
    color: var(--kpy-grey);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-careers-page .alpha-careers-grid-wrapper {
    margin: 0 auto;
}

/* ===== Category archive (News, Blogs, Projects, Programs) ===== */
.category-archive-page.alpha-content-category .category-content-section {
    padding: 60px 0;
    background: #fff;
}

.alpha-category-cards-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.alpha-category-card {
    display: block;
    position: relative;
    padding: 2rem 1.5rem;
    min-height: 180px;
    overflow: hidden;
    background: var(--kpy-primary, #035c5c);
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.alpha-category-card:hover {
    color: #fff;
    transform: translateY(-4px);
}

.alpha-category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.alpha-category-card-label,
.alpha-category-card-desc {
    position: relative;
    z-index: 1;
}

.alpha-category-card-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alpha-category-card-desc {
    font-size: 0.95rem;
    opacity: 0.95;
}

.alpha-category-posts-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.alpha-category-post-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.alpha-category-post-card:last-of-type {
    border-bottom: 0;
}

.alpha-category-post-thumb {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e9ecef;
}

.alpha-category-post-placeholder,
.news-card-placeholder,
.gallery-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #adb5bd;
    font-size: 2.5rem;
}

.alpha-category-post-body .alpha-category-post-meta {
    font-size: 0.8rem;
    color: var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alpha-category-post-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.3;
    color: var(--kpy-base, #1a1a1a);
}

.alpha-category-post-excerpt {
    color: var(--kpy-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.alpha-category-post-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--kpy-grey);
    margin-bottom: 0.5rem;
}

.alpha-category-post-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.alpha-category-post-more {
    font-weight: 600;
    color: var(--kpy-primary);
    font-size: 0.9rem;
}

.alpha-category-pagination {
    margin-top: 3rem;
    text-align: center;
}

.alpha-category-pagination .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.alpha-category-pagination .page-numbers li {
    list-style: none;
}

.alpha-category-pagination .page-numbers a,
.alpha-category-pagination .page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    min-width: 44px;
    text-align: center;
    background: #f1f3f5;
    color: var(--kpy-base);
    text-decoration: none;
    border-radius: 40px 0 40px 0;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.alpha-category-pagination .page-numbers a:hover,
.alpha-category-pagination .page-numbers .current {
    background: var(--kpy-primary);
    color: #fff;
}

.alpha-category-sidebar {
    position: sticky;
    top: 6rem;
}

.alpha-sidebar-widget {
    margin-bottom: 2rem;
}

.alpha-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 1rem;
}

.alpha-sidebar-search {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alpha-sidebar-search .form-control {
    padding: 0.6rem 1rem;
}

.alpha-sidebar-search .btn {
    width: 100%;
}

.alpha-sidebar-popular li,
.alpha-sidebar-categories li {
    margin-bottom: 0.6rem;
}

.alpha-sidebar-popular a,
.alpha-sidebar-categories a {
    color: var(--kpy-grey);
    text-decoration: none;
    font-size: 0.95rem;
}

.alpha-sidebar-popular a:hover,
.alpha-sidebar-categories a:hover {
    color: var(--kpy-primary);
}

.alpha-sidebar-categories a span {
    margin-left: 0.25rem;
    color: var(--kpy-grey);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .alpha-category-post-thumb {
        max-width: 100%;
    }

    .alpha-category-sidebar {
        position: static;
    }
}

/* Wide layout: content sits freely, not squashed in a narrow container */
.alpha-layout-wide .alpha-wrap,
.alpha-layout-wide .category-content-section .container {
    max-width: none;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.alpha-wrap.alpha-wrap--wide {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 1400px) {
    .alpha-wrap.alpha-wrap--wide {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Magazine/shortcode layout: wider container so content isn't squashed */
.magazine-layout .container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.magazine-layout.magazine-layout--fluid .container {
    max-width: none;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.mag-pagination {
    margin-top: 2.5rem;
    text-align: center;
}

.mag-pagination .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.mag-pagination .page-numbers a,
.mag-pagination .page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    min-width: 44px;
    text-align: center;
    background: #f1f3f5;
    color: var(--kpy-base);
    text-decoration: none;
    border-radius: 40px 0 40px 0;
    font-weight: 600;
}

.mag-pagination .page-numbers a:hover,
.mag-pagination .page-numbers .current {
    background: var(--kpy-primary);
    color: #fff;
}

/* PLANVEST-style CTA button (footer & homepage) */
.alpha-cta-btn-planvest:hover {
    background: var(--kpy-primary-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 92, 92, 0.4) !important;
}

/* Services/Products card hover */
.alpha-service-card-planvest:hover,
.alpha-product-card-planvest:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Modern process cards (3-step layout, matching reference design) */
.alpha-process-modern-section .alpha-process-card-modern {
    position: relative;
}

.alpha-process-modern-section .alpha-process-card-modern::before,
.alpha-process-modern-section .alpha-process-card-modern::after {
    content: '';
    position: absolute;
    border: 2px solid #e3ebef;
    width: 42px;
    height: 42px;
    pointer-events: none;
}

.alpha-process-modern-section .alpha-process-card-modern::before {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 18px 0 0;
}

.alpha-process-modern-section .alpha-process-card-modern::after {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 18px;
}

/* Careers page hero and cards (image left, text right, job cards 2-per-row) */
.alpha-careers-page .alpha-careers-hero-image-wrap {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

.alpha-careers-page .alpha-careers-hero-image-blob,
.alpha-careers-page .alpha-careers-hero-image-blob-secondary {
    position: absolute;
    border-radius: 999px;
    background: var(--kpy-primary-25);
    filter: blur(0);
}

.alpha-careers-page .alpha-careers-hero-image-blob {
    width: 260px;
    height: 260px;
    top: -20px;
    left: -20px;
    background: var(--kpy-primary-25);
}

.alpha-careers-page .alpha-careers-hero-image-blob-secondary {
    width: 220px;
    height: 220px;
    bottom: -10px;
    right: -10px;
    background: var(--kpy-primary-50);
    opacity: 0.8;
}

.alpha-careers-page .alpha-careers-hero-image-inner {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.alpha-careers-page .alpha-careers-hero-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alpha-careers-page .alpha-careers-hero-placeholder {
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kpy-primary);
    color: #fff;
    font-size: 3rem;
}

.alpha-careers-page .alpha-careers-hero-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.alpha-careers-page .alpha-careers-hero-badge-number {
    color: var(--kpy-primary);
    font-weight: 800;
}

.alpha-careers-page .alpha-careers-hero-badge-label {
    font-size: 0.8rem;
    color: #4a5568;
}

.alpha-careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.alpha-career-card-mini {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e3ebef;
    padding: 1.7rem 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    min-height: 230px;
}

.alpha-career-card-mini-main {
    margin-bottom: 1rem;
}

.alpha-career-card-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.alpha-career-card-mini-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: #e9f6f6;
    color: var(--kpy-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.alpha-career-card-mini-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.alpha-career-card-mini-salary {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--kpy-primary);
}

.alpha-career-card-mini-desc {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0 0 0.65rem;
}

.alpha-career-card-mini-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
    font-size: 0.8rem;
    color: #718096;
}

.alpha-career-card-mini-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.alpha-career-card-mini-meta i {
    font-size: 0.9rem;
    color: var(--kpy-primary);
}

.alpha-career-card-mini-footer {
    display: flex;
    justify-content: flex-end;
}

.alpha-career-details-btn {
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--kpy-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.alpha-career-details-btn:hover {
    background: var(--kpy-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(3, 92, 92, 0.35);
}

/* Modal */
.alpha-career-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1040;
}

.alpha-career-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1050;
}

.alpha-career-modal.is-open,
.alpha-career-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.alpha-career-modal-dialog {
    max-width: 720px;
    width: 100%;
    margin: 1.5rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.alpha-career-modal-body {
    padding: 2rem 2rem 2.25rem;
}

.alpha-career-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    border: none;
    background: transparent;
    color: #4a5568;
    font-size: 1rem;
    cursor: pointer;
}

.alpha-career-modal-open {
    overflow: hidden;
}

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

    .alpha-careers-page .alpha-careers-hero-image-wrap {
        max-width: 260px;
    }
}




:root {
    /* Alpha Asset Managers Brand Colors - Alpha Green (#035c5c) */
    --kpy-primary: #035c5c;
    --kpy-primary-rgb: 6, 92, 93;
    --kpy-primary-dark: #024a4a;
    --kpy-primary-light: #1a7a7a;
    --kpy-primary-lighter: #4a9d9d;
    --kpy-primary-75: rgba(6, 92, 93, 0.75);
    --kpy-primary-50: rgba(6, 92, 93, 0.50);
    --kpy-primary-25: rgba(6, 92, 93, 0.25);

    /* Brand Green Tints (from brand palette) */
    --alpha-green-75: #047a7a;
    /* 75% tint */
    --alpha-green-50: #4a9d9d;
    /* 50% tint */
    --alpha-green-25: #8fc0c0;
    /* 25% tint */
    --alpha-green-light: #b8d9d9;
    /* Very light tint */
    --alpha-green-bg: #e6f2f2;
    /* Background tint */

    /* Secondary Colors - Alpha Green variations */
    --kpy-secondary: #1a7a7a;
    --kpy-secondary-rgb: 26, 122, 122;
    --kpy-secondary-dark: #024a4a;
    --kpy-secondary-light: #4a9d9d;

    /* Accent Colors - Light tints of Alpha Green */
    --kpy-accent: var(--alpha-green-bg);
    --kpy-accent-dark: #d0e8e8;
    --kpy-accent-light: #f0f7f7;

    /* Neutral Colors */
    --kpy-base: #1A202C;
    --kpy-dark: #2D3748;
    --kpy-grey: #718096;
    --kpy-light-grey: #E2E8F0;
    --kpy-white: #FFFFFF;
    --kpy-black: #000000;

    /* Background Colors - Using green tints */
    --kpy-bg-primary: #FFFFFF;
    --kpy-bg-secondary: var(--alpha-green-bg);
    --kpy-bg-accent: var(--alpha-green-light);
    --kpy-bg-dark: #1A202C;
    --kpy-bg-overlay: rgba(6, 92, 93, 0.8);
    --kpy-bg-green-light: var(--alpha-green-25);
    --kpy-bg-green-medium: var(--alpha-green-50);

    /* Typography */
    --kpy-font-primary: "Inter", system-ui, -apple-system, sans-serif;
    --kpy-font-heading: "Poppins", var(--kpy-font-primary);
    --kpy-font-secondary: "Roboto", var(--kpy-font-primary);

    /* Property Type Colors - Using Alpha Green variations */
    --kpy-property-sale: #035c5c;
    --kpy-property-rent: #1a7a7a;
    --kpy-property-land: #4a9d9d;
    --kpy-property-commercial: #024a4a;

    /* Border Radius - Custom shape */
    --kpy-border-radius-custom: 0 20px 0 20px;

    /* Shadows & Effects */
    --kpy-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --kpy-shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
    --kpy-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --kpy-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --kpy-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --kpy-space-xs: 0.5rem;
    --kpy-space-sm: 1rem;
    --kpy-space-md: 1.5rem;
    --kpy-space-lg: 3rem;
    --kpy-space-xl: 4rem;
    --kpy-space-2xl: 6rem;

    /* Gradients - Alpha Green based with multiple shades */
    --kpy-gradient-primary: linear-gradient(135deg, #035c5c 0%, #047a7a 50%, #024a4a 100%);
    --kpy-gradient-secondary: linear-gradient(135deg, #1a7a7a 0%, #4a9d9d 50%, #024a4a 100%);
    --kpy-gradient-accent: linear-gradient(135deg, #e6f2f2 0%, #b8d9d9 50%, #d0e8e8 100%);
    --kpy-gradient-hero: linear-gradient(135deg, rgba(3, 92, 92, 0.95) 0%, rgba(4, 122, 122, 0.85) 50%, rgba(2, 74, 74, 0.95) 100%);
    --kpy-gradient-light: linear-gradient(135deg, var(--alpha-green-25) 0%, var(--alpha-green-light) 100%);
    --kpy-gradient-medium: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-75) 100%);

    /* Bootstrap Compatibility */
    --bs-primary: var(--kpy-primary);
    --bs-primary-rgb: var(--kpy-primary-rgb);
    --bs-secondary: var(--kpy-secondary);
    --bs-secondary-rgb: var(--kpy-secondary-rgb);
    --bs-success: var(--kpy-secondary);
    --bs-warning: var(--kpy-primary);
    --bs-dark: var(--kpy-base);
    --bs-body-color: var(--kpy-grey);
    --bs-body-bg: var(--kpy-bg-primary);
    --bs-body-font-family: var(--kpy-font-primary);
    --bs-heading-color: var(--kpy-base);
    /* Legacy aliases (no LS/Kasenga references – map to Alpha) */
    --ls-font-primary: var(--kpy-font-primary);
    --ls-font-heading: var(--kpy-font-heading);
    --ls-black: var(--kpy-black);
    --ls-base: var(--kpy-base);
    --ls-grey: var(--kpy-grey);
    --ls-white: var(--kpy-white);
    --ls-primary: var(--kpy-primary);
    --ls-primary-dark: var(--kpy-primary-dark);
    --ls-secondary: var(--kpy-secondary);
    --ls-secondary-dark: var(--kpy-secondary-dark);
    --ls-accent: var(--kpy-accent);
    --ls-transition: var(--kpy-transition);
    --ls-shadow: var(--kpy-shadow);
    --ls-shadow-lg: var(--kpy-shadow-lg);
    --ls-bg-secondary: var(--kpy-bg-secondary);
    --ls-light-grey: var(--kpy-light-grey);
    --ls-space-md: var(--kpy-space-md);
    --ls-water-blue: var(--kpy-primary);
    --ls-civil-grey: var(--kpy-grey);
    --ls-supply-green: var(--kpy-secondary);
}



html {
    font-family: var(--ls-font-primary) !important;
    color: var(--ls-black);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ls-font-primary) !important;
    font-weight: 400;
    color: var(--ls-grey);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f7f7 100%);
    background-attachment: fixed;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(3, 92, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(3, 92, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(3, 92, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Alpha Graphics Background */
body::after {
    content: 'ALPHA';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(3, 92, 92, 0.02);
    font-family: var(--kpy-font-heading, 'Arial', sans-serif);
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--ls-font-heading) !important;
    font-weight: 600;
    color: var(--ls-base);
    line-height: 1.3;
}

h1,
.h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5,
.h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6,
.h6 {
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }
}

.btn {
    font-family: var(--ls-font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all var(--ls-transition);
    border-width: 2px;
}

.btn-primary {
    background: var(--kpy-gradient-primary);
    border-color: var(--kpy-primary);
    color: var(--ls-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--kpy-gradient-medium);
    border-color: var(--alpha-green-75);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.4);
}

.btn-outline-primary {
    color: var(--ls-primary);
    border-color: var(--ls-primary);
}

.btn-outline-primary:hover {
    background-color: var(--ls-primary);
    border-color: var(--ls-primary);
}

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

.btn-success {
    background-color: var(--ls-accent);
    border-color: var(--ls-accent);
}

.card {
    border: none;
    box-shadow: var(--ls-shadow);
    transition: all var(--ls-transition);
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ls-shadow-lg);
}

.card-header {
    background-color: var(--ls-bg-secondary);
    border-bottom: 2px solid var(--ls-light-grey);
    font-weight: 600;
}

.navbar-brand {
    font-family: var(--ls-font-heading) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 700;
    transition: color var(--ls-transition);
}

.nav-link:hover {
    color: var(--ls-white) !important;
}

.text-primary {
    color: var(--kpy-primary) !important;
}

.text-primary-75 {
    color: var(--alpha-green-75) !important;
}

.text-primary-50 {
    color: var(--alpha-green-50) !important;
}

.text-primary-25 {
    color: var(--alpha-green-25) !important;
}

.text-secondary {
    color: var(--ls-secondary) !important;
}

.text-success {
    color: var(--ls-accent) !important;
}

.text-muted {
    color: var(--ls-grey) !important;
}

.bg-primary {
    background: var(--kpy-gradient-primary) !important;
}

.bg-secondary {
    background: var(--kpy-gradient-medium) !important;
}

.bg-light {
    background: var(--alpha-green-bg) !important;
}

.bg-green-75 {
    background: var(--alpha-green-75) !important;
}

.bg-green-50 {
    background: var(--alpha-green-50) !important;
}

.bg-green-25 {
    background: var(--alpha-green-25) !important;
}

.ls-construction {
    color: var(--kpy-primary);
}

.ls-water {
    color: var(--ls-water-blue);
}

.ls-civil {
    color: var(--ls-civil-grey);
}

.ls-supply {
    color: var(--ls-supply-green);
}

.bg-construction {
    background-color: var(--kpy-primary);
}

.bg-water {
    background-color: var(--ls-water-blue);
}

.bg-civil {
    background-color: var(--ls-civil-grey);
}

.bg-supply {
    background-color: var(--ls-supply-green);
}

.gradient-primary {
    background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-primary-dark) 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--ls-secondary) 0%, var(--ls-secondary-dark) 100%);
}

.gradient-hero {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.9) 0%, rgba(43, 108, 176, 0.9) 100%);
}

.floating-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.floating-circles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(229, 62, 62, 0.08);
    animation: floatOrb 15s ease-in-out infinite;
}

.floating-circles span:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-duration: 14s;
}

.floating-circles span:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 80%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.floating-circles span:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 15%;
    animation-duration: 16s;
    animation-delay: 4s;
}

.floating-circles span:nth-child(4) {
    width: 140px;
    height: 140px;
    top: 80%;
    left: 85%;
    animation-duration: 20s;
    animation-delay: 1s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -40px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, -80px) rotate(180deg);
    }

    75% {
        transform: translate(20px, -40px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.shadow-ls {
    box-shadow: var(--ls-shadow) !important;
}

.shadow-ls-lg {
    box-shadow: var(--ls-shadow-lg) !important;
}

.py-ls {
    padding-top: var(--ls-space-md);
    padding-bottom: var(--ls-space-md);
}

.my-ls {
    margin-top: var(--ls-space-md);
    margin-bottom: var(--ls-space-md);
}

.border-primary {
    border-color: var(--ls-primary) !important;
}

.border-secondary {
    border-color: var(--ls-secondary) !important;
}

.hover-lift {
    transition: transform var(--ls-transition);
}

.hover-lift:hover {
    transform: translateY(-3px);
}

.form-control:focus {
    border-color: var(--ls-primary);
    box-shadow: 0 0 0 0.2rem rgba(229, 62, 62, 0.25);
}

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

a:hover {
    color: var(--ls-primary-dark);
}

/** ==========================================================
Menu
===========================================================**/
/** ==========================================================
Ginger Martin Inspired Menu Design
===========================================================**/

/* Header Section Wrapper */
.header-section {
    position: relative;
    z-index: 1000;
}

/* ============================================
   ALPHA THREE-TIERED HEADER STRUCTURE
   ============================================ */

.alpha-three-tier-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.alpha-three-tier-header.scrolled {
    box-shadow: none;
}

.alpha-header-sticky-wrap {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    transition: box-shadow 0.25s ease;
}

.alpha-header-sticky-wrap.sticky-header {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Tier 1: Top Utility Bar */
.alpha-top-bar {
    background: var(--kpy-primary);
    padding: 10px 0;
    font-size: 13px;
    width: 100%;
}

.alpha-top-bar .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.alpha-top-bar .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alpha-top-bar-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.alpha-top-bar-text {
    color: #fff;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.alpha-top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
}

/* Top Bar Contact Details */
.alpha-top-contact-details {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.alpha-top-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.alpha-top-contact-item i {
    font-size: 13px;
    color: #fff;
}

.alpha-top-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 10px;
}

.alpha-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.alpha-social-icons a {
    color: var(--kpy-primary) !important;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.alpha-social-icons a:hover {
    color: var(--kpy-primary-dark) !important;
    transform: translateY(-2px);
    background: rgba(3, 92, 92, 0.1);
    border-radius: 4px;
}

/* Tier 2: Middle Section with Logo and Contact */
.alpha-middle-bar {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

.alpha-middle-bar .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Override any Bootstrap container max-width for middle bar */
.alpha-middle-bar>.container {
    max-width: 100% !important;
    width: 100% !important;
}

.alpha-logo-section {
    display: flex;
    align-items: center;
}

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

.alpha-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--kpy-primary);
}

.alpha-logo-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kpy-primary-light);
    border-radius: 8px;
}

.alpha-logo-icon {
    font-size: 28px;
    color: var(--kpy-primary);
}

.alpha-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.alpha-logo-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--kpy-primary);
    line-height: 1.2;
}

.alpha-logo-text strong {
    font-weight: 700;
}

.alpha-logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
}

.alpha-search-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alpha-search-wrapper {
    width: 100%;
    max-width: 500px;
}

.alpha-search-form {
    width: 100%;
}

.alpha-search-form .input-group {
    display: flex;
    width: 100%;
}

.alpha-search-input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 25px 0 0 25px;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.alpha-search-input:focus {
    border-color: var(--kpy-primary);
    box-shadow: 0 0 0 3px rgba(3, 92, 92, 0.1);
}

.alpha-search-btn {
    background: var(--kpy-primary);
    color: #fff;
    border: 1px solid var(--kpy-primary);
    border-left: none;
    border-radius: 0 25px 25px 0;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alpha-search-btn:hover {
    background: var(--kpy-primary-dark);
    border-color: var(--kpy-primary-dark);
}

.alpha-search-btn i {
    font-size: 16px;
}

.alpha-contact-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
}

/* Social Icons Section in Middle Bar */
.alpha-social-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
}

.alpha-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
}

.alpha-contact-item:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

.alpha-contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alpha-contact-icon {
    font-size: 18px;
    color: #666;
}

.alpha-contact-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alpha-contact-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.alpha-contact-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

/* Tier 3: Main Navigation Bar */
.alpha-nav-bar {
    background: var(--kpy-primary) !important;
    padding: 0;
    width: 100%;
    min-height: 60px;
}

.alpha-nav-bar .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
    background: transparent !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.alpha-nav-bar .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.alpha-nav-bar .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
}

/* Override any Bootstrap container max-width for nav bar */
.alpha-nav-bar>.container {
    max-width: 100% !important;
    width: 100% !important;
}

.alpha-main-nav {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: transparent !important;
}

.alpha-nav-logo-mobile {
    display: none;
    align-items: center;
    gap: 8px;
    margin-right: 0.5rem;
}

.alpha-nav-logo-mobile img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.alpha-nav-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--kpy-primary);
    text-decoration: none;
}

.alpha-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    background: transparent !important;
}

.alpha-nav-menu li {
    position: relative;
    margin: 0;
}

.alpha-nav-menu li a {
    display: block;
    padding: 18px 20px;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.alpha-nav-menu li a:hover,
.alpha-nav-menu li.current-menu-item>a {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.alpha-nav-menu li.has-mega-menu>a::after,
.alpha-nav-menu li.has-simple-dropdown>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.alpha-nav-menu li.has-mega-menu:hover>a::after,
.alpha-nav-menu li.has-simple-dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* Hide any Bootstrap icon chevrons if they exist */
.alpha-nav-menu li a i.bi-chevron-down {
    display: none !important;
}

/* Dropdown Menus */
.alpha-nav-menu .simple-dropdown,
.alpha-nav-menu .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--kpy-primary) !important;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.alpha-nav-menu li:hover>.simple-dropdown,
.alpha-nav-menu li:hover>.mega-menu {
    display: block;
}

.alpha-nav-menu .simple-dropdown li,
.alpha-nav-menu .mega-menu li {
    margin: 0;
}

.alpha-nav-menu .simple-dropdown a,
.alpha-nav-menu .mega-menu a {
    padding: 12px 20px;
    color: #fff !important;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
}

.alpha-nav-menu .simple-dropdown a:hover,
.alpha-nav-menu .mega-menu a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

/* Mobile Menu Toggle */
.alpha-mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-left: auto;
}

.alpha-mobile-menu-toggle i {
    font-size: 22px;
    color: var(--kpy-primary);
}

/* Mobile Menu Overlay - dark green primary, professional */
.alpha-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--kpy-primary-dark, #024a4a);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.alpha-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.alpha-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid var(--kpy-primary);
    color: var(--kpy-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.alpha-mobile-menu-close:hover {
    background: var(--kpy-primary);
    color: #fff;
}

.alpha-mobile-menu-content {
    width: 90%;
    max-width: 500px;
    padding: 2.5rem 1.5rem;
}

.alpha-mobile-menu-logo {
    margin-bottom: 2rem;
}

.alpha-mobile-menu-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.alpha-mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-mobile-nav-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alpha-mobile-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.alpha-mobile-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    padding-left: 26px;
}

/* Top-level items with dropdown */
.alpha-mobile-nav-menu .has-children>a {
    padding-right: 10px;
}

.alpha-mobile-nav-menu .mobile-dropdown-arrow {
    margin-left: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: transform 0.25s ease;
}

.alpha-mobile-nav-menu .has-children.expanded>a .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.alpha-mobile-nav-menu .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.25);
}

.alpha-mobile-nav-menu .mobile-submenu a {
    padding-left: 32px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .alpha-top-contact-details {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .alpha-top-separator {
        display: none;
    }

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

    .alpha-search-section {
        margin-bottom: 15px;
    }

    .alpha-social-section {
        justify-content: center;
    }

    .alpha-contact-item {
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .alpha-contact-value {
        font-size: 12px;
    }

    /* Show compact logo on mobile nav bar */
    .alpha-nav-logo-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    /* Hide horizontal nav on mobile */
    .alpha-nav-menu {
        display: none;
    }

    /* Show hamburger on mobile */
    .alpha-mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Hide middle bar (search & socials) on mobile */
    .alpha-middle-bar {
        display: none;
    }

    /* Space logo + hamburger in third tier */
    .alpha-main-nav {
        justify-content: space-between;
        align-items: center;
    }

    body {
        padding-top: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .alpha-top-bar-text {
        font-size: 12px;
    }

    .alpha-middle-bar {
        padding: 15px 0;
    }

    .alpha-logo-text {
        font-size: 18px;
    }

    .alpha-search-section {
        margin-bottom: 15px;
    }

    .alpha-top-contact-item {
        font-size: 11px;
    }

    .alpha-social-section {
        justify-content: center;
        margin-top: 10px;
    }

    .alpha-contact-section {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .alpha-contact-item {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 10px 0;
        width: 100%;
    }

    .alpha-contact-item:last-child {
        border-bottom: none;
    }

    /* On small mobile, make the top nav bar white */
    .alpha-nav-bar {
        padding: 8px 0;
        background: #ffffff !important;
        border-bottom: 1px solid #e5e5e5;
    }
}

/* Body padding to account for fixed header */
body {
    padding-top: 180px;
    /* Adjust based on actual header height */
}

@media (max-width: 991.98px) {
    body {
        padding-top: 160px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 200px;
    }
}

/* Main Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

.main-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header Inner Container */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo Section */
.header-logo-section {
    flex: 0 0 auto;
}

.header-logo-wrapper {
    background: #ffffff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo-wrapper .logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-logo-wrapper .logo-placeholder-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 60px;
    height: 60px;
}

.header-logo-wrapper .logo-placeholder-circle {
    width: 60px;
    height: 60px;
    background: var(--kpy-primary, #035c5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--kpy-font-heading);
    letter-spacing: 0.05em;
}

.main-header.scrolled .header-logo-wrapper {
    padding: 12px 18px;
}

.main-header.scrolled .header-logo-wrapper .logo-img {
    height: 50px;
}

.main-header.scrolled .header-logo-wrapper .logo-placeholder-link {
    width: 50px;
    height: 50px;
}

.main-header.scrolled .header-logo-wrapper .logo-placeholder-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
}

/* Header Navigation */
.header-nav-section {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-menu>li {
    position: relative;
}

.header-menu .nav-link {
    color: var(--kpy-white);
    font-family: var(--kpy-font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--kpy-white);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Remove underline on nav items with dropdowns */
.header-menu .has-mega-menu .nav-link::after,
.header-menu .has-simple-dropdown .nav-link::after {
    display: none;
}

.header-menu .nav-link:hover {
    color: var(--kpy-primary);
    opacity: 1;
}

.header-menu .nav-link:hover::after {
    width: 80%;
    background: var(--kpy-primary);
}

.header-menu .current-menu-item .nav-link {
    color: var(--kpy-white);
    opacity: 1;
}

.header-menu .current-menu-item .nav-link::after {
    width: 80%;
}

.header-menu .nav-link .bi-chevron-down {
    font-size: 0.7rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.header-menu .has-mega-menu:hover .nav-link .bi-chevron-down,
.header-menu .has-simple-dropdown:hover .nav-link .bi-chevron-down {
    transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kpy-white);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    margin-top: 0.5rem;
    display: none;
    z-index: 1050;
    min-width: 600px;
    max-width: 1000px;
    width: max-content;
    border-top: 2px solid var(--kpy-primary);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2.5rem;
    background: var(--kpy-primary) !important;
}

.mega-menu-column {
    min-width: 200px;
}

.mega-menu-category>a {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.mega-menu-category>a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Simple Dropdown */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--kpy-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-top: 0.5rem;
    display: none;
    z-index: 1050;
    min-width: 220px;
    list-style: none;
    padding: 1rem 0;
    border-top: 2px solid var(--kpy-primary);
}

.simple-dropdown a {
    color: var(--kpy-grey);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.simple-dropdown:not(.alpha-nav-menu .simple-dropdown) a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding-left: 2rem;
}

/* Sub Menu for Mega Menu */
.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-menu li {
    margin-bottom: 0.5rem;
}

.alpha-nav-menu .sub-menu a {
    color: #fff !important;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.alpha-nav-menu .sub-menu a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.alpha-nav-menu .sub-menu a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 0.75rem;
}

/* Hover Effects */
.has-mega-menu:hover .mega-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.has-simple-dropdown:hover .simple-dropdown {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Header Actions */
.header-actions-section {
    flex: 0 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.kpy-menu-language-switcher {
    position: relative;
}

.kpy-menu-lang-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--kpy-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.kpy-menu-lang-toggle:hover {
    border-color: var(--kpy-white);
    background: rgba(255, 255, 255, 0.25);
}

.main-header.scrolled .kpy-menu-lang-toggle {
    background: transparent;
    border: 1px solid var(--kpy-light-grey);
    color: var(--kpy-base);
    backdrop-filter: none;
}

.main-header.scrolled .kpy-menu-lang-toggle:hover {
    border-color: var(--kpy-primary);
    color: var(--kpy-primary);
    background: rgba(3, 92, 92, 0.05);
}

.kpy-menu-lang-flag {
    font-size: 1.2rem;
}

.kpy-menu-lang-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.kpy-menu-lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.kpy-menu-lang-dropdown.active .kpy-menu-lang-arrow {
    transform: rotate(180deg);
}

.kpy-menu-lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--kpy-white);
    border: 1px solid var(--kpy-light-grey);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
    pointer-events: none;
}

.kpy-menu-lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.kpy-menu-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--kpy-grey);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--kpy-light-grey);
    cursor: pointer;
    pointer-events: auto;
}

.kpy-menu-lang-option:last-child {
    border-bottom: none;
}

.kpy-menu-lang-option:hover {
    background: rgba(3, 92, 92, 0.05);
    color: var(--kpy-primary);
}

.kpy-menu-lang-option.active {
    background: rgba(3, 92, 92, 0.1);
    color: var(--kpy-primary);
}

.kpy-menu-lang-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Search Toggle */
.search-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--kpy-white);
    width: 42px;
    height: 42px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.search-toggle:hover {
    border-color: var(--kpy-white);
    background: rgba(255, 255, 255, 0.25);
}

.main-header.scrolled .search-toggle {
    background: transparent;
    border: 1px solid var(--kpy-light-grey);
    color: var(--kpy-base);
    backdrop-filter: none;
}

.main-header.scrolled .search-toggle:hover {
    border-color: var(--kpy-primary);
    color: var(--kpy-primary);
}

/* Navigation for scrolled state */
.main-header.scrolled .header-menu .nav-link {
    color: var(--kpy-base);
}

.main-header.scrolled .header-menu .nav-link::after {
    background: var(--kpy-primary);
}

.main-header.scrolled .header-menu .nav-link:hover {
    color: var(--kpy-primary);
    opacity: 1;
}

.main-header.scrolled .header-menu .nav-link:hover::after {
    background: var(--kpy-primary);
}

/* Remove underline on dropdown nav items when scrolled */
.main-header.scrolled .header-menu .has-mega-menu .nav-link::after,
.main-header.scrolled .header-menu .has-simple-dropdown .nav-link::after {
    display: none;
}

.main-header.scrolled .header-menu .current-menu-item .nav-link {
    color: var(--kpy-primary);
}

/* Header Search Bar */
.header-search-bar {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: var(--kpy-bg-secondary);
    border-top: 1px solid var(--kpy-light-grey);
}

.header-search-bar.active {
    max-height: 120px;
    opacity: 1;
    padding: 1.5rem 0;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-search-bar .form-control {
    border: 1px solid var(--kpy-light-grey);
    border-radius: 4px 0 0 4px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    background: var(--kpy-white);
    color: var(--kpy-base);
}

.header-search-bar .form-control:focus {
    border-color: var(--kpy-primary);
    box-shadow: 0 0 0 0.2rem rgba(3, 92, 92, 0.15);
    outline: none;
}

.header-search-bar .btn-search {
    border-radius: 0 4px 4px 0;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--kpy-primary);
    background: var(--kpy-primary);
    color: var(--kpy-white);
    transition: all 0.3s ease;
}

.header-search-bar .btn-search:hover {
    background: var(--kpy-primary-dark);
    border-color: var(--kpy-primary-dark);
}

/* Search Results */
#header-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--kpy-white);
    border: 1px solid var(--kpy-light-grey);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
}

#header-search-results li a {
    display: block;
    color: var(--kpy-base);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--kpy-light-grey);
    transition: all 0.3s ease;
}

#header-search-results li:last-child a {
    border-bottom: none;
}

#header-search-results li a:hover {
    background: rgba(3, 92, 92, 0.05);
    color: var(--kpy-primary);
    padding-left: 1.5rem;
}

/* Fullscreen Navigation Overlay */
.fullscreen-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.98);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.fullscreen-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Close Button */
.nav-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--kpy-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    z-index: 2001;
}

.nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Fullscreen Navigation Content */
.fullscreen-nav-content {
    padding: 6rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Main Navigation Column */
.nav-main-column {
    padding-right: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fullscreen-nav-main {
    padding: 2rem 0;
}

.fullscreen-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fullscreen-nav-list>li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fullscreen-nav-list>li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 1.25rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: var(--kpy-font-heading);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.mobile-nav-link:hover {
    color: var(--kpy-primary);
    padding-left: 1rem;
}

.current-menu-item .mobile-nav-link {
    color: var(--kpy-primary);
}

/* Mobile Dropdown Arrow */
.mobile-dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.has-children.expanded .mobile-submenu {
    max-height: 1000px;
    padding: 1rem 0;
}

.mobile-submenu .mobile-nav-link {
    padding: 0.875rem 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.mobile-submenu .mobile-nav-link:hover {
    color: var(--kpy-primary);
    padding-left: 2rem;
}

/* Info Column */
.nav-info-column {
    padding-left: 3rem;
}

.nav-contact-section {
    padding: 2rem 0;
}

.nav-section-title {
    color: var(--kpy-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.nav-contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: var(--kpy-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--kpy-primary);
}

/* Social Section */
.nav-social-section {
    margin-top: 3rem;
}

.nav-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--kpy-white);
    border-radius: 50%;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-social-icon:hover {
    background: var(--kpy-primary);
    border-color: var(--kpy-primary);
    color: var(--kpy-white);
    transform: translateY(-3px);
}

/* ============================================================
   Oppenheim Group Style Navigation Overlay
   ============================================================ */

.og-nav-overlay {
    background: transparent !important;
    position: relative;
}

.og-nav-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 1;
}

.og-nav-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.og-nav-content {
    position: relative;
    z-index: 3;
    padding: 60px 50px;
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.og-nav-left {
    padding-right: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.og-nav-scrollable {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.og-nav-scrollable {
    max-height: calc(100vh - 160px);
    overflow-y: visible;
    overflow-x: hidden;
    padding-right: 20px;
}

.og-nav-scrollable::-webkit-scrollbar {
    width: 6px;
}

.og-nav-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.og-nav-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.og-nav-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.og-nav-col {
    margin-bottom: 15px;
}

.og-nav-heading {
    font-family: var(--kpy-font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--kpy-primary, #035c5c);
    margin-bottom: 15px;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(3, 92, 92, 0.3);
}

.og-nav-list {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.og-nav-list li {
    margin-bottom: 6px;
}

.og-nav-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    display: block;
    padding: 3px 0;
}

.og-nav-list li a:hover {
    color: var(--kpy-primary);
    padding-left: 5px;
}

/* Right Column - Logo & Contact */
.og-nav-right {
    padding-left: 40px;
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
}

.og-nav-logo-section {
    position: sticky !important;
    top: 80px !important;
    background: #ffffff !important;
    padding: 30px 25px !important;
    border-radius: 20px 0 20px 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%) !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

.og-nav-logo {
    margin-bottom: 20px;
    text-align: center;
}

.og-logo-img {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.og-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    font-family: var(--kpy-font-heading);
    letter-spacing: 0.05em;
}

.og-nav-brand {
    margin-bottom: 20px;
    text-align: center;
}

.og-brand-name {
    font-family: var(--kpy-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.og-brand-divider {
    width: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 10px auto;
}

.og-brand-subtitle {
    font-family: var(--kpy-font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kpy-primary);
    text-align: center;
    margin: 0;
    position: relative;
    padding: 0 10px;
}

.og-brand-subtitle::before,
.og-brand-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--kpy-primary);
}

.og-brand-subtitle::before {
    left: 0;
}

.og-brand-subtitle::after {
    right: 0;
}

.og-nav-contact {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.og-contact-email {
    font-size: 0.9rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

.og-contact-email a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.og-contact-email a:hover {
    color: var(--kpy-primary);
}

.og-contact-separator {
    margin: 0 10px;
    color: rgba(0, 0, 0, 0.3);
}

.og-contact-dre {
    color: #666666;
    font-size: 0.85rem;
}

/* Office Locations */
.og-nav-offices {
    margin-top: 30px;
}

.og-office-item {
    margin-bottom: 20px;
}

.og-office-name {
    font-family: var(--kpy-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kpy-primary);
    margin: 0 0 6px 0;
}

.og-office-address {
    font-size: 0.8rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Close Button */
.og-close-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.og-close-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-inner {
        padding: 0 1.5rem;
    }

    .header-menu {
        gap: 0.25rem;
    }

    .header-menu .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .og-nav-content {
        padding: 60px 40px;
    }

    .og-nav-left {
        padding-right: 30px;
    }

    .og-nav-right {
        padding-left: 30px;
    }
}

@media (max-width: 991.98px) {
    .header-nav-section {
        display: none !important;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .search-toggle,
    .hamburger-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-main-column {
        border-right: none;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .nav-info-column {
        padding-left: 0;
    }

    .og-nav-content {
        padding: 60px 30px;
    }

    .og-nav-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .og-nav-right {
        padding-left: 0;
        padding-top: 40px;
    }

    .og-nav-logo-section {
        position: relative;
        top: 0;
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
        padding: 30px 25px;
    }
}

@media (max-width: 767.98px) {
    .main-header {
        padding: 1rem 0;
    }

    .main-header.scrolled {
        padding: 0.75rem 0;
    }

    .header-logo .logo-img {
        height: 45px;
    }

    .main-header.scrolled .header-logo .logo-img {
        height: 40px;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .search-container {
        padding: 0 1rem;
    }

    .fullscreen-nav-content {
        padding: 5rem 1rem 3rem;
    }

    .mobile-nav-link {
        font-size: 1.25rem;
        padding: 1rem 0;
    }

    .mobile-submenu .mobile-nav-link {
        font-size: 1rem;
    }

    .nav-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .contact-value {
        font-size: 1rem;
    }

    .og-nav-content {
        padding: 50px 20px;
    }

    .og-nav-heading {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .og-nav-list li a {
        font-size: 0.85rem;
    }

    .og-brand-name {
        font-size: 1.5rem;
    }

    .og-office-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .kpy-menu-lang-toggle {
        padding: 0.5rem 0.75rem;
    }

    .kpy-menu-lang-text {
        display: none;
    }

    .search-toggle,
    .hamburger-toggle {
        width: 36px;
        height: 36px;
    }

    .hamburger-toggle span {
        width: 18px;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
    }

    .nav-section-title {
        font-size: 0.8rem;
    }

    .search-toggle:hover {
        border-color: var(--kpy-primary);
        color: var(--kpy-primary);
    }

    /* Hamburger Toggle */
    .hamburger-toggle {
        background: var(--kpy-primary);
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        gap: 5px;
        padding: 10px;
    }

    .hamburger-toggle:hover {
        background: var(--kpy-primary-dark);
    }

    .hamburger-toggle span {
        width: 22px;
        height: 2px;
        background: var(--kpy-white);
        display: block;
        transition: all 0.3s ease;
    }

    /* Header Search Bar */
    .header-search-bar {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
        background: var(--kpy-bg-secondary);
        border-top: 1px solid var(--kpy-light-grey);
    }

    .header-search-bar.active {
        max-height: 120px;
        opacity: 1;
        padding: 1.5rem 0;
    }

    .search-container {
        max-width: 700px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .header-search-bar .form-control {
        border: 1px solid var(--kpy-light-grey);
        border-radius: 4px 0 0 4px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        background: var(--kpy-white);
        color: var(--kpy-base);
    }

    .header-search-bar .form-control:focus {
        border-color: var(--kpy-primary);
        box-shadow: 0 0 0 0.2rem rgba(3, 92, 92, 0.15);
        outline: none;
    }

    .header-search-bar .btn-search {
        border-radius: 0 4px 4px 0;
        padding: 0.875rem 1.5rem;
        border: 1px solid var(--kpy-primary);
        background: var(--kpy-primary);
        color: var(--kpy-white);
        transition: all 0.3s ease;
    }

    .header-search-bar .btn-search:hover {
        background: var(--kpy-primary-dark);
        border-color: var(--kpy-primary-dark);
    }

    /* Search Results */
    #header-search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 50;
        background: var(--kpy-white);
        border: 1px solid var(--kpy-light-grey);
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        margin-top: 0.5rem;
        max-height: 400px;
        overflow-y: auto;
    }

    #header-search-results li a {
        display: block;
        color: var(--kpy-base);
        text-decoration: none;
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--kpy-light-grey);
        transition: all 0.3s ease;
    }

    #header-search-results li:last-child a {
        border-bottom: none;
    }

    #header-search-results li a:hover {
        background: rgba(3, 92, 92, 0.05);
        color: var(--kpy-primary);
        padding-left: 1.5rem;
    }

    /* Fullscreen Navigation Overlay */
    .fullscreen-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 32, 44, 0.98);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .fullscreen-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Navigation Close Button */
    .nav-close-btn {
        position: fixed;
        top: 2rem;
        right: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--kpy-white);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.5rem;
        z-index: 2001;
    }

    .nav-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    /* Fullscreen Navigation Content */
    .fullscreen-nav-content {
        padding: 6rem 2rem 4rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    /* Main Navigation Column */
    .nav-main-column {
        padding-right: 3rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .fullscreen-nav-main {
        padding: 2rem 0;
    }

    .fullscreen-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .fullscreen-nav-list>li {
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .fullscreen-nav-list>li:last-child {
        border-bottom: none;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        padding: 1.25rem 0;
        font-size: 1.5rem;
        font-weight: 500;
        font-family: var(--kpy-font-heading);
        transition: all 0.3s ease;
        letter-spacing: -0.01em;
    }

    .mobile-nav-link:hover {
        color: var(--kpy-primary);
        padding-left: 1rem;
    }

    .current-menu-item .mobile-nav-link {
        color: var(--kpy-primary);
    }

    /* Mobile Dropdown Arrow */
    .mobile-dropdown-arrow {
        font-size: 1rem;
        transition: transform 0.3s ease;
        opacity: 0.6;
    }

    /* Mobile Submenu */
    .mobile-submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        margin-top: 0.5rem;
    }

    .has-children.expanded .mobile-submenu {
        max-height: 1000px;
        padding: 1rem 0;
    }

    .mobile-submenu .mobile-nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 400;
    }

    .mobile-submenu .mobile-nav-link:hover {
        color: var(--kpy-primary);
        padding-left: 2rem;
    }

    /* Info Column */
    .nav-info-column {
        padding-left: 3rem;
    }

    .nav-contact-section {
        padding: 2rem 0;
    }

    .nav-section-title {
        color: var(--kpy-white);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 2rem;
        opacity: 0.6;
    }

    .nav-contact-info {
        margin-bottom: 3rem;
    }

    .contact-item {
        margin-bottom: 2rem;
    }

    .contact-label {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .contact-value {
        color: var(--kpy-white);
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
    }

    .contact-value:hover {
        color: var(--kpy-primary);
    }

    /* Social Section */
    .nav-social-section {
        margin-top: 3rem;
    }

    .nav-social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .nav-social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--kpy-white);
        border-radius: 50%;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-social-icon:hover {
        background: var(--kpy-primary);
        border-color: var(--kpy-primary);
        color: var(--kpy-white);
        transform: translateY(-3px);
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .header-inner {
            padding: 0 1.5rem;
        }

        .header-menu {
            gap: 0.25rem;
        }

        .header-menu .nav-link {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 991.98px) {
        .header-nav-section {
            display: none !important;
        }

        .header-inner {
            padding: 0 1rem;
        }

        .header-actions {
            gap: 0.75rem;
        }

        .search-toggle,
        .hamburger-toggle {
            width: 38px;
            height: 38px;
        }

        .nav-main-column {
            border-right: none;
            padding-right: 0;
            margin-bottom: 3rem;
        }

        .nav-info-column {
            padding-left: 0;
        }
    }

    @media (max-width: 767.98px) {
        .main-header {
            padding: 0.75rem 0;
        }

        .header-logo .logo-img {
            height: 40px;
        }

        .main-header.scrolled .header-logo .logo-img {
            height: 35px;
        }

        .header-inner {
            padding: 0 1rem;
        }

        .search-container {
            padding: 0 1rem;
        }

        .fullscreen-nav-content {
            padding: 5rem 1rem 3rem;
        }

        .mobile-nav-link {
            font-size: 1.25rem;
            padding: 1rem 0;
        }

        .mobile-submenu .mobile-nav-link {
            font-size: 1rem;
        }

        .nav-close-btn {
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
        }

        .contact-value {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .kpy-menu-lang-toggle {
            padding: 0.5rem 0.75rem;
        }

        .kpy-menu-lang-text {
            display: none;
        }

        .search-toggle,
        .hamburger-toggle {
            width: 36px;
            height: 36px;
        }

        .hamburger-toggle span {
            width: 18px;
        }

        .mobile-nav-link {
            font-size: 1.1rem;
        }

        .nav-section-title {
            font-size: 0.8rem;
        }
    }

    /** ==========================================================
 Liberty Scope Service Detail Template Styles
===========================================================**/


    .service-hero-section {
        padding: 5rem 0;
        background: var(--ls-bg-secondary);
    }

    .service-hero-title {
        font-family: var(--ls-font-heading);
        font-weight: 700;
        color: var(--ls-base);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-hero-subtitle {
        font-size: 1.25rem;
        color: var(--ls-primary);
        margin-bottom: 1.5rem;
    }

    .service-hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .service-hero-stats {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .service-stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: var(--ls-primary);
    }

    .service-stat-label {
        font-size: 0.9rem;
        color: var(--ls-grey);
    }

    .service-hero-actions {
        margin-top: 2rem;
    }

    .service-services-section {
        padding: 5rem 0;
    }

    .service-section-title {
        font-family: var(--ls-font-heading);
        font-weight: 600;
        color: var(--ls-base);
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-section-subtitle {
        font-size: 1.1rem;
        color: var(--ls-grey);
        margin-bottom: 3rem;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-process-section {
        padding: 5rem 0;
        background: var(--ls-bg-secondary);
    }

    .service-step-number {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--ls-primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .service-image-placeholder {
        width: 100%;
        height: 400px;
        background: var(--ls-light-grey);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bg-water-light {
        background-color: rgba(0, 119, 190, 0.1);
    }

    @media (max-width: 768px) {
        .service-hero-title {
            font-size: 2rem;
        }

        .service-section-title {
            font-size: 1.75rem;
        }

        .service-hero-stats {
            flex-direction: column;
            gap: 1rem;
        }
    }


    /** ==========================================================
 Liberty Scope Footer Styles
===========================================================**/

    .ls-footer {
        position: relative;
        background: var(--ls-bg-dark);
        color: var(--ls-light-grey);
        margin-top: auto;
    }

    .footer-top-wave {
        height: 20px;
        background: var(--ls-primary);
        border-radius: 0 0 50% 50% / 0 0 100% 100%;
        transform: scaleX(1.5);
    }

    .ls-logo-icon {
        display: inline-flex;
        align-items: center;
        padding: 12px;
        background: var(--ls-bg-secondary);
        border-radius: 12px;
    }

    .ls-icon-combined {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .ls-logo-text {
        font-family: var(--ls-font-heading);
        font-weight: 700;
        color: var(--ls-white);
        margin-left: 10px;
    }

    .ls-specializations {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ls-specialization-badge {
        padding: 4px 10px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 500;
        color: white;
    }

    .ls-footer h5 {
        color: var(--ls-white);
        margin-bottom: 20px;
        font-weight: 600;
        border-left: 4px solid var(--ls-primary);
        padding-left: 12px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--ls-light-grey);
        text-decoration: none;
        transition: color var(--ls-transition);
        display: flex;
        align-items: center;
    }

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

    .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-contact li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }

    .footer-contact i {
        color: var(--ls-primary);
        margin-right: 10px;
        margin-top: 4px;
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--ls-white);
        transition: all var(--ls-transition);
    }

    .social-link:hover {
        transform: translateY(-3px);
    }

    .social-link.facebook:hover {
        background: #3b5998;
    }

    .social-link.twitter:hover {
        background: #1da1f2;
    }

    .social-link.linkedin:hover {
        background: #0077b5;
    }

    .social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .social-link.youtube:hover {
        background: #ff0000;
    }

    .footer-bottom {
        background: rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        text-align: center;
    }

    .footer-bottom a {
        color: var(--ls-light-grey);
        text-decoration: none;
        transition: color var(--ls-transition);
    }

    .footer-bottom a:hover {
        color: var(--ls-primary);
    }

    .footer-logo-curve-position {
        position: relative;
        z-index: 2;
        margin-top: -75px;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo-wrapper {
        display: inline-block;
        padding: 10px 20px;
    }

    @media (max-width: 768px) {
        .ls-footer {
            text-align: center;
        }

        .footer-contact li {
            justify-content: center;
        }

        .ls-specializations {
            justify-content: center;
        }

        .footer-links a {
            justify-content: center;
        }
    }

    /** ==========================================================
Main Slides
===========================================================**/
    .main-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .main-slider .swiper-slide {
        position: relative;
        height: 100vh;
        min-height: 800px;
    }

    .main-slider .container {
        position: relative;
        padding-top: 80px;
        z-index: 3;
        height: 100%;
        display: flex;
        align-items: flex-start;
    }

    .image-layer,
    .slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgba(3, 92, 92, 0.50) 0%, rgba(3, 92, 92, 0.40) 20%, rgba(3, 92, 92, 0.30) 40%, rgba(3, 92, 92, 0.20) 60%, rgba(3, 92, 92, 0.10) 80%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

    .main-slider .swiper-slide-active .image-layer {
        transform: scale(1.15);
    }

    .main-slider-content {
        position: relative;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-top: 120px;
    }

    .main-slider-content__inner {
        width: 80%;
        margin: auto;
    }

    .big-title h2 {
        color: #ffffff;
        font-size: 80px;
        line-height: 1.0;
        margin: 0 0 30px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
        text-align: center;
        font-weight: 700;
    }

    .text p {
        color: #ffffff;
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 60px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
    }

    .bottom-buttons-container {
        position: absolute;
        bottom: 120px;
        left: 0;
        width: 100%;
        z-index: 4;
        display: flex;
        justify-content: center;
    }

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

    .buttons {
        padding: 12px 25px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .buttons-learn-more {
        background-color: #ffffff;
        color: #e30613;
        border: 2px solid #ffffff;
    }

    .buttons-learn-more:hover {
        background-color: transparent;
        color: #ffffff;
    }

    .buttons-get-quote {
        background-color: #e30613;
        color: #ffffff;
        border: 2px solid #e30613;
    }

    .buttons-get-quote:hover {
        background-color: transparent;
        color: #e30613;
    }

    .curved-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        z-index: 3;
    }

    @media (max-width: 768px) {
        .main-slider .swiper-slide {
            height: 85vh;
            min-height: 600px;
        }

        .kpy-slide {
            min-height: 600px;
            height: 85vh;
        }

        .main-slider .container {
            padding-top: 120px;
        }

        .main-slider-content__inner {
            width: 100%;
            text-align: center;
        }

        .main-slider .kpy-slide-title h2 {
            font-size: 2.5rem;
        }

        .main-slider .kpy-slide-btns {
            flex-direction: row;
            gap: 0.75rem;
        }

        .main-slider .kpy-slide-btn {
            padding: 0.7rem 1.35rem;
            font-size: 0.85rem;
        }

        .big-title h2 {
            font-size: 2.5rem;
        }

        .bottom-buttons-container {
            bottom: 100px;
        }

        .hero-buttons {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .hero-buttons .buttons {
            flex: 1 1 auto;
            text-align: center;
            min-width: 140px;
        }

        .curved-bottom {
            height: 100px;
        }

        /* Left Social Icons Responsive */
        .kpy-slider-left-social {
            left: 20px;
            gap: 15px;
        }

        .kpy-social-icon {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        /* Right Navigation Responsive */
        .kpy-slider-right-nav {
            right: 20px;
            gap: 15px;
        }

        .kpy-nav-link {
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .kpy-nav-link-all {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 576px) {
        .main-slider .swiper-slide {
            height: 80vh;
            min-height: 550px;
        }

        .kpy-slide {
            min-height: 550px;
            height: 80vh;
        }

        .main-slider .container {
            padding-top: 100px;
        }

        .big-title h2 {
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .main-slider .kpy-slide-title h2 {
            font-size: 1.75rem;
        }

        .main-slider .kpy-slide-text,
        .main-slider .kpy-slide-text p {
            font-size: 1rem;
        }

        .main-slider .kpy-slide-btns {
            flex-direction: column;
            align-items: center;
            margin-top: 1.25rem;
        }

        .main-slider .kpy-slide-btn {
            width: 100%;
            max-width: 260px;
            text-align: center;
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
        }

        .text p {
            font-size: 0.9rem;
        }

        .bottom-buttons-container {
            bottom: 80px;
        }

        .curved-bottom {
            height: 80px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-buttons .buttons {
            width: 100%;
            max-width: 250px;
        }

        /* Left Social Icons Mobile */
        .kpy-slider-left-social {
            left: 15px;
            gap: 12px;
            top: auto;
            bottom: 180px;
            transform: none;
        }

        .kpy-social-icon {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }

        /* Right Navigation Mobile */
        .kpy-slider-right-nav {
            right: 15px;
            gap: 12px;
            top: auto;
            bottom: 120px;
            transform: none;
        }

        .kpy-nav-link {
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            padding: 8px 0;
        }

        .kpy-nav-link-all {
            font-size: 0.75rem;
            margin-top: 8px;
            padding-top: 15px;
        }
    }


    /*==========================================================
Inner Page Hero Section
==========================================================**/


    .hero-section {
        position: relative;
        height: 400px;
        overflow: hidden;
    }

    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: zoomInOut 15s ease-in-out infinite;
        z-index: 1;
    }

    /*.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; z-index: 2; }*/
    .hero-content {
        text-align: center;
        color: white;
        z-index: 3;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-breadcrumb {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .hero-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .hero-breadcrumb a:hover {
        text-decoration: underline;
    }

    .spiritual-element {
        position: absolute;
        font-size: 2rem;
        opacity: 0.7;
        animation: float 6s ease-in-out infinite;
        z-index: 2;
    }

    .curved-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        z-index: 3;
    }

    @keyframes zoomInOut {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            height: 300px;
        }

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

        .spiritual-element {
            font-size: 1.5rem;
        }
    }

    /*==========================================================
Clients Section
==========================================================**/

    .ls-clients-showcase {
        background-color: var(--ls-bg-secondary);
        padding: var(--ls-space-xl) 0;
    }

    .ls-clients-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--ls-space-md);
        display: grid;
        gap: var(--ls-space-lg);
    }

    .ls-clients-split {
        display: flex;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--ls-shadow);
        transition: var(--ls-transition);
    }

    .ls-clients-split:hover {
        transform: translateY(-3px);
        box-shadow: var(--ls-shadow-lg);
    }

    .ls-clients-image-side {
        flex: 1;
        background-size: cover;
        background-position: center;
    }

    .ls-clients-content-side {
        flex: 1;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(229, 62, 62, 0.95) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .ls-clients-content {
        text-align: center;
    }

    .ls-clients-title {
        font-family: var(--ls-font-heading);
        font-weight: 600;
        color: var(--ls-white);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .ls-clients-description {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .ls-clients-read-more-btn {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: var(--ls-white);
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all var(--ls-transition);
        display: inline-flex;
        align-items: center;
    }

    .ls-clients-read-more-btn:hover {
        background-color: var(--ls-white);
        color: var(--ls-base);
        border-color: var(--ls-white);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .ls-clients-split {
            flex-direction: column;
            height: auto;
        }

        .ls-clients-image-side {
            height: 200px;
        }

        .ls-clients-title {
            font-size: 1.25rem;
        }

        .ls-clients-description {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .ls-clients-image-side {
            height: 180px;
        }

        .ls-clients-title {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
        }

        .ls-clients-description {
            margin-bottom: 1rem;
        }

        .ls-clients-read-more-btn {
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
        }
    }

    .ls-clients-modal-content {
        border: none;
        border-radius: 10px;
    }

    .ls-clients-modal-header {
        border-bottom: 2px solid var(--ls-light-grey);
    }

    .ls-clients-modal-body {
        padding: 2rem;
    }

    .ls-clients-modal-footer {
        border-top: 2px solid var(--ls-light-grey);
    }

    /*==========================================================
GENERAL PAGE STYLES
==========================================================**/







    /* ======================== */
    /* Liberty Scope Services Styles */
    /* ======================== */

    .liberty-services-wrapper {
        position: relative;
        background-color: var(--ls-bg-secondary);
        padding: var(--ls-space-lg) 0;
    }

    .liberty-services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: var(--ls-space-lg);
        margin-bottom: var(--ls-space-md);
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--ls-space-md);
    }

    .liberty-service-card {
        background: var(--ls-bg-primary);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--ls-shadow);
        transition: all var(--ls-transition);
        display: flex;
        height: 400px;
    }

    .liberty-service-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--ls-shadow-lg);
    }

    .liberty-service-card.ls-construction {
        border-left: 4px solid var(--kpy-primary);
    }

    .liberty-service-card.ls-water {
        border-left: 4px solid var(--ls-water-blue);
    }

    .liberty-service-card.ls-supply {
        border-left: 4px solid var(--ls-supply-green);
    }

    .liberty-service-card.ls-civil {
        border-left: 4px solid var(--ls-civil-grey);
    }

    .liberty-service-image {
        flex: 1;
        height: 100%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }

    .liberty-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--ls-transition);
    }

    .liberty-service-card:hover .liberty-service-image img {
        transform: scale(1.02);
    }

    .liberty-service-content {
        flex: 1;
        padding: var(--ls-space-lg) var(--ls-space-md);
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
        color: var(--ls-white);
        text-align: center;
        position: relative;
    }

    .liberty-service-content h3 {
        margin-top: 0;
        color: var(--ls-white);
        font-family: var(--ls-font-heading);
        font-size: 1.5rem;
        margin-bottom: var(--ls-space-sm);
        font-weight: 600;
    }

    .liberty-service-excerpt {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: var(--ls-space-sm);
        line-height: 1.6;
    }

    .liberty-service-duration {
        background: rgba(255, 255, 255, 0.2);
        color: var(--ls-white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: var(--ls-space-sm);
        font-size: 0.9rem;
        font-weight: 500;
        backdrop-filter: blur(10px);
    }

    .liberty-service-features {
        margin: 0 0 var(--ls-space-md) 0;
        padding: 0;
        list-style: none;
        text-align: left;
    }

    .liberty-service-features li {
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        color: rgba(255, 255, 255, 0.9);
    }

    .liberty-service-features li i {
        color: var(--ls-accent);
        margin-right: 10px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .liberty-btn {
        background: rgba(255, 255, 255, 0.9);
        color: var(--ls-base);
        padding: 0.75rem 1.5rem;
        text-align: center;
        border-radius: 6px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all var(--ls-transition);
        margin-top: auto;
        display: inline-block;
        text-decoration: none;
        border: 2px solid transparent;
    }

    .liberty-btn:hover {
        background: var(--ls-white);
        color: var(--ls-base);
        transform: translateY(-2px);
        box-shadow: var(--ls-shadow);
    }

    .liberty-service-card.ls-construction .liberty-btn {
        background: var(--kpy-primary);
        color: var(--ls-white);
    }

    .liberty-service-card.ls-construction .liberty-btn:hover {
        background: #e55a2b;
        color: var(--ls-white);
    }

    .liberty-service-card.ls-water .liberty-btn {
        background: var(--ls-water-blue);
        color: var(--ls-white);
    }

    .liberty-service-card.ls-water .liberty-btn:hover {
        background: #0066a7;
        color: var(--ls-white);
    }

    .liberty-service-card.ls-supply .liberty-btn {
        background: var(--ls-supply-green);
        color: var(--ls-white);
    }

    .liberty-service-card.ls-supply .liberty-btn:hover {
        background: #218838;
        color: var(--ls-white);
    }

    .liberty-service-card.ls-civil .liberty-btn {
        background: var(--ls-civil-grey);
        color: var(--ls-white);
    }

    .liberty-service-card.ls-civil .liberty-btn:hover {
        background: #5a6268;
        color: var(--ls-white);
    }

    /* Service Type Icons */
    .liberty-service-content::before {
        content: "";
        position: absolute;
        top: var(--ls-space-md);
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
        height: 48px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.8;
    }

    .liberty-service-card.ls-construction .liberty-service-content::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6B35' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z'/%3E%3Cpath d='M2 17L12 22L22 17'/%3E%3Cpath d='M2 12L12 17L22 12'/%3E%3C/svg%3E");
    }

    .liberty-service-card.ls-water .liberty-service-content::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230077BE' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C13.09 8.26 20 9 20 16C20 20.42 16.42 24 12 24S4 20.42 4 16C4 9 10.91 8.26 12 2Z'/%3E%3C/svg%3E");
    }

    .liberty-service-card.ls-supply .liberty-service-content::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2328A745' viewBox='0 0 24 24'%3E%3Cpath d='M17.66 7.93L12 2.27L6.34 7.93C3.22 11.05 3.22 16.28 6.34 19.4C7.9 20.96 9.95 21.74 12 21.74C14.05 21.74 16.1 20.96 17.66 19.4C20.78 16.28 20.78 11.05 17.66 7.93Z'/%3E%3C/svg%3E");
    }

    .liberty-service-card.ls-civil .liberty-service-content::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236C757D' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z'/%3E%3C/svg%3E");
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .liberty-services-container {
            grid-template-columns: 1fr;
            gap: var(--ls-space-md);
        }

        .liberty-service-card {
            flex-direction: column;
            height: auto;
        }

        .liberty-service-image {
            height: 200px;
        }

        .liberty-service-content {
            padding: var(--ls-space-md);
            text-align: center;
        }

        .liberty-service-content::before {
            position: relative;
            top: 0;
            left: 0;
            transform: none;
            margin: 0 auto var(--ls-space-sm);
            display: block;
        }

        .liberty-service-features {
            text-align: left;
        }

        .liberty-service-content h3 {
            font-size: 1.25rem;
            margin-top: var(--ls-space-sm);
        }
    }

    @media (max-width: 576px) {
        .liberty-services-container {
            padding: 0 var(--ls-space-sm);
        }

        .liberty-service-card {
            margin-bottom: var(--ls-space-md);
        }

        .liberty-service-image {
            height: 180px;
        }

        .liberty-service-content {
            padding: var(--ls-space-sm);
        }

        .liberty-service-content h3 {
            font-size: 1.125rem;
        }

        .liberty-btn {
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
        }
    }

    /* ======================== */
    /*  Home section  */
    /* ======================== */

    /* Hero Section Styles */
    .ls-hero-section {
        position: relative;
        padding: 100px 0;
        background-color: var(--ls-bg-secondary);
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .ls-floating-dots-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.1;
    }

    .ls-pattern-dot {
        position: absolute;
        width: 4px;
        height: 4px;
        background-color: var(--ls-grey);
        border-radius: 50%;
    }

    .ls-hero-content {
        position: relative;
        z-index: 2;
        padding: 40px 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-right: 40px;
        padding-left: 40px;
    }

    .ls-hero-badge {
        display: inline-block;
        padding: 8px 20px;
        background-color: var(--ls-primary);
        color: var(--ls-white);
        font-family: var(--ls-font-heading);
        font-weight: 500;
        font-size: 1rem;
        border-radius: 20px;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .ls-hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--ls-primary);
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .ls-hero-brand {
        color: var(--ls-base);
        display: inline-flex;
        align-items: center;
        gap: 15px;
    }

    .ls-company-icon {
        font-size: 3rem;
        color: var(--ls-primary);
    }

    .ls-hero-subtitle {
        font-size: 1.1rem;
        color: var(--ls-grey);
        line-height: 1.6;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .ls-hero-description {
        font-size: 1rem;
        color: var(--ls-grey);
        line-height: 1.6;
        margin-bottom: 40px;
        font-weight: 400;
    }

    .ls-hero-stats {
        display: flex;
        gap: 50px;
        margin-bottom: 40px;
        align-items: center;
    }

    .ls-hero-stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .ls-stat-number {
        font-size: 4rem;
        font-weight: 700;
        color: var(--ls-primary);
        font-family: var(--ls-font-heading);
        line-height: 1;
        transition: all 0.3s ease;
    }

    .ls-stat-text {
        display: flex;
        flex-direction: column;
    }

    .ls-stat-label {
        font-size: 1rem;
        color: var(--ls-grey);
        font-weight: 400;
        line-height: 1;
    }

    .ls-stat-value {
        font-size: 1.1rem;
        color: var(--ls-base);
        font-weight: 600;
        font-family: var(--ls-font-heading);
        line-height: 1;
        margin-top: 2px;
    }

    .ls-hero-images-container {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px;
        gap: 15px;
        height: 515px;
    }

    .ls-hero-image {
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .ls-hero-image-main {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .ls-hero-image-office {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .ls-hero-image-stool {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .ls-floating-shape {
        position: absolute;
        background: linear-gradient(135deg, rgba(229, 62, 62, 0.1) 0%, rgba(197, 48, 48, 0.1) 100%);
        border-radius: 50%;
    }

    .ls-shape-1 {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 10%;
        animation: floatOrb 20s ease-in-out infinite;
    }

    .ls-shape-2 {
        width: 150px;
        height: 150px;
        bottom: 20%;
        left: 10%;
        animation: floatOrb 15s ease-in-out infinite reverse;
    }

    .ls-shape-3 {
        width: 100px;
        height: 100px;
        top: 50%;
        right: 20%;
        animation: floatOrb 18s ease-in-out infinite;
        animation-delay: 5s;
    }

    /* Relaxer Section Styles */
    .ls-relaxer-section {
        background-color: var(--ls-bg-dark);
        padding: 120px 0;
        color: var(--ls-white);
        position: relative;
    }

    .ls-relaxer-badge {
        padding: 8px 20px;
        padding-top: 5px;
        background-color: var(--ls-primary);
        color: var(--ls-white);
        font-family: var(--ls-font-heading);
        font-weight: 500;
        font-size: 1rem;
        border-radius: 20px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
        width: 40px;
    }

    .ls-relaxer-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--ls-white);
    }

    .ls-relaxer-subtitle {
        color: var(--ls-primary);
        font-size: 1.2rem;
        margin-bottom: 3rem;
        font-weight: 500;
    }

    .ls-relaxer-description {
        font-size: 1.0rem;
        line-height: 1.8;
        margin-bottom: 3rem;
        color: var(--ls-light-grey);
    }

    .ls-relaxer-btn {
        background-color: var(--ls-primary);
        color: var(--ls-white);
        padding: 15px 30px;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .ls-relaxer-btn:hover {
        background-color: var(--ls-primary-dark);
        transform: translateY(-2px);
    }

    .ls-relaxer-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .ls-benefit-icon {
        width: 60px;
        height: 60px;
        background-color: var(--ls-primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ls-benefit-icon span {
        color: var(--ls-white);
        font-size: 24px;
    }

    .ls-benefit-content h4 {
        color: var(--ls-white);
        font-size: 1.0rem;
        margin-bottom: 0.5rem;
    }

    .ls-benefit-content p {
        color: var(--ls-light-grey);
        margin: 0;
    }

    /* Ribbon Styling for Benefit Content */
    .ls-benefit-content .ribbon-content {
        height: 80px;
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(0, 0, 0, 0.2);
        font-size: 1.0rem;
        font-weight: 600;
    }

    .ls-benefit-content .ribbon-content::before {
        content: '';
        position: absolute;
        top: 4px;
        left: 0;
        right: 0;
        height: 5px;
        background: repeating-linear-gradient(to right, transparent 0px, rgba(255, 255, 255, 0.3) 3px, transparent 6px, rgba(255, 255, 255, 0.3) 9px);
    }

    .ls-benefit-content .ribbon-content::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        height: 1px;
        background: repeating-linear-gradient(to right, transparent 0px, rgba(255, 255, 255, 0.3) 3px, transparent 6px, rgba(255, 255, 255, 0.3) 9px);
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .ls-hero-title {
            font-size: 3rem;
        }

        .ls-stat-number {
            font-size: 3.5rem;
        }

        .ls-hero-stats {
            gap: 30px;
        }
    }

    @media (max-width: 992px) {
        .ls-hero-section {
            padding: 80px 0;
        }

        .ls-hero-title {
            font-size: 2.5rem;
            text-align: center;
        }

        .ls-hero-subtitle,
        .ls-hero-description {
            text-align: center;
        }

        .ls-hero-stats {
            justify-content: center;
        }

        .ls-hero-images-container {
            margin-top: 40px;
        }

        .ls-relaxer-benefits {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .ls-hero-title {
            font-size: 2rem;
        }

        .ls-stat-number {
            font-size: 3rem;
        }

        .ls-hero-stats {
            gap: 20px;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .ls-hero-images-container {
            height: 400px;
            grid-template-rows: 190px 190px;
        }

        .ls-benefit-item {
            flex-direction: column;
            text-align: center;
        }

        .ls-benefit-icon {
            align-self: center;
        }
    }




    /* SERVICES SECTION STYLES */
    .ls-services-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
    }

    .ls-services-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .ls-services-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .ls-services-badge {
        display: inline-block;
        background: var(--ls-primary);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }

    .ls-services-title {
        font-size: 48px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .ls-services-subtitle {
        font-size: 18px;
        color: #6c757d;
        line-height: 1.6;
        margin: 0;
    }

    /* Main Grid Layout - Large Left + Stacked Right */
    .ls-services-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
        margin-top: 60px;
        height: 500px;
    }

    /* Large Service Card */
    .ls-service-card-large {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .ls-service-card-large:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Right Side Container */
    .ls-services-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
    }

    /* Small Service Cards */
    .ls-service-card-small {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: calc(50% - 10px);
    }

    .ls-service-card-small:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Common Card Styles */
    .ls-service-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        transition: transform 0.8s ease;
    }

    .ls-service-card:hover .ls-service-image {
        transform: scale(1.1);
    }

    .ls-service-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
        z-index: 1;
        transition: opacity 0.5s ease;
    }

    .ls-service-card:hover .ls-service-image::before {
        opacity: 0.8;
    }

    .ls-service-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        z-index: 2;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
        transition: all 0.5s ease;
    }

    .ls-service-card:hover .ls-service-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
        padding-bottom: 40px;
    }

    .ls-service-content {
        color: white;
        transition: transform 0.5s ease;
    }

    .ls-service-card:hover .ls-service-content {
        transform: translateY(-5px);
    }

    /* Typography for Large Cards */
    .ls-service-card-large .ls-service-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
        line-height: 1.3;
        transition: all 0.3s ease;
    }

    .ls-service-card:hover .ls-service-title {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .ls-service-card-large .ls-service-excerpt {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0.9;
    }

    .ls-service-card:hover .ls-service-excerpt {
        opacity: 1;
        -webkit-line-clamp: 4;
    }

    /* Typography for Small Cards */
    .ls-service-card-small .ls-service-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
        line-height: 1.3;
    }

    .ls-service-card-small .ls-service-excerpt {
        display: none;
    }

    /* Link Styles */
    .ls-service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .ls-service-link:hover {
        border-bottom-color: #fff;
        gap: 12px;
    }

    .ls-service-link svg {
        transition: transform 0.3s ease;
    }

    .ls-service-link:hover svg {
        transform: translateX(4px);
    }

    /* Small Card Link Adjustment */
    .ls-service-card-small .ls-service-link {
        font-size: 14px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .ls-services-grid {
            grid-template-columns: 1.5fr 1fr;
            height: 450px;
        }

        .ls-service-card-large .ls-service-title {
            font-size: 24px;
        }

        .ls-service-card-small .ls-service-title {
            font-size: 18px;
        }
    }

    @media (max-width: 768px) {
        .ls-services-section {
            padding: 60px 0;
        }

        .ls-services-title {
            font-size: 36px;
        }

        .ls-services-subtitle {
            font-size: 16px;
        }

        .ls-services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 40px;
            height: auto;
        }

        .ls-service-card-large {
            height: 350px;
        }

        .ls-service-card-small {
            height: 250px;
        }

        .ls-services-right {
            flex-direction: column;
            gap: 20px;
        }

        .ls-service-overlay {
            padding: 25px;
        }

        .ls-service-card-large .ls-service-title {
            font-size: 22px;
        }

        .ls-service-card-small .ls-service-title {
            font-size: 18px;
        }

        .ls-service-card:hover .ls-service-image {
            transform: scale(1.05);
        }
    }

    @media (max-width: 480px) {
        .ls-services-header {
            margin-bottom: 40px;
        }

        .ls-services-title {
            font-size: 28px;
        }

        .ls-service-card-large {
            height: 300px;
        }

        .ls-service-card-small {
            height: 220px;
        }

        .ls-services-grid {
            gap: 15px;
        }

        .ls-service-overlay {
            padding: 20px;
        }
    }

    /* Animation for cards on load */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ls-service-card-large {
        animation: fadeInUp 0.6s ease forwards;
    }

    .ls-service-card-small:nth-child(1) {
        animation: fadeInUp 0.6s ease forwards;
        animation-delay: 0.1s;
    }

    .ls-service-card-small:nth-child(2) {
        animation: fadeInUp 0.6s ease forwards;
        animation-delay: 0.2s;
    }

    /*==========================================================
General Pages Styles
==========================================================**/

    /* Services Cards Styles */

    /*=============================================================================
   MAGAZINE EDITORIAL LAYOUT - KIPYA TEMPLATE
   Modern News/Blog Design with Featured Posts & Sidebar
=============================================================================*/

    /* MAGAZINE LAYOUT CONTAINER */
    .magazine-layout {
        background: #f8f9fa;
        padding: 4rem 0;
    }

    .mag-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 3rem;
        align-items: start;
    }

    /* mag-main-content container removed per request; content sits directly in mag-content-wrapper */

    /*=== FEATURED POST ===*/
    .mag-featured-post {
        margin-bottom: 3rem;
        border-bottom: 3px solid var(--kpy-primary);
        padding-bottom: 3rem;
    }

    .mag-featured-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .mag-featured-image {
        position: relative;
        width: 100%;
        height: 450px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 2rem;
        background: #f5f5f5;
    }

    .mag-feat-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .mag-featured-post:hover .mag-feat-img {
        transform: scale(1.05);
    }

    .mag-featured-badge {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        background: var(--kpy-primary);
        color: #fff;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(3, 92, 92, 0.4);
        z-index: 2;
    }

    .mag-featured-content {
        padding: 0 1rem;
    }

    .mag-featured-meta {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
        color: var(--kpy-grey);
        font-size: 0.95rem;
    }

    .mag-featured-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mag-featured-meta i {
        color: var(--kpy-primary);
    }

    .mag-featured-title {
        font-family: var(--kpy-font-heading);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--kpy-base);
        line-height: 1.2;
        margin: 0 0 1.5rem;
        transition: color 0.3s ease;
    }

    .mag-featured-post:hover .mag-featured-title {
        color: var(--kpy-primary);
    }

    .mag-featured-excerpt {
        color: var(--kpy-grey);
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .mag-read-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--kpy-primary);
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .mag-featured-post:hover .mag-read-more-btn {
        background: var(--kpy-primary-dark);
        gap: 1rem;
    }

    /*=== SECTION HEADER ===*/
    .mag-section-header {
        margin: 3rem 0 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--kpy-light-grey);
    }

    .mag-section-title {
        font-family: var(--kpy-font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--kpy-base);
        margin: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .mag-section-title i {
        color: var(--kpy-primary);
    }

    /*=== GRID POSTS ===*/
    .mag-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .mag-grid-post {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border: 1px solid #e8e8e8;
    }

    .mag-grid-post:hover {
        box-shadow: 0 8px 25px rgba(3, 92, 92, 0.15);
        transform: translateY(-3px);
    }

    .mag-grid-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .mag-grid-image {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
        background: #f5f5f5;
    }

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

    .mag-grid-post:hover .mag-grid-img {
        transform: scale(1.08);
    }

    .mag-grid-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--kpy-primary);
        color: #fff;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        box-shadow: 0 3px 10px rgba(3, 92, 92, 0.3);
    }

    .mag-grid-content {
        padding: 1.5rem;
    }

    .mag-grid-meta {
        color: var(--kpy-grey);
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .mag-grid-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    .mag-grid-meta i {
        color: var(--kpy-primary);
    }

    .mag-grid-title {
        font-family: var(--kpy-font-heading);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--kpy-base);
        line-height: 1.4;
        margin: 0 0 0.75rem;
        transition: color 0.3s ease;
    }

    .mag-grid-post:hover .mag-grid-title {
        color: var(--kpy-primary);
    }

    .mag-grid-excerpt {
        color: var(--kpy-grey);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
    }

    .ls-related-thumbnail {
        width: 100%;
        height: 120px;
        margin: 0 0 var(--ls-space-sm) 0;
    }
}

/*==========================================================
News PAGE/ BLOG
==========================================================**/


/* Liberty News Grid Styles */
.liberty-news-wrapper {
    position: relative;
    background-color: var(--ls-bg-secondary);
    padding: var(--ls-space-lg) 0;
}

.liberty-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ls-space-md);
}

.liberty-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--ls-space-lg);
    margin-bottom: var(--ls-space-md);
}

.liberty-news-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--ls-transition);
    display: flex;
    height: 350px;
}

.liberty-news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ls-shadow-lg);
}

.liberty-news-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
}

.liberty-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ls-transition);
}

.liberty-news-card:hover .liberty-news-img {
    transform: scale(1.02);
}

.liberty-news-badge {
    position: absolute;
    top: var(--ls-space-sm);
    left: var(--ls-space-sm);
    background: rgba(229, 62, 62, 0.9);
    color: var(--ls-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.liberty-news-content {
    flex: 1;
    padding: var(--ls-space-lg) var(--ls-space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
    color: var(--ls-white);
    text-align: center;
}

.liberty-news-meta {
    margin-bottom: var(--ls-space-sm);
}

.liberty-news-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.liberty-news-title {
    margin: 0 0 var(--ls-space-sm) 0;
    color: var(--ls-white);
    font-family: var(--ls-font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.liberty-news-title a {
    color: var(--ls-white);
    text-decoration: none;
    transition: color var(--ls-transition);
}

.liberty-news-title a:hover {
    color: var(--ls-primary-light);
}

.liberty-news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--ls-space-md);
    line-height: 1.6;
}

.liberty-news-footer {
    margin-top: auto;
}

.liberty-news-btn {
    background: var(--ls-primary);
    color: var(--ls-white);
    padding: 0.75rem 1.5rem;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--ls-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.liberty-news-btn:hover {
    background: var(--ls-primary-dark);
    color: var(--ls-white);
    transform: translateY(-2px);
    box-shadow: var(--ls-shadow);
}

/* Liberty News Slider Styles */
.liberty-slider-wrapper {
    position: relative;
    background: transparent;
    padding: 4rem 0;
}

.liberty-slider-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.liberty-slider-title {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.liberty-slider-subtitle {
    font-size: 1.1rem;
    color: var(--kpy-grey, #718096);
    line-height: 1.6;
}

.liberty-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ls-space-md);
}

.liberty-slider {
    display: flex;
    gap: var(--ls-space-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: var(--ls-space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.liberty-slider::-webkit-scrollbar {
    display: none;
}

.liberty-slide {
    flex: 0 0 350px;
}

.liberty-slide-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--kpy-secondary, #2D8F47);
}

.liberty-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.liberty-slide-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.liberty-slide-image {
    height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.liberty-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ls-transition);
}

.liberty-slide-card:hover .liberty-slide-img {
    transform: scale(1.05);
}

.liberty-slide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    color: #1a1a1a;
}

.liberty-slide-title {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.liberty-slide-excerpt {
    color: var(--kpy-grey, #718096);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.liberty-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--kpy-secondary, #2D8F47);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.875rem;
    text-decoration: none;
}

.liberty-slide-btn:hover {
    background: var(--kpy-secondary-dark, #247539);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 143, 71, 0.3);
    color: #ffffff;
}

.liberty-slider-prev,
.liberty-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: var(--kpy-secondary, #2D8F47);
    border: 2px solid var(--kpy-secondary, #2D8F47);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.liberty-slider-prev:hover,
.liberty-slider-next:hover {
    background: var(--kpy-secondary, #2D8F47);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(45, 143, 71, 0.3);
}

.liberty-slider-prev {
    left: var(--ls-space-sm);
}

.liberty-slider-next {
    right: var(--ls-space-sm);
}

.liberty-slider-empty {
    text-align: center;
    padding: var(--ls-space-xl);
    color: var(--ls-grey);
    font-style: italic;
}

/* Liberty Gallery Styles */
.liberty-gallery-wrapper {
    position: relative;
    background: transparent;
    padding: 4rem 0;
}

.liberty-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.liberty-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.liberty-gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--kpy-secondary, #2D8F47);
}

.liberty-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.liberty-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.liberty-gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.liberty-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ls-transition);
}

.liberty-gallery-card:hover .liberty-gallery-img {
    transform: scale(1.05);
}

.liberty-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 32, 44, 0.95));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.liberty-gallery-card:hover .liberty-gallery-overlay {
    transform: translateY(0);
}

.liberty-gallery-title {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.liberty-gallery-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.liberty-gallery-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    background: #ffffff;
    color: var(--kpy-grey, #718096);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.liberty-gallery-pagination .page-numbers:hover,
.liberty-gallery-pagination .page-numbers.current {
    background: var(--kpy-secondary, #2D8F47);
    color: #ffffff;
    border-color: var(--kpy-secondary, #2D8F47);
}

/* Section Title Style */
.section-title {
    font-family: var(--kpy-font-heading, 'Poppins', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--kpy-primary, #035c5c);
}

.liberty-gallery-pagination .page-numbers:hover,
.liberty-gallery-pagination .page-numbers.current {
    background: var(--ls-primary);
    color: var(--ls-white);
    transform: translateY(-2px);
}

.liberty-no-galleries {
    text-align: center;
    padding: var(--ls-space-xl);
    color: var(--ls-grey);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .liberty-news-grid {
        grid-template-columns: 1fr;
        gap: var(--ls-space-md);
    }

    .liberty-news-card {
        flex-direction: column;
        height: auto;
    }

    .liberty-news-image {
        height: 200px;
    }

    .liberty-news-content {
        padding: var(--ls-space-md);
        text-align: center;
    }

    .liberty-news-title {
        font-size: 1.25rem;
    }

    .liberty-slider-title {
        font-size: 2rem;
    }

    .liberty-slider-subtitle {
        font-size: 1rem;
    }

    .liberty-slide {
        flex: 0 0 280px;
    }

    .liberty-slide-card {
        height: 350px;
    }

    .liberty-slide-image {
        height: 160px;
    }

    .liberty-slide-title {
        font-size: 1.125rem;
    }

    .liberty-slider-prev,
    .liberty-slider-next {
        width: 40px;
        height: 40px;
    }

    .liberty-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--ls-space-md);
    }

    .liberty-gallery-image {
        height: 220px;
    }

    .liberty-gallery-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {

    .liberty-news-container,
    .liberty-slider-container,
    .liberty-gallery-container {
        padding: 0 var(--ls-space-sm);
    }

    .liberty-news-card {
        margin-bottom: var(--ls-space-md);
    }

    .liberty-news-image {
        height: 180px;
    }

    .liberty-news-content {
        padding: var(--ls-space-sm);
    }

    .liberty-news-title {
        font-size: 1.125rem;
    }

    .liberty-news-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .liberty-slider-title {
        font-size: 1.75rem;
    }

    .liberty-slide {
        flex: 0 0 260px;
    }

    .liberty-slide-card {
        height: 320px;
    }

    .liberty-slide-image {
        height: 140px;
    }

    .liberty-slide-content {
        padding: var(--ls-space-sm);
    }

    .liberty-slide-title {
        font-size: 1rem;
    }

    .liberty-slide-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .liberty-gallery-grid {
        grid-template-columns: 1fr;
    }

    .liberty-gallery-image {
        height: 200px;
    }

    .liberty-gallery-overlay {
        padding: var(--ls-space-md) var(--ls-space-sm) var(--ls-space-sm);
    }

    .liberty-gallery-title {
        font-size: 1rem;
    }

    .liberty-gallery-pagination .page-numbers {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
        min-width: 40px;
    }
}



/*==========================================================
ABOUT US PAGES
==========================================================**/
/* Our Background Page Styles */
/* Our Story Section */
.liberty-our-story {
    padding: 100px 0;
    background: var(--ls-bg-primary);
}

.liberty-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.liberty-story-images {
    position: relative;
}

.liberty-image-main {
    position: relative;
    z-index: 2;
}

.liberty-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--ls-shadow-lg);
}

.liberty-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
}

.liberty-image-secondary img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid var(--ls-bg-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.liberty-experience-badge {
    position: absolute;
    bottom: -50px;
    left: -20px;
    background: var(--ls-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 4;
}

.liberty-experience-badge span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.liberty-story-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--ls-base);
}

.liberty-story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ls-grey);
    margin-bottom: 25px;
}

.liberty-story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.liberty-feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--ls-dark);
}

.liberty-check {
    color: var(--ls-primary);
    margin-right: 10px;
    font-weight: bold;
}

.liberty-text-primary {
    color: var(--ls-primary);
}

/* Services Grid Section */
.liberty-services-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ls-bg-secondary) 0%, var(--ls-light-grey) 100%);
}

.liberty-section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 600px;
}

.liberty-section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ls-base);
}

.liberty-section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ls-grey);
}

/* Mission Vision Section */
.liberty-mission-vision {
    padding: 100px 0;
    background: var(--ls-bg-primary);
}

.liberty-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.liberty-mission-card,
.liberty-vision-card {
    background: var(--ls-bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ls-shadow-lg);
}

.liberty-mv-image {
    position: relative;
    overflow: hidden;
}

.liberty-mv-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.liberty-mv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(var(--ls-primary-rgb), 0.9));
    padding: 30px;
    color: white;
}

.liberty-vision-overlay {
    background: linear-gradient(transparent, rgba(var(--ls-dark-rgb), 0.9));
}

.liberty-mv-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.liberty-mv-content {
    padding: 40px;
}

.liberty-mv-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ls-grey);
    margin-bottom: 30px;
}

.liberty-mv-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.liberty-mv-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.liberty-icon {
    font-size: 1.5rem;
}

.liberty-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.liberty-value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ls-primary);
    margin-bottom: 10px;
}

.liberty-value-item p {
    font-size: 0.9rem;
    color: var(--ls-grey);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {

    .liberty-story-grid,
    .liberty-services-container,
    .liberty-mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .liberty-story-content h2,
    .liberty-section-header h2 {
        font-size: 2.2rem;
    }

    .liberty-story-features {
        grid-template-columns: 1fr;
    }

    .liberty-values-grid {
        grid-template-columns: 1fr;
    }

    .liberty-image-secondary {
        position: static;
        margin-top: 20px;
    }

    .liberty-experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}




/* What We Do Page Styles */
.ls-hero-section {
    padding: 7rem 0;
}

.ls-service-card {
    transition: all 0.3s ease;
}

.ls-service-card:hover {
    transform: translateY(-5px);
}

.ls-service-icon {
    transition: all 0.3s ease;
}

.ls-service-card:hover .ls-service-icon {
    transform: scale(1.1);
}

.ls-career-card {
    transition: all 0.3s ease;
}

.ls-career-card:hover {
    transform: translateY(-3px);
}

.ls-blockquote {
    position: relative;
    padding: 1.5rem;
}

.ls-blockquote:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--ls-white);
}

.ls-manager-message {
    position: relative;
    overflow: hidden;
}

.ls-manager-message:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover;
    z-index: -2;
}

.ls-manager-message:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.9) 0%, rgba(43, 108, 176, 0.9) 100%);
    z-index: -1;
}


/* ===================================
   LIBERTY SCOPE CAREERS PAGE STYLES
   =================================== */

/* Hero Section */
.ls-careers-hero {
    position: relative;
    background: var(--ls-gradient-hero);
    padding: var(--ls-space-xl) 0 var(--ls-space-lg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.ls-hero-content {
    position: relative;
    z-index: 3;
    color: var(--ls-white);
}

.ls-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--ls-space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.ls-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--ls-space-lg);
    opacity: 0.95;
    line-height: 1.6;
}

.ls-hero-images {
    position: relative;
    z-index: 3;
}

.ls-hero-images>div {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ls-shadow-lg);
    transform: rotate(2deg);
    margin-bottom: var(--ls-space-sm);
}

.ls-hero-img-2 {
    transform: rotate(-3deg) !important;
    margin-left: 30px;
}

.ls-hero-img-3 {
    transform: rotate(1deg) !important;
    margin-left: 15px;
}

.ls-hero-images img {
    width: 100%;
    height: auto;
    transition: transform var(--ls-transition);
}

.ls-hero-images>div:hover img {
    transform: scale(1.05);
}

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

.ls-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.ls-floating-elements span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatHero 12s ease-in-out infinite;
}

.ls-float-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-duration: 15s;
}

.ls-float-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.ls-float-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 6s;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-15px, -60px) rotate(180deg);
    }

    75% {
        transform: translate(10px, -30px) rotate(270deg);
    }
}

/* Career Categories Section */
.ls-career-categories {
    padding: var(--ls-space-xl) 0;
    background: var(--ls-bg-secondary);
    position: relative;
}

.ls-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ls-base);
    margin-bottom: var(--ls-space-sm);
}

.ls-section-subtitle {
    font-size: 1.125rem;
    color: var(--ls-grey);
    margin-bottom: var(--ls-space-lg);
}

.ls-career-card {
    background: var(--ls-white);
    border-radius: 20px;
    padding: var(--ls-space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--ls-transition);
    box-shadow: var(--ls-shadow);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ls-career-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ls-shadow-lg);
}

.ls-card-icon {
    font-size: 3rem;
    margin-bottom: var(--ls-space-md);
    position: relative;
    z-index: 2;
}

.ls-career-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--ls-space-sm);
    color: var(--ls-base);
    position: relative;
    z-index: 2;
}

.ls-career-card p {
    color: var(--ls-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.ls-card-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--ls-primary), var(--ls-secondary));
    transition: all 0.5s ease;
    z-index: 1;
}

.ls-career-card:hover .ls-card-overlay {
    left: 0;
}

.ls-career-card:hover * {
    color: var(--ls-white) !important;
}

/* Specific card colors */
.ls-civil-card .ls-card-icon {
    color: var(--ls-civil-grey);
}

.ls-water-card .ls-card-icon {
    color: var(--ls-water-blue);
}

.ls-supply-card .ls-card-icon {
    color: var(--ls-supply-green);
}

.ls-management-card .ls-card-icon {
    color: var(--kpy-primary);
}

/* Mission & Vision Section */
.ls-mission-vision {
    padding: var(--ls-space-xl) 0;
    background: var(--ls-white);
}

.ls-mission-card,
.ls-vision-card {
    background: var(--ls-bg-secondary);
    border-radius: 20px;
    padding: var(--ls-space-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all var(--ls-transition);
}

.ls-mission-card:hover,
.ls-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ls-shadow-lg);
}

.ls-mission-header,
.ls-vision-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--ls-space-md);
}

.ls-mission-icon,
.ls-vision-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ls-space-md);
    font-size: 1.5rem;
}

.ls-mission-icon {
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-primary-dark));
    color: var(--ls-white);
}

.ls-vision-icon {
    background: linear-gradient(135deg, var(--ls-secondary), var(--ls-secondary-dark));
    color: var(--ls-white);
}

.ls-mission-card h3,
.ls-vision-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ls-base);
    margin: 0;
}

.ls-mission-card p,
.ls-vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ls-grey);
    margin: 0;
}

.ls-mission-bg,
.ls-vision-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 1;
}

/* Manager's Quote Section */
.ls-manager-quote {
    padding: var(--ls-space-xl) 0;
    background: linear-gradient(135deg, var(--ls-bg-secondary) 0%, var(--ls-white) 100%);
    position: relative;
}

.ls-quote-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

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

.ls-quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 62, 62, 0.1), rgba(43, 108, 176, 0.1));
}

.ls-quote-content {
    padding: var(--ls-space-md);
    position: relative;
}

.ls-quote-icon {
    font-size: 3rem;
}

.ls-quote-author h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ls-base);
    margin-bottom: var(--ls-space-xs);
}

.ls-quote-author span {
    color: var(--ls-grey);
    font-size: 1rem;
}

.ls-quote-bg-icon {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 6rem;
    color: var(--ls-primary);
    opacity: 0.1;
}

/* Current Openings Section */
.ls-current-openings {
    padding: var(--ls-space-xl) 0;
    background: var(--ls-white);
}

.ls-job-card {
    background: var(--ls-white);
    border-radius: 15px;
    padding: var(--ls-space-md);
    box-shadow: var(--ls-shadow);
    transition: all var(--ls-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ls-light-grey);
}

.ls-job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ls-shadow-lg);
    border-color: var(--ls-primary);
}

.ls-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--ls-space-md);
}

.ls-job-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ls-base);
    margin: 0;
    flex: 1;
}

.ls-job-type {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-full-time {
    background: var(--ls-accent);
    color: var(--ls-white);
}

.ls-part-time {
    background: var(--ls-warning);
    color: var(--ls-white);
}

.ls-contract {
    background: var(--ls-secondary);
    color: var(--ls-white);
}

.ls-internship {
    background: var(--ls-primary);
    color: var(--ls-white);
}

.ls-job-meta {
    margin-bottom: var(--ls-space-md);
}

.ls-job-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--ls-space-xs);
    color: var(--ls-grey);
    font-size: 0.9rem;
}

.ls-job-meta-item i {
    margin-right: var(--ls-space-xs);
    color: var(--ls-primary);
    width: 16px;
}

.ls-job-excerpt {
    color: var(--ls-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--ls-space-md);
    flex: 1;
}

.ls-job-salary {
    display: flex;
    align-items: center;
    margin-bottom: var(--ls-space-md);
    padding: var(--ls-space-xs) var(--ls-space-sm);
    background: var(--ls-bg-secondary);
    border-radius: 8px;
}

.ls-job-salary i {
    color: var(--ls-accent);
    margin-right: var(--ls-space-xs);
}

.ls-job-salary span {
    color: var(--ls-base);
    font-weight: 600;
    font-size: 0.9rem;
}

.ls-job-actions {
    display: flex;
    gap: var(--ls-space-xs);
    margin-top: auto;
}

.ls-job-actions .btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.ls-no-openings {
    text-align: center;
    padding: var(--ls-space-xl);
    color: var(--ls-grey);
}

.ls-no-openings i {
    font-size: 4rem;
    color: var(--ls-primary);
    margin-bottom: var(--ls-space-md);
    opacity: 0.5;
}

.ls-no-openings h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ls-base);
    margin-bottom: var(--ls-space-sm);
}

.ls-no-openings p {
    font-size: 1rem;
    margin-bottom: var(--ls-space-lg);
}

/* CTA Section */
.ls-career-cta {
    padding: var(--ls-space-xl) 0;
    background: var(--ls-gradient-hero);
    color: var(--ls-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ls-career-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaGrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaGrid)"/></svg>');
}

.ls-career-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--ls-space-sm);
    position: relative;
    z-index: 2;
}

.ls-career-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--ls-space-lg);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.ls-cta-buttons {
    display: flex;
    gap: var(--ls-space-md);
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ls-cta-buttons .btn {
    min-width: 180px;
}

.ls-cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ls-hero-title {
        font-size: 3rem;
    }

    .ls-section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .ls-hero-title {
        font-size: 2.5rem;
    }

    .ls-hero-subtitle {
        font-size: 1.125rem;
    }

    .ls-section-title {
        font-size: 2rem;
    }

    .ls-career-card {
        min-height: 250px;
    }

    .ls-mission-card,
    .ls-vision-card {
        min-height: 280px;
        margin-bottom: var(--ls-space-md);
    }

    .ls-quote-image {
        height: 300px;
        margin-bottom: var(--ls-space-md);
    }
}

@media (max-width: 768px) {
    .ls-careers-hero {
        padding: var(--ls-space-lg) 0;
        min-height: 60vh;
    }

    .ls-hero-title {
        font-size: 2.25rem;
    }

    .ls-hero-subtitle {
        font-size: 1rem;
    }

    .ls-section-title {
        font-size: 1.75rem;
    }

    .ls-career-categories,
    .ls-mission-vision,
    .ls-current-openings,
    .ls-career-cta {
        padding: var(--ls-space-lg) 0;
    }

    .ls-career-card {
        min-height: auto;
        margin-bottom: var(--ls-space-md);
    }

    .ls-mission-card,
    .ls-vision-card {
        min-height: auto;
    }

    .ls-quote-content blockquote {
        font-size: 1.125rem;
    }

    .ls-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ls-cta-buttons .btn {
        min-width: 200px;
    }

    .ls-job-actions {
        flex-direction: column;
    }

    .ls-hero-images>div {
        margin-left: 0 !important;
        transform: rotate(0deg) !important;
        margin-bottom: var(--ls-space-sm);
    }
}

@media (max-width: 576px) {
    .ls-hero-title {
        font-size: 2rem;
    }

    .ls-section-title {
        font-size: 1.5rem;
    }

    .ls-career-cta h2 {
        font-size: 2rem;
    }

    .ls-career-cta p {
        font-size: 1.125rem;
    }

    .ls-career-card {
        padding: var(--ls-space-md);
    }

    .ls-mission-card,
    .ls-vision-card {
        padding: var(--ls-space-md);
    }

    .ls-quote-content {
        padding: var(--ls-space-sm);
    }

    .ls-job-card {
        padding: var(--ls-space-sm);
    }
}



/*==========================================================
Liberty Scope Contact Page Styles
==========================================================*/

/* Hero Section */
.ls-hero-section {
    background: var(--gradient-hero);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ls-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-hero-content {
    text-align: center;
    color: var(--ls-white);
    max-width: 800px;
    padding: 0 var(--ls-space-md);
}

.ls-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--ls-space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ls-hero-breadcrumb {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ls-hero-breadcrumb a {
    color: var(--ls-primary-light);
    text-decoration: none;
    transition: color var(--ls-transition);
}

.ls-hero-breadcrumb a:hover {
    color: var(--ls-white);
}

.curved-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Main Container */
.ls-contact-container {
    max-width: 1400px;
    margin: -90px auto 100px;
    padding: 0 var(--ls-space-md);
    position: relative;
    z-index: 2;
}

/* Contact Layout - Two Columns */
.ls-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ls-space-lg);
    margin-top: 50px;
}

.ls-contact-info-col,
.ls-contact-form-col {
    display: flex;
    flex-direction: column;
}

/* Map Section - Full Width Row */
.ls-map-section {
    margin-top: var(--ls-space-xl);
    width: 100%;
}

.ls-map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--ls-space-md);
    flex-wrap: wrap;
    gap: var(--ls-space-md);
}

.ls-map-info {
    flex: 1;
    min-width: 300px;
}

.ls-map-directions {
    flex-shrink: 0;
}

/* Card Styles */
.ls-contact-info-card,
.ls-contact-form-card,
.ls-contact-map-card {
    background: var(--ls-white);
    border-radius: 12px;
    box-shadow: var(--ls-shadow-lg);
    padding: var(--ls-space-lg);
    height: 100%;
    border: 1px solid var(--ls-light-grey);
    transition: transform var(--ls-transition);
}

.ls-contact-info-card:hover,
.ls-contact-form-card:hover,
.ls-contact-map-card:hover {
    transform: translateY(-5px);
}

/* Section Titles */
.ls-contact-info-title,
.ls-form-title,
.ls-map-title {
    font-family: var(--ls-font-heading);
    font-size: 2rem;
    margin-bottom: var(--ls-space-md);
    position: relative;
    padding-bottom: 15px;
    color: var(--ls-base);
}

.ls-contact-info-title:after,
.ls-form-title:after,
.ls-map-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Contact Info Items */
.ls-contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--ls-space-md);
    padding: var(--ls-space-sm);
    border-radius: 8px;
    transition: background var(--ls-transition);
}

.ls-contact-info-item:hover {
    background: var(--ls-bg-secondary);
}

.ls-contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--ls-space-sm);
    box-shadow: var(--ls-shadow);
}

.ls-contact-icon svg {
    width: 28px;
    height: 28px;
}

.ls-contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--ls-base);
    font-family: var(--ls-font-heading);
    font-weight: 600;
}

.ls-contact-text p {
    margin: 0;
    color: var(--ls-grey);
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Hours */
.ls-contact-hours {
    margin-top: var(--ls-space-lg);
    padding-top: var(--ls-space-md);
    border-top: 2px solid var(--ls-light-grey);
}

.ls-contact-hours h4 {
    font-size: 1.2rem;
    margin-bottom: var(--ls-space-sm);
    color: var(--ls-base);
    font-family: var(--ls-font-heading);
    font-weight: 600;
}

.ls-contact-hours p {
    margin: 0;
    color: var(--ls-grey);
    line-height: 1.7;
}

/* Services Highlight */
.ls-services-highlight {
    margin-top: var(--ls-space-lg);
    padding-top: var(--ls-space-md);
    border-top: 2px solid var(--ls-light-grey);
}

.ls-services-highlight h4 {
    font-size: 1.2rem;
    margin-bottom: var(--ls-space-sm);
    color: var(--ls-base);
    font-family: var(--ls-font-heading);
    font-weight: 600;
}

.ls-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ls-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ls-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-tag.ls-construction {
    background: var(--kpy-primary);
}

.ls-tag.ls-water {
    background: var(--ls-water-blue);
}

.ls-tag.ls-supply {
    background: var(--ls-supply-green);
}

/* Form Styles */
.ls-form-subtitle {
    color: var(--ls-grey);
    margin-bottom: var(--ls-space-lg);
    font-size: 1.1rem;
    line-height: 1.6;
}

.ls-form-group {
    margin-bottom: var(--ls-space-md);
}

.ls-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ls-base);
    font-family: var(--ls-font-heading);
}

.ls-form-group label span {
    color: var(--ls-primary);
}

.ls-form-group input,
.ls-form-group textarea,
.ls-form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--ls-light-grey);
    border-radius: 8px;
    font-family: var(--ls-font-primary);
    font-size: 1rem;
    transition: all var(--ls-transition);
    background: var(--ls-white);
}

.ls-form-group input:focus,
.ls-form-group textarea:focus,
.ls-form-group select:focus {
    outline: none;
    border-color: var(--ls-primary);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
    transform: translateY(-2px);
}

.ls-form-row {
    display: flex;
    gap: var(--ls-space-md);
}

.ls-form-half {
    flex: 1;
}

.ls-form-submit {
    margin-top: var(--ls-space-lg);
}

.ls-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--ls-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--ls-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--ls-shadow);
}

.ls-submit-btn svg {
    margin-left: 10px;
    transition: transform var(--ls-transition);
}

.ls-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--ls-shadow-lg);
}

.ls-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Map Styles */
.ls-map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--ls-shadow);
}

.ls-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ls-directions-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(229, 62, 62, 0.1);
    color: var(--ls-primary);
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--ls-transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.ls-directions-btn svg {
    margin-left: 8px;
}

.ls-directions-btn:hover {
    background: var(--ls-primary);
    color: var(--ls-white);
    border-color: var(--ls-primary);
    transform: translateY(-2px);
}

/* Company Highlight */
.ls-company-highlight h4 {
    font-size: 1.2rem;
    margin-bottom: var(--ls-space-sm);
    color: var(--ls-primary);
    font-family: var(--ls-font-heading);
    font-weight: 700;
}

.ls-company-highlight p {
    margin: 0;
    color: var(--ls-grey);
    line-height: 1.6;
    font-style: italic;
}

/* Success Popup */
.ls-contact-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ls-transition);
    backdrop-filter: blur(5px);
}

.ls-contact-success-popup.active {
    opacity: 1;
    visibility: visible;
}

.ls-success-content {
    background: var(--ls-white);
    padding: var(--ls-space-xl);
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    position: relative;
    transform: translateY(30px);
    transition: all var(--ls-transition);
    box-shadow: var(--ls-shadow-lg);
}

.ls-contact-success-popup.active .ls-success-content {
    transform: translateY(0);
}

.ls-checkmark {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--ls-space-md);
}

.ls-checkmark svg {
    width: 100%;
    height: 100%;
}

.ls-success-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--ls-space-sm);
    color: var(--ls-primary);
    font-family: var(--ls-font-heading);
}

.ls-success-content p {
    margin-bottom: var(--ls-space-lg);
    color: var(--ls-grey);
    line-height: 1.6;
}

.ls-close-popup {
    background: var(--gradient-primary);
    color: var(--ls-white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--ls-transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-close-popup:hover {
    transform: translateY(-2px);
    box-shadow: var(--ls-shadow);
}

/* Responsive Design */
@media (max-width:1200px) {
    .ls-contact-layout {
        grid-template-columns: 1fr;
        gap: var(--ls-space-md);
    }

    .ls-map-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:768px) {
    .ls-hero-title {
        font-size: 2.5rem;
    }

    .ls-form-row {
        flex-direction: column;
        gap: 0;
    }

    .ls-service-tags {
        justify-content: center;
    }

    .ls-map-header {
        flex-direction: column;
        text-align: center;
    }

    .ls-map-info {
        text-align: left;
    }

    .curved-bottom {
        height: 60px;
    }
}

@media (max-width:480px) {
    .ls-hero-section {
        padding: 80px 0 120px;
    }

    .ls-contact-container {
        margin: -60px auto 50px;
        padding: 0 var(--ls-space-sm);
    }

    .ls-contact-info-card,
    .ls-contact-form-card,
    .ls-contact-map-card {
        padding: var(--ls-space-md);
    }

    .ls-hero-title {
        font-size: 2rem;
    }

    .ls-map-container {
        height: 300px;
    }

    .curved-bottom {
        height: 40px;
    }
}

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

.ls-form-row {
    flex-direction: column;
    gap: 0;
}

.ls-service-tags {
    justify-content: center;
}
}

@media (max-width:480px) {
    .ls-hero-section {
        padding: 80px 0 120px;
    }

    .ls-contact-container {
        margin: -60px auto 50px;
        padding: 0 var(--ls-space-sm);
    }

    .ls-contact-info-card,
    .ls-contact-form-card,
    .ls-contact-map-card {
        padding: var(--ls-space-md);
    }

    .ls-hero-title {
        font-size: 2rem;
    }
}


/** ==========================================================
Container CSS
===========================================================**/
@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px !important;
    }

    /* Override for header sections - must come after general container rule */
    .alpha-nav-bar>.container,
    .alpha-middle-bar>.container,
    .alpha-top-bar>.container,
    .alpha-footer-main>.container,
    .alpha-footer-bottom>.container {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/** ==========================================================
Upcoming Events Page
===========================================================**/
.kpy-events-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

.kpy-section-title {
    font-family: var(--kpy-font-3);
    font-size: 3.5rem;
    color: var(--kpy-secondary-2);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.kpy-events-section.in-view .kpy-section-title {
    opacity: 1;
    transform: translateY(0);
}

.kpy-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary));
}

.kpy-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.kpy-event-card-main {
    grid-column: 1;
}

.kpy-event-card-side {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kpy-event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kpy-event-card.main-card {
    height: 100%;
}

.kpy-event-card.side-card {
    height: calc((100% - 60px)/3);
}

.kpy-event-card-main .kpy-event-card {
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.kpy-event-card-side .kpy-event-card {
    transform: translateX(100px);
    opacity: 0;
    transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kpy-event-card-side .kpy-event-card:nth-child(1) {
    transition-delay: 0.9s;
}

.kpy-event-card-side .kpy-event-card:nth-child(2) {
    transition-delay: 0.9s;
}

.kpy-event-card-side .kpy-event-card:nth-child(3) {
    transition-delay: 0.9s;
}

.kpy-events-section.in-view .kpy-event-card {
    transform: translateX(0);
    opacity: 1;
}

.kpy-event-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(var(--kpy-primary-rgb), 0.15);
}

.event-card-inner {
    display: flex;
    height: 100%;
}

.event-thumbnail {
    flex: 0 0 40%;
    overflow: hidden;
}

.main-card .event-thumbnail {
    flex: 0 0 45%;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kpy-event-card:hover .event-image {
    transform: scale(1.05);
}

.event-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.main-card .event-content {
    padding: 35px;
}

.event-date {
    font-family: var(--kpy-font);
    font-size: 0.9rem;
    color: var(--kpy-secondary-2);
    margin-bottom: 10px;
}

.main-card .event-date {
    font-size: 1rem;
}

.event-title {
    font-family: var(--kpy-font);
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: var(--kpy-black);
    line-height: 1.4;
}

.main-card .event-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.event-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: var(--kpy-font-2);
    font-size: 0.9rem;
}

.main-card .event-meta {
    font-size: 1rem;
    gap: 20px;
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(var(--kpy-base-rgb), 0.8);
}

.kpy-no-events {
    text-align: center;
    padding: 40px;
    font-family: var(--kpy-font-2);
    color: rgba(var(--kpy-base-rgb), 0.6);
}

@media (max-width:992px) {
    .event-card-inner {
        flex-direction: column;
    }

    .event-thumbnail {
        flex: 0 0 200px;
    }

    .main-card .event-thumbnail {
        flex: 0 0 250px;
    }
}

@media (max-width:768px) {
    .kpy-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kpy-event-card-main,
    .kpy-event-card-side {
        grid-column: 1;
    }

    .kpy-event-card-side {
        gap: 20px;
    }

    .kpy-event-card.side-card {
        height: auto;
    }

    .kpy-section-title {
        font-size: 1.8rem;
    }

    .kpy-event-card {
        transform: translateY(30px) !important;
        opacity: 0;
    }

    .kpy-events-section.in-view .kpy-event-card {
        transform: translateY(0) !important;
        opacity: 1;
    }
}

.kpy-event-card.main-card .event-card-inner {
    flex-direction: column;
}

.kpy-event-card.main-card .event-thumbnail {
    flex: 0 0 auto;
    width: 100%;
}

.kpy-event-card.main-card .event-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.event {
    min-height: 360px;
    margin-bottom: 4rem;
    margin-top: 3rem;
}



/** =========================================================
Gallery page
===============================================================**/
.gallery-cards-container {
    margin: 0 auto;
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.gallery-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.gallery-title {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.gallery-card:hover .gallery-title {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gallery-pagination .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.gallery-pagination .page-numbers li a,
.gallery-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 6px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-pagination .page-numbers li a:hover {
    background: #228b22;
    color: #fff;
}

.gallery-pagination .page-numbers li span.current {
    background: #228b22;
    color: #fff;
}

.gallery-pagination .page-numbers li .pagination-arrow {
    margin: 0 5px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-title-overlay {
        padding: 15px;
    }

    .gallery-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-title-overlay {
        padding: 10px;
    }
}





/** =========================================================
PARTNERS section
===============================================================**/
.partners {
    padding: 15px 10px;
}

.partner {
    display: flex;
    overflow: hidden;
    position: relative;
}

.partner .card {
    min-height: 100px;
    white-space: nowrap;
    animation: marquee-animation 10s linear infinite;
}

.partner img {
    height: 100px;
    object-fit: contain;
    object-position: center;
    display: grid;
    gap: 10px;
    padding: 10px;
    width: 200px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee a {
    animation: marquee-animation 5s linear infinite;
}

.partnerlist img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

.urreno_assoc img {
    width: 100%;
    height: auto;
}

.urreno_assoc h3 {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -.5px;
}

.urreno_assoc .card {
    height: 200px;
    padding: 15px;
    margin-bottom: 20px;
}

/** ============================================================
Publication Page CSS
=============================================================**/
.downloads-category-menu {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-menu-item {
    margin-bottom: 8px;
}

.category-menu-link {
    text-decoration: none;
    color: #333;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.category-menu-link:hover {
    background: #f0f0f0;
    color: #007bff;
}

.category-count {
    background: #eee;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    #downloads-table_wrapper {
        margin-left: 15px;
        margin-right: 15px;
        overflow-x: auto;
    }

    .dataTables_length,
    .dataTables_filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .dataTables_length label,
    .dataTables_filter label {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .dataTables_length select,
    .dataTables_filter input {
        width: 100%;
        font-size: 14px;
    }

    #downloads-table th,
    #downloads-table td {
        padding: 10px;
        font-size: 14px;
    }

    .pub-title {
        font-size: 18px;
    }

    .pub-link p {
        font-size: 14px;
    }

    .dataTables_paginate {
        flex-wrap: wrap;
        justify-content: center;
    }

    .paginate_button {
        font-size: 13px;
        padding: 5px 8px;
    }

    .downloads-category-menu {
        padding: 15px;
    }

    .category-menu-title {
        font-size: 1rem;
    }

    .category-menu-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .category-count {
        font-size: 0.8em;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .pub-title {
        font-size: 16px;
    }

    .dataTables_length,
    .dataTables_filter {
        font-size: 13px;
    }

    .category-menu-title {
        font-size: 0.95rem;
    }

    .category-menu-link {
        font-size: 14px;
    }

    #downloads-table_wrapper {
        margin-left: 10px;
        margin-right: 10px;
    }

    .dataTables_info {
        font-size: 12px;
        text-align: center;
    }

    .category-menu-list {
        padding: 0;
    }
}

#downloads-table_wrapper {
    margin: 20px 0;
    margin-left: 50px;
}

.dataTables_length,
.dataTables_filter {
    margin-bottom: 15px;
}

.dataTables_length label,
.dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dataTables_length select,
.dataTables_filter input {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#downloads-table {
    width: 100%;
    border-collapse: collapse;
}

#downloads-table th,
#downloads-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.pub-title {
    margin: 0;
    font-size: 20px;
    color: #1716a3;
    font-weight: 700;
}

.dataTables_paginate {
    margin-top: 15px;
    display: flex;
    gap: 5px;
}

.paginate_button {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.paginate_button.current {
    background: #f7a81b;
    color: white;
    border-color: #f7a81b;
}

.paginate_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pub-download a {
    color: #f7a81b;
    text-decoration: none;
}

.pub-download a:hover {
    text-decoration: underline;
}


/** ============================================================
Single Page Hero
=============================================================**/
.header-wrap1 {
    position: relative;
    height: 400px;
    overflow: hidden;
    padding-top: 0;
    min-height: auto;
}

.header-wrap1 .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomInOut 15s ease-in-out infinite;
    z-index: 1;
}

.header-wrap1 h1 {
    font-weight: 700;
    text-shadow: 0 0 20px #000;
    width: 100%;
    color: var(--kpy-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.header-wrap1 .breadcrumb {
    color: var(--kpy-white);
    position: relative;
    z-index: 10;
    display: block;
    top: -5px;
    font-size: 12px;
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.9;
}

.header-wrap1 .breadcrumb a {
    text-decoration: none;
    color: var(--kpy-white);
    color: #fff;
    text-decoration: none;
}

.header-wrap1 .breadcrumb a:hover {
    text-decoration: underline;
}

.about-side {
    border-left: 1px solid #ccc;
    position: sticky;
    top: 5%;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
}

.spiritual-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.curved-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 3;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .header-wrap1 {
        height: 300px;
    }

    .header-wrap1 h1 {
        font-size: 2rem;
    }

    .spiritual-element {
        font-size: 1.5rem;
    }
}

/** ============================================================
Directory
=============================================================**/
.publications {
    margin-bottom: 40px;
}

#downloads-table {
    border-collapse: separate;
    border-spacing: 0 15px;
    margin-top: 20px;
    width: 100%;
}

#downloads-table thead {
    display: none;
}

#downloads-table tbody tr {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border-radius: 8px;
}

#downloads-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#downloads-table td {
    padding: 20px;
    vertical-align: top;
    border: none;
}

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

.member-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.member-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.member-title:hover {
    color: #0056b3;
}

.pub-summ {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pub-desc {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.member-summ {
    background-color: #f9f9f9;
    padding: 12px !important;
    border-radius: 5px;
    margin-top: 10px;
    color: #555;
    line-height: 1.8;
}

.member-summ small {
    display: block;
    margin-bottom: 3px;
}

.member-summ strong {
    color: #444;
}

.member-link {
    margin-top: 15px;
}

.member-link a {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.member-link a:hover {
    background-color: #003d82;
    text-decoration: none;
}

.page-content2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.post-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.pub-single {
    margin-bottom: 2rem;
}

.post-thumbnail {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Content styles */
.about-side-pub {
    padding-left: 1.5rem;
}

h1.entry-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h4.pub-summ {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-weight: 600;
}

.pub-desc {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

hr {
    margin: 1.5rem 0;
    border-color: #eee;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-facebook {
    background-color: #3b5998;
    color: white;
}

.btn-facebook:hover {
    background-color: #2d4373;
    color: white;
}

.btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.btn-twitter:hover {
    background-color: #0c85d0;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.text-muted {
    color: #6c757d;
}




/** ============================================================
Error 404 Page Not Found CSS
=============================================================**/
.Error_404 {
    overflow: hidden;
    padding: 80px 0 120px;
}

.Error_404 .error_pic {
    width: 35%;
    float: left;
    text-align: center;
}

.Error_404 .error_pic i {
    color: #F72331;
    font-size: 250px;
    line-height: 250px;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    margin-left: .2em;
}

.Error_404 .error_desk {
    width: 65%;
    float: left;
    padding-top: 40px;
}

.Error_404 .error_desk h2 {
    font-size: 55px;
    line-height: 60px;
    color: #F72331;
    font-weight: 500;
}

.Error_404 .error_desk h4 {
    font-size: 28px;
    line-height: 30px;
}

.Error_404 .error_desk p .check {
    line-height: 45px;
    font-size: 16px;
}

.Error_404 .error_desk p .button {
    padding: 13px 20px;
    margin: 0;
    border-radius: 5px;
    display: inline;
    margin-left: 10px;
    box-shadow: inset 0 0 0 0;
}

.Error_404 .error_desk p .button:hover {
    color: #f9f9f9;
    text-decoration: none;
    background: #F72331;
}

a.button,
a.tp-button {
    transition: .2s all;
    background: transparent;
    color: #F72331;
    border: solid 2px;
}

.wp-block-ub-tabbed-content-tab-title strong {
    font-weight: 500 !important;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/* Mobile styles (up to 767px)@media only screen and (max-width: 768px */
@media only screen and (max-width: 600px) {
    .menu-section .logo {
        object-fit: contain !important;
        height: 70px;
    }

    .menu-section .navbar-nav {
        height: 100%;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

    .menu-section .navbar-nav .nav-link {
        color: var(--kpy-black) !important;
        font-family: var(--kpy-font);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 16px;
        height: 40px;
        display: flex;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
        padding: 0 0.5rem !important;
    }

    .menu-section {
        height: 80px;
        position: relative;
        top: 0;
        z-index: 1000;
        background: #f7f7f7;
        height: 80px;
        display: flex;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    }



    .intro-image-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
        padding-top: 0;
    }

    .message-heading {
        font-size: 25px;
        font-weight: 400;
        color: var(--kpy-primary);
    }

    .president-img img {
        margin-bottom: 0;
        height: 250px;
        width: 100%;
        max-width: 100%;
        object-position: top;
    }

    .president-message-text p {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
    }

    .president-message-text {
        display: -webkit-box;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: calc(1.6em * 10);
    }

    .message-button {
        display: block;
        padding-top: 10px;
    }

    .rotary-content {
        padding: 15px;
    }

    .rotary-header h1,
    .president-header h1 {
        font-size: 25px;
    }

    .president-profile {
        flex-direction: column;
        justify-content: center;
    }

    .president-photo {
        width: 200px;
        height: 200px;
    }

    #downloads-table {
        border-spacing: 0;
    }

    #downloads-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    #downloads-table td {
        width: 100% !important;
        display: block;
        padding: 15px;
    }

    .member-thumbnail {
        margin-bottom: 15px;
    }

    .project-image {
        height: 180px;
    }

    .contact-page {
        margin: 20px 0;
        padding: 40px 0;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .contact-form {
        margin-bottom: 30px;
    }

    .contact-info ul li strong {
        width: 70px;
    }

    .map-container iframe {
        height: 250px;
    }

    .footer-menus {
        gap: 5px;
        font-size: 12px;
    }

    .footer-menus a {
        font-size: 12px;
    }

    .footer-menus .social-links a {
        font-size: 18px;
    }

    .donation-form-area {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Tablet styles (768px to 1024px) */
@media only screen and (max-width: 1024px) and (min-width: 768px) {}

/* Large desktop styles (1140px and up) */
@media only screen and (min-width: 1140px) {}

/* Extra large desktop styles (1440px and up) */
@media only screen and (min-width: 1440px) {}

/* High DPI screens */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi) {}

/* Admin Styles */
.post-type-newsletter_sub .wp-list-table th.column-subscribed_date,
.post-type-newsletter_sub .wp-list-table th.column-subscribed_ip {
    width: 15%;
}

.post-type-newsletter_sub .wp-list-table .column-title {
    width: 40%;
}

/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/

/* ============================================================ Kasenga Realty Group - Custom Styles ============================================================ */

/* ============================================================
   Kasenga Realty Group - Custom Styles (from kasenga-styles.css)
   ============================================================ */

/* Update base styles to use kpy variables */
html {
    font-family: var(--kpy-font-primary) !important;
}

body {
    font-family: var(--kpy-font-primary) !important;
    color: var(--kpy-grey);
    background-color: var(--kpy-bg-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--kpy-font-heading) !important;
    color: var(--kpy-base);
}

/* Language Switcher - Menu Integration */
.kpy-menu-language-switcher {
    position: relative;
}

.kpy-menu-lang-dropdown {
    position: relative;
}

.kpy-menu-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    color: var(--kpy-white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--kpy-transition);
}

.kpy-menu-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.kpy-menu-lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.kpy-menu-lang-arrow {
    font-size: 0.75rem;
    transition: transform var(--kpy-transition);
}

.kpy-menu-lang-dropdown.active .kpy-menu-lang-arrow {
    transform: rotate(180deg);
}

.kpy-menu-lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--kpy-white);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow-xl);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--kpy-transition);
    z-index: 1000;
    overflow: hidden;
}

.kpy-menu-lang-dropdown.active .kpy-menu-lang-dropdown-menu,
.kpy-menu-lang-dropdown-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.kpy-menu-lang-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--kpy-white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1);
}

.kpy-menu-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--kpy-base);
    text-decoration: none;
    transition: all var(--kpy-transition);
    border-bottom: 1px solid var(--kpy-light-grey);
}

.kpy-menu-lang-option:last-child {
    border-bottom: none;
}

.kpy-menu-lang-option:hover,
.kpy-menu-lang-option.active {
    background: var(--kpy-bg-secondary);
    color: var(--kpy-primary);
    padding-left: 20px;
}

.kpy-menu-lang-option .kpy-menu-lang-flag {
    font-size: 1.5rem;
}

.kpy-menu-lang-name {
    font-weight: 500;
}

/* Floating Language Switcher (backup) */
.kpy-language-switcher {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9998;
    background: var(--kpy-white);
    border-radius: 50px;
    box-shadow: var(--kpy-shadow-lg);
    padding: 8px;
    display: none;
    /* Hidden by default, show only if menu version not available */
}

.kpy-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    color: var(--kpy-base);
    font-weight: 600;
    transition: all var(--kpy-transition);
}

.kpy-lang-toggle:hover {
    color: var(--kpy-primary);
}

.kpy-lang-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    background: var(--kpy-white);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow-xl);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--kpy-transition);
}

.kpy-lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kpy-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--kpy-base);
    text-decoration: none;
    transition: all var(--kpy-transition);
    border-bottom: 1px solid var(--kpy-light-grey);
}

.kpy-lang-option:last-child {
    border-bottom: none;
}

.kpy-lang-option:hover,
.kpy-lang-option.active {
    background: var(--kpy-bg-secondary);
    color: var(--kpy-primary);
}

.kpy-lang-flag {
    font-size: 1.5rem;
}

/* Unique Slider Design */
.kpy-slide {
    position: relative;
    min-height: 800px;
    height: 100vh;
    overflow: hidden;
}

/* Reveal Effect - Overlay that fades away automatically */
.kpy-curtain-left,
.kpy-curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.5s ease-out;
    will-change: transform, opacity;
}

.kpy-curtain-left {
    left: 0;
    transform: translateX(0);
    opacity: 1;
}

.kpy-curtain-right {
    right: 0;
    transform: translateX(0);
    opacity: 1;
}

/* When slide becomes active (automatic), overlay reveals image */
.swiper-slide-active .kpy-curtain-left {
    transform: translateX(-100%);
    opacity: 0;
}

.swiper-slide-active .kpy-curtain-right {
    transform: translateX(100%);
    opacity: 0;
}

/* Reset curtains for non-active slides */
.swiper-slide:not(.swiper-slide-active) .kpy-curtain-left,
.swiper-slide:not(.swiper-slide-active) .kpy-curtain-right {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.kpy-slide-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    filter: blur(4px) brightness(0.5);
    transform: scale(1.05);
    transition: opacity 1.8s ease-out 0.2s, filter 1.8s ease-out 0.2s, transform 1.8s ease-out 0.2s;
    z-index: 1;
}

/* When slide is active (automatic), image becomes clearer and brighter */
.swiper-slide-active .kpy-slide-image-layer {
    opacity: 1;
    filter: blur(0px) brightness(1);
    transform: scale(1.1);
}

/* Reset image for non-active slides */
.swiper-slide:not(.swiper-slide-active) .kpy-slide-image-layer {
    opacity: 0.3;
    filter: blur(4px) brightness(0.5);
    transform: scale(1.05);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.kpy-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 92, 92, 0.50) 0%, rgba(3, 92, 92, 0.40) 20%, rgba(3, 92, 92, 0.30) 40%, rgba(3, 92, 92, 0.20) 60%, rgba(3, 92, 92, 0.10) 80%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Unique Geometric Shapes Overlay */
.kpy-slide-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.kpy-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.kpy-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--kpy-white);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.kpy-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--kpy-accent);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.kpy-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--kpy-secondary);
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.kpy-slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: var(--kpy-space-xl) 0 var(--kpy-space-lg);
    margin-top: 3rem;
}

.kpy-slider-content-inner {
    max-width: 800px;
    color: var(--kpy-white);
}

/* Ken Burns slider: center title, excerpt, and buttons */
.main-slider .kpy-slider-content {
    justify-content: center;
}

.main-slider .kpy-slider-content-inner {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.main-slider .kpy-slide-title,
.main-slider .kpy-slide-title h2 {
    text-align: center;
}

.main-slider .kpy-slide-text {
    text-align: center;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--kpy-space-lg);
    opacity: 0.95;
}

.main-slider .kpy-slide-text p {
    color: #ffffff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.main-slider .kpy-slide-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.main-slider .kpy-slide-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-slider .kpy-slide-btn-learn {
    background: #ffffff;
    color: var(--kpy-primary, #035c5c);
    border: 2px solid #ffffff;
}

.main-slider .kpy-slide-btn-learn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.main-slider .kpy-slide-btn-contact {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.main-slider .kpy-slide-btn-contact:hover {
    background: #ffffff;
    color: var(--kpy-primary, #035c5c);
    border-color: #ffffff;
}

.kpy-slide-title h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--kpy-space-md);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: var(--kpy-white);
}

.kpy-slide-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--kpy-space-lg);
    opacity: 0.95;
}


.kpy-slide-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 4;
}

/* Left Side Social Media Icons */
.kpy-slider-left-social {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.kpy-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.kpy-social-icon:hover {
    color: var(--kpy-white);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Right Side Navigation Links */
.kpy-slider-right-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.kpy-nav-link {
    font-family: var(--kpy-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kpy-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.kpy-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--kpy-white);
    transition: width 0.3s ease;
}

.kpy-nav-link:hover {
    color: var(--kpy-white);
    transform: translateX(-5px);
}

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

.kpy-nav-link-all {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

/* Hide Swiper Navigation Buttons */
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev,
#main-slider__swiper-button-next,
#main-slider__swiper-button-prev,
.thm-swiper__slider .swiper-button-next,
.thm-swiper__slider .swiper-button-prev {
    display: none !important;
}

/* Hide Pagination */
#main-slider-pagination {
    display: none !important;
}

/* Hero Sections */
.kpy-page-hero,
.kpy-archive-hero,
.kpy-property-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.kpy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.kpy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--kpy-gradient-hero);
}

.kpy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--kpy-white);
    max-width: 800px;
    padding: 0 var(--kpy-space-md);
}

.kpy-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--kpy-space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kpy-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--kpy-space-md);
    opacity: 0.95;
}

.kpy-hero-breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.kpy-hero-breadcrumb a {
    color: var(--kpy-white);
    text-decoration: none;
    transition: opacity var(--kpy-transition);
}

.kpy-hero-breadcrumb a:hover {
    opacity: 0.8;
}

.kpy-hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Buttons */
.kpy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--kpy-font-primary);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--kpy-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.kpy-btn-primary {
    background: var(--kpy-gradient-primary);
    color: var(--kpy-white);
    box-shadow: var(--kpy-shadow);
    border-radius: 0 20px 0 20px;
}

.kpy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-btn-secondary {
    background: var(--kpy-white);
    color: var(--kpy-primary);
    border: 2px solid var(--kpy-primary);
}

.kpy-btn-secondary:hover {
    background: var(--kpy-primary);
    color: var(--kpy-white);
}

.kpy-btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.kpy-btn-block {
    width: 100%;
    display: block;
}

/* Property Cards */
.kpy-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--kpy-space-lg);
    margin-top: var(--kpy-space-lg);
}

.kpy-property-card {
    background: var(--kpy-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--kpy-shadow);
    transition: all var(--kpy-transition);
    position: relative;
}

.kpy-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kpy-shadow-xl);
}

.kpy-property-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.kpy-property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--kpy-transition);
}

.kpy-property-card:hover .kpy-property-image {
    transform: scale(1.1);
}

.kpy-property-placeholder {
    width: 100%;
    height: 100%;
    background: var(--kpy-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--kpy-light-grey);
}

.kpy-property-badge {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.kpy-badge-featured {
    left: 15px;
    background: var(--kpy-primary);
    color: var(--kpy-white);
}

.kpy-badge-status {
    right: 15px;
}

.kpy-status-available {
    background: var(--kpy-secondary);
    color: var(--kpy-white);
}

.kpy-status-sold,
.kpy-status-rented {
    background: var(--kpy-grey);
    color: var(--kpy-white);
}

.kpy-status-pending {
    background: var(--kpy-primary);
    color: var(--kpy-white);
}

.kpy-property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--kpy-transition);
}

.kpy-property-card:hover .kpy-property-overlay {
    opacity: 1;
}

.kpy-property-view-btn {
    background: var(--kpy-white);
    color: var(--kpy-primary);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--kpy-transition);
}

.kpy-property-view-btn:hover {
    background: var(--kpy-primary);
    color: var(--kpy-white);
}

.kpy-property-content {
    padding: var(--kpy-space-md);
}

.kpy-property-title {
    font-size: 1.5rem;
    margin-bottom: var(--kpy-space-xs);
}

.kpy-property-title a {
    color: var(--kpy-base);
    text-decoration: none;
    transition: color var(--kpy-transition);
}

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

.kpy-property-location {
    color: var(--kpy-grey);
    font-size: 0.9rem;
    margin-bottom: var(--kpy-space-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.kpy-property-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin-bottom: var(--kpy-space-sm);
}

.kpy-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--kpy-space-md);
    margin-bottom: var(--kpy-space-sm);
    padding-bottom: var(--kpy-space-sm);
    border-bottom: 1px solid var(--kpy-light-grey);
}

.kpy-property-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--kpy-grey);
    font-size: 0.9rem;
}

.kpy-property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--kpy-space-sm);
}

.kpy-property-tag {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--kpy-bg-secondary);
    color: var(--kpy-base);
}

.kpy-tag-type {
    background: var(--kpy-primary-lighter);
    color: var(--kpy-primary-dark);
}

.kpy-tag-category {
    background: rgba(45, 143, 71, 0.1);
    color: var(--kpy-secondary);
}

.kpy-property-footer {
    margin-top: var(--kpy-space-sm);
}

.kpy-property-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kpy-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--kpy-transition);
}

.kpy-property-link:hover {
    gap: 12px;
    color: var(--kpy-primary-dark);
}

/* Property Filters */
.kpy-property-filters-section {
    background: var(--kpy-bg-secondary);
    padding: var(--kpy-space-lg) 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.kpy-filter-form {
    background: var(--kpy-white);
    padding: var(--kpy-space-lg);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--kpy-space-md);
    align-items: end;
}

.kpy-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--kpy-base);
    font-size: 0.9rem;
}

.kpy-filter-group select,
.kpy-filter-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--kpy-light-grey);
    border-radius: 8px;
    font-family: var(--kpy-font-primary);
    font-size: 0.95rem;
    transition: all var(--kpy-transition);
}

.kpy-filter-group select:focus,
.kpy-filter-group input:focus {
    outline: none;
    border-color: var(--kpy-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.kpy-filter-actions {
    display: flex;
    gap: var(--kpy-space-sm);
}

/* Property Archive */
.kpy-property-results-section {
    padding: var(--kpy-space-xl) 0;
}

.kpy-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--kpy-space-lg);
    flex-wrap: wrap;
    gap: var(--kpy-space-md);
}

.kpy-results-title {
    font-size: 2rem;
    color: var(--kpy-base);
}

.kpy-sort-select {
    padding: 10px 16px;
    border: 2px solid var(--kpy-light-grey);
    border-radius: 8px;
    font-family: var(--kpy-font-primary);
    cursor: pointer;
}

.kpy-properties-loading {
    text-align: center;
    padding: var(--kpy-space-xl);
}

.kpy-spinner {
    border: 4px solid var(--kpy-light-grey);
    border-top: 4px solid var(--kpy-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--kpy-space-md);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.kpy-no-properties {
    text-align: center;
    padding: var(--kpy-space-xl);
    color: var(--kpy-grey);
    font-size: 1.1rem;
}

.kpy-property-pagination {
    margin-top: var(--kpy-space-xl);
    text-align: center;
}

/* Single Property */
.kpy-single-property {
    padding-top: 0;
}

.kpy-property-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

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

.kpy-property-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.kpy-property-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 100%;
    color: #ffffff;
    padding: 80px 0;
}

.kpy-property-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: var(--kpy-space-sm);
    color: rgba(255, 255, 255, 0.9);
}

.kpy-property-breadcrumb a {
    color: var(--kpy-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.kpy-property-breadcrumb a:hover {
    opacity: 1;
}

.kpy-property-breadcrumb span {
    margin: 0 8px;
    opacity: 0.7;
}

.kpy-property-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--kpy-space-sm);
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kpy-property-hero-location {
    font-size: 1.2rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
}

.kpy-property-hero-location i {
    font-size: 1.1rem;
}

/* Responsive styles for property hero */
@media (max-width: 768px) {
    .kpy-property-hero {
        min-height: 50vh;
    }

    .kpy-property-hero-title {
        font-size: 2rem;
    }

    .kpy-property-hero-location {
        font-size: 1rem;
    }

    .kpy-property-hero-content {
        padding: 60px 0;
    }
}

.kpy-property-main {
    padding: var(--kpy-space-xl) 0;
}

.kpy-property-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--kpy-space-xl);
}

.kpy-property-gallery {
    margin-bottom: var(--kpy-space-xl);
}

.kpy-gallery-main {
    margin-bottom: var(--kpy-space-md);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.kpy-gallery-main:hover {
    transform: scale(1.01);
}

.kpy-gallery-main a {
    display: block;
    width: 100%;
    height: 100%;
}

.kpy-gallery-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kpy-gallery-main:hover .kpy-gallery-main-image {
    transform: scale(1.05);
}

.kpy-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--kpy-space-sm);
}

.kpy-gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform var(--kpy-transition);
}

.kpy-gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kpy-gallery-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform var(--kpy-transition);
}

.kpy-gallery-thumb:hover img {
    transform: scale(1.1);
}

.kpy-property-description,
.kpy-property-details {
    margin-bottom: var(--kpy-space-xl);
}

.kpy-section-title {
    font-size: 2rem;
    margin-bottom: var(--kpy-space-lg);
    color: var(--kpy-base);
    position: relative;
    padding-bottom: 15px;
}

.kpy-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--kpy-gradient-primary);
    border-radius: 2px;
}

.kpy-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--kpy-space-md);
}

.kpy-detail-item {
    display: flex;
    align-items: center;
    gap: var(--kpy-space-md);
    padding: var(--kpy-space-md);
    background: var(--kpy-bg-secondary);
    border-radius: 8px;
}

.kpy-detail-item i {
    font-size: 2rem;
    color: var(--kpy-primary);
}

.kpy-detail-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--kpy-base);
}

.kpy-detail-item span {
    color: var(--kpy-grey);
}

.kpy-property-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--kpy-space-md);
}

.kpy-property-price-card,
.kpy-property-contact-card,
.kpy-property-location-card {
    background: var(--kpy-white);
    padding: var(--kpy-space-lg);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow);
}

.kpy-price-display {
    text-align: center;
    padding: var(--kpy-space-md);
    background: var(--kpy-bg-secondary);
    border-radius: 8px;
    margin-bottom: var(--kpy-space-md);
}

.kpy-price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--kpy-grey);
    margin-bottom: 8px;
}

.kpy-price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kpy-primary);
}

.kpy-contact-title,
.kpy-location-title {
    font-size: 1.25rem;
    margin-bottom: var(--kpy-space-md);
    color: var(--kpy-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.kpy-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--kpy-space-sm) 0;
    color: var(--kpy-grey);
}

.kpy-contact-link {
    text-decoration: none;
    transition: color var(--kpy-transition);
}

.kpy-contact-link:hover {
    color: var(--kpy-primary);
}

.kpy-location-address {
    color: var(--kpy-grey);
    line-height: 1.8;
    margin-bottom: var(--kpy-space-md);
}

.kpy-related-properties {
    padding: var(--kpy-space-xl) 0;
    background: var(--kpy-bg-secondary);
}

/* Page Templates */
/* About Page - Enhanced Visual Design */
.kpy-about-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.kpy-about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.kpy-about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    position: relative;
    z-index: 1;
}

.kpy-business-areas {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.kpy-business-areas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B35 50%, transparent);
}

.kpy-business-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.kpy-business-area-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.kpy-business-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #E55A2B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.kpy-business-area-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.kpy-business-area-card:hover::before {
    transform: scaleX(1);
}

.kpy-business-area-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.kpy-business-area-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.kpy-business-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kpy-business-area-card:hover .kpy-business-area-image img {
    transform: scale(1.15) rotate(2deg);
}

.kpy-business-area-content {
    padding: 40px;
    position: relative;
}

.kpy-business-area-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(3, 92, 92, 0.3);
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

.kpy-business-area-card:hover .kpy-business-area-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.kpy-business-area-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-family: var(--kpy-font-heading);
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpy-business-area-content p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.kpy-mission-vision {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.kpy-mission-vision::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.kpy-mission-vision::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.kpy-mission-card,
.kpy-vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 50px;
    border-radius: 24px;
    height: 100%;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.kpy-mission-card::before,
.kpy-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF6B35, #E55A2B, #FF6B35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.kpy-mission-card:hover,
.kpy-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.kpy-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-family: var(--kpy-font-heading);
    position: relative;
}

.kpy-card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #E55A2B);
    border-radius: 2px;
}

.kpy-card-content {
    color: #444;
    line-height: 1.9;
    font-size: 1.1rem;
}

.kpy-card-content p {
    margin-bottom: 18px;
}

.kpy-value-card h3,
.kpy-service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--kpy-space-sm);
    color: var(--kpy-base);
}

.kpy-service-features {
    list-style: none;
    padding: 0;
    margin: var(--kpy-space-md) 0;
    text-align: left;
}

.kpy-service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kpy-grey);
}

.kpy-service-features li i {
    color: var(--kpy-secondary);
}

.kpy-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kpy-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: var(--kpy-space-md);
    transition: all var(--kpy-transition);
}

.kpy-service-link:hover {
    gap: 12px;
    color: var(--kpy-primary-dark);
}

.kpy-services-overview {
    padding: var(--kpy-space-xl) 0;
}

.kpy-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--kpy-space-lg);
    margin-top: var(--kpy-space-lg);
}

.kpy-service-overview-card {
    background: var(--kpy-white);
    padding: var(--kpy-space-lg);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow);
    text-align: center;
    transition: all var(--kpy-transition);
}

.kpy-service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--kpy-space-md);
    background: var(--kpy-gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--kpy-white);
}

.kpy-why-choose-us {
    padding: var(--kpy-space-xl) 0;
}

.kpy-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--kpy-space-lg);
    margin-top: var(--kpy-space-lg);
}

.kpy-advantage-item {
    text-align: center;
    padding: var(--kpy-space-lg);
}

.kpy-advantage-item i {
    font-size: 3rem;
    color: var(--kpy-primary);
    margin-bottom: var(--kpy-space-md);
}

.kpy-advantage-item h4 {
    font-size: 1.25rem;
    margin-bottom: var(--kpy-space-sm);
    color: var(--kpy-base);
}

.kpy-advantage-item p {
    color: var(--kpy-grey);
    line-height: 1.6;
}

/* Contact Page */
.kpy-contact-container {
    padding: var(--kpy-space-xl) 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.kpy-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--kpy-space-xl);
}

.kpy-contact-info-card,
.kpy-contact-form-card {
    background: var(--kpy-white);
    padding: var(--kpy-space-xl);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-contact-info-title,
.kpy-form-title {
    font-size: 2rem;
    margin-bottom: var(--kpy-space-lg);
    color: var(--kpy-base);
    position: relative;
    padding-bottom: 15px;
}

.kpy-contact-info-title:after,
.kpy-form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--kpy-gradient-primary);
    border-radius: 2px;
}

.kpy-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--kpy-space-md);
    margin-bottom: var(--kpy-space-lg);
    padding: var(--kpy-space-md);
    border-radius: 8px;
    transition: background var(--kpy-transition);
}

.kpy-contact-info-item:hover {
    background: var(--kpy-bg-secondary);
}

.kpy-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--kpy-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.kpy-contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--kpy-base);
}

.kpy-contact-text p {
    margin: 0;
    color: var(--kpy-grey);
    line-height: 1.6;
}

.kpy-contact-hours {
    margin-top: var(--kpy-space-lg);
    padding-top: var(--kpy-space-md);
    border-top: 2px solid var(--kpy-light-grey);
}

.kpy-contact-hours h4 {
    font-size: 1.1rem;
    margin-bottom: var(--kpy-space-sm);
    color: var(--kpy-base);
}

.kpy-form-subtitle {
    color: var(--kpy-grey);
    margin-bottom: var(--kpy-space-lg);
    line-height: 1.6;
}

.kpy-form-group {
    margin-bottom: var(--kpy-space-md);
}

.kpy-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--kpy-base);
}

.kpy-form-group label span {
    color: var(--kpy-primary);
}

.kpy-form-group input,
.kpy-form-group textarea,
.kpy-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--kpy-light-grey);
    border-radius: 8px;
    font-family: var(--kpy-font-primary);
    font-size: 1rem;
    transition: all var(--kpy-transition);
}

.kpy-form-group input:focus,
.kpy-form-group textarea:focus,
.kpy-form-group select:focus {
    outline: none;
    border-color: var(--kpy-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.kpy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--kpy-space-md);
}

.kpy-form-submit {
    margin-top: var(--kpy-space-lg);
}

.kpy-contact-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--kpy-transition);
    backdrop-filter: blur(5px);
}

.kpy-contact-success-popup.active {
    opacity: 1;
    visibility: visible;
}

.kpy-success-content {
    background: var(--kpy-white);
    padding: var(--kpy-space-xl);
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    transform: translateY(30px);
    transition: all var(--kpy-transition);
    box-shadow: var(--kpy-shadow-xl);
}

.kpy-contact-success-popup.active .kpy-success-content {
    transform: translateY(0);
}

.kpy-checkmark {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--kpy-space-md);
}

.kpy-checkmark svg {
    width: 100%;
    height: 100%;
}

.kpy-success-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--kpy-space-sm);
    color: var(--kpy-primary);
}

.kpy-success-content p {
    margin-bottom: var(--kpy-space-lg);
    color: var(--kpy-grey);
    line-height: 1.6;
}

.kpy-close-popup {
    background: var(--kpy-gradient-primary);
    color: var(--kpy-white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--kpy-transition);
    font-weight: 600;
}

.kpy-close-popup:hover {
    transform: translateY(-2px);
    box-shadow: var(--kpy-shadow);
}

/* CTA Sections */
/* About CTA Section - Enhanced */
.kpy-about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.kpy-about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.kpy-about-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.kpy-about-cta .kpy-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.kpy-about-cta .kpy-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.kpy-about-cta .kpy-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.kpy-about-cta .kpy-btn {
    background: #ffffff;
    color: #FF6B35;
    border: 2px solid #ffffff;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.kpy-about-cta .kpy-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* About Partners Section - Enhanced */
.kpy-about-partners {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.kpy-partners-content {
    margin-top: 50px;
}

.kpy-partner-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.kpy-partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.kpy-partner-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.kpy-partner-item:hover::before {
    left: 100%;
}

.kpy-partner-logo {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.kpy-partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.kpy-partner-item:hover .kpy-partner-logo {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.1));
}

.kpy-partner-item:hover .kpy-partner-logo img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.kpy-partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.kpy-partner-item:hover .kpy-partner-name {
    color: #FF6B35;
}

.kpy-services-cta {
    padding: var(--kpy-space-xl) 0;
    background: var(--kpy-gradient-primary);
    color: var(--kpy-white);
    text-align: center;
    margin-bottom: 0 !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.kpy-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--kpy-space-md);
    color: var(--kpy-white);
}

.kpy-cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--kpy-space-lg);
    opacity: 0.95;
}

.kpy-cta-buttons {
    display: flex;
    gap: var(--kpy-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .kpy-property-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .kpy-hero-title {
        font-size: 2.5rem;
    }

    .kpy-slide-title h2 {
        font-size: 2.5rem;
    }

    .kpy-property-grid {
        grid-template-columns: 1fr;
    }

    .kpy-filter-grid {
        grid-template-columns: 1fr;
    }

    .kpy-form-row {
        grid-template-columns: 1fr;
    }

    .kpy-details-grid {
        grid-template-columns: 1fr;
    }

    .kpy-language-switcher {
        right: 10px;
    }

    .kpy-hero-curve {
        height: 60px;
    }

    .kpy-menu-language-switcher {
        margin-right: 0.5rem;
    }

    .kpy-menu-lang-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .kpy-menu-lang-flag {
        font-size: 1rem;
    }
}

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

    .kpy-contact-container {
        margin-top: -60px;
    }

    .kpy-hero-curve {
        height: 40px;
    }
}



/* Footer Styles */
.kpy-footer {
    background: var(--kpy-bg-dark);
    color: var(--kpy-white);
    position: relative;
    margin-top: var(--kpy-space-xl);
}

.kpy-footer-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    display: block;
}

.kpy-footer-logo-curve-position {
    position: relative;
    z-index: 2;
    margin-top: -75px;
    margin-bottom: 30px;
    text-align: center;
}

.kpy-footer-logo-wrapper {
    display: inline-block;
    padding: 15px 25px;
    background: var(--kpy-white);
    border-radius: 12px;
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--kpy-space-md);
}

.kpy-footer-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.kpy-specialization-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--kpy-primary);
    color: var(--kpy-white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpy-footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--kpy-space-md);
    color: var(--kpy-white);
}

.kpy-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kpy-footer-links li {
    margin-bottom: 12px;
}

.kpy-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all var(--kpy-transition);
}

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

.kpy-footer-links i {
    margin-right: 8px;
    color: var(--kpy-primary);
}

.kpy-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kpy-footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
}

.kpy-footer-contact i {
    margin-right: 10px;
    color: var(--kpy-primary);
    margin-top: 4px;
}

.kpy-footer-social-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--kpy-space-md);
}

.kpy-social-links {
    display: flex;
    gap: var(--kpy-space-md);
}

.kpy-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpy-white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--kpy-transition);
}

.kpy-social-link:hover {
    background: var(--kpy-primary);
    transform: translateY(-3px);
    box-shadow: var(--kpy-shadow-lg);
}

.kpy-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--kpy-space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kpy-footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--kpy-transition);
}

.kpy-footer-bottom a:hover {
    color: var(--kpy-primary);
}

.kpy-footer-bottom .small {
    color: rgba(255, 255, 255, 0.7);
}

/** ==========================================================
Alpha Footer - Modern Redesign
===========================================================**/

/* Main Footer Container */
.alpha-footer {
    position: relative;
    background: #1a4a4f;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    overflow: hidden;
}

/* Remove margin-top when CTA section is present before footer */
.alpha-home-cta+.alpha-footer,
main:has(.alpha-home-cta)+.alpha-footer {
    margin-top: 0;
}

/* Top Wave Design with Teal Graphics */
.alpha-footer-top-wave {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -120px;
    overflow: hidden;
    background: #1a4a4f;
}

.alpha-footer-wave-svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Flowing Wave Graphics (exact screenshot style) */
.alpha-footer-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.alpha-footer-wave-flow {
    position: absolute;
    background: #3a7a80;
    opacity: 0.8;
}

/* Top right sweeping down and left */
.alpha-footer-wave-flow.wave-flow-1 {
    width: 600px;
    height: 400px;
    top: -150px;
    right: -100px;
    border-radius: 50% 30% 60% 40%;
    transform: rotate(-35deg);
    clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 0% 100%, 0% 30%);
}

/* Bottom left sweeping up and right */
.alpha-footer-wave-flow.wave-flow-2 {
    width: 500px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    border-radius: 40% 50% 50% 60%;
    transform: rotate(25deg);
    clip-path: polygon(0% 20%, 80% 0%, 100% 80%, 20% 100%);
}

/* Upper-middle horizontal curved band */
.alpha-footer-wave-flow.wave-flow-3 {
    width: 800px;
    height: 200px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    border-radius: 50% 50% 40% 40%;
    clip-path: ellipse(60% 50% at 50% 50%);
}

/* Main Footer Content */
.alpha-footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.alpha-footer-main .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.alpha-footer-main .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.alpha-footer-main .row>[class*="col-"] {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Brand/Logo Section */
.alpha-footer-brand {
    margin-bottom: 25px;
}

.alpha-footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.alpha-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.alpha-footer-logo-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--kpy-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.alpha-footer-logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Footer Description */
.alpha-footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 100%;
}

/* Specialization Tags */
.alpha-footer-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.alpha-specialization-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(3, 92, 92, 0.2);
    border: 1px solid rgba(3, 92, 92, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.alpha-specialization-tag:hover {
    background: rgba(3, 92, 92, 0.3);
    border-color: var(--kpy-primary);
    transform: translateY(-2px);
}

/* Footer Section Titles */
.alpha-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.alpha-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--kpy-primary);
    border-radius: 2px;
}

/* Footer Menu Links */
.alpha-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-footer-menu li {
    margin-bottom: 12px;
}

.alpha-footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.alpha-footer-menu a i {
    font-size: 16px;
    color: #fff !important;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.alpha-footer-menu a:hover {
    color: var(--kpy-primary);
    padding-left: 5px;
}

.alpha-footer-menu a:hover i {
    transform: translateX(3px);
    color: var(--kpy-primary) !important;
    opacity: 1;
}

/* Footer Get In Touch - aligned icons and content */
.alpha-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-footer-contact-item {
    margin-bottom: 1.25rem;
}

.alpha-footer-contact-item:last-child {
    margin-bottom: 0;
}

.alpha-footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--kpy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alpha-footer-contact-icon .bi {
    font-size: 1.25rem;
    color: #fff;
}

.alpha-footer-contact-content {
    flex: 1;
    min-width: 0;
}

.alpha-footer-contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alpha-footer-contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: block;
}

.alpha-footer-contact-value:hover {
    color: #fff;
}

/* Social Media Section */
.alpha-footer-social-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alpha-footer-social-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.alpha-footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.alpha-footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.alpha-footer-social-link:hover {
    background: var(--kpy-primary);
    border-color: var(--kpy-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 92, 92, 0.4);
}

/* Footer Bottom Bar */
.alpha-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 0;
}

.alpha-footer-bottom .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.alpha-footer-bottom .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.alpha-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    text-align: left;
}

.alpha-footer-copyright strong {
    color: var(--kpy-primary);
    font-weight: 600;
}

.alpha-footer-bottom-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.alpha-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.alpha-footer-bottom-links a,
.alpha-footer-bottom-center a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.alpha-footer-bottom-links a:hover,
.alpha-footer-bottom-center a:hover {
    color: var(--kpy-primary);
}

.alpha-footer-regulator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    white-space: nowrap;
}

.alpha-footer-regulator strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Footer Separator */
.alpha-footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    font-size: 14px;
}

/* LWEGATECH Credits (inline with copyright) */
.alpha-footer-credits-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}

.alpha-footer-credits-link {
    color: var(--kpy-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.alpha-footer-credits-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kpy-primary);
    transition: width 0.3s ease;
}

.alpha-footer-credits-link:hover {
    color: #fff;
}

.alpha-footer-credits-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .alpha-footer-main {
        padding: 50px 0 30px;
    }

    .alpha-footer-title {
        margin-top: 30px;
    }

    .alpha-footer-social-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .alpha-footer-social-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .alpha-footer-bottom {
        text-align: center;
    }

    .alpha-footer-bottom-center {
        justify-content: center;
        margin-top: 15px;
    }

    .alpha-footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .alpha-footer-copyright {
        text-align: center;
        margin-bottom: 10px;
    }

    .alpha-footer-credits-text {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .alpha-footer-top-wave {
        height: 60px;
        margin-top: -60px;
    }

    .alpha-footer-main {
        padding: 40px 0 25px;
    }

    .alpha-footer-logo-main {
        font-size: 28px;
    }

    .alpha-footer-description {
        max-width: 100%;
        font-size: 14px;
    }

    .alpha-footer-title {
        font-size: 16px;
        margin-top: 25px;
    }

    .alpha-footer-contact li {
        margin-bottom: 18px;
    }

    .alpha-footer-social-section {
        text-align: center;
    }

    .alpha-footer-social-text {
        margin-bottom: 15px;
    }

    .alpha-footer-social-links {
        justify-content: center;
    }

    .alpha-footer-bottom {
        text-align: center;
    }

    .alpha-footer-bottom-center {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .alpha-footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .alpha-footer-separator {
        display: none;
    }

    .alpha-footer-top-wave {
        height: 100px;
        margin-top: -100px;
    }

    .alpha-footer-wave-flow {
        opacity: 0.5;
    }
}



/* ============================================================
   Inner Page Hero Section (for page.php)
   ============================================================ */

.inner-page-hero {
    position: relative !important;
    height: 520px !important;
    min-height: 520px !important;
    width: 100% !important;
    display: block !important;
    overflow: visible !important;
    background-color: #1a1a1a !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: both !important;
    margin-bottom: 100px !important;
}

.inner-page-hero .container-fluid {
    height: 100% !important;
    min-height: 520px !important;
    position: relative;
    z-index: 2;
}

.inner-page-hero .row {
    height: 100% !important;
    min-height: 520px !important;
    margin: 0 !important;
}

.inner-hero-bg-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.kenburns-effect {
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-3%, -3%);
    }
}

.inner-hero-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 1;
    pointer-events: none;
}

/* For the V-shaped inner-page-hero, hide the old full-height green overlay */
.inner-page-hero .inner-hero-green-overlay {
    display: none !important;
}

/* V-shaped hero: full image hero clipped to a V at the bottom */
.inner-page-hero {
    background-color: #1a1a1a !important;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.inner-hero-bg-image {
    top: 0;
    bottom: auto;
    height: 100% !important;
    clip-path: none;
}

.inner-hero-scroll-trigger {
    position: absolute;
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 3;
}

.inner-hero-scroll-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid var(--kpy-primary);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: inner-scroll-pulse 2.4s ease-in-out infinite;
}

.inner-hero-scroll-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--kpy-primary);
}

.inner-hero-scroll-trigger:hover .inner-hero-scroll-circle {
    box-shadow: 0 6px 14px rgba(3, 92, 92, 0.35);
}

@keyframes inner-scroll-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 92, 92, 0.4);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 12px rgba(3, 92, 92, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 92, 92, 0);
    }
}

/* Folded Paper Banner Hero Section - Starts at bottom and extends upward */
.inner-hero-folded-banner-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    pointer-events: none;
}

.inner-hero-folded-banner-wrapper * {
    pointer-events: auto;
}

.inner-hero-angular-banner {
    position: relative;
    background: linear-gradient(135deg, #035c5c 0%, #047a7a 25%, #035c5c 50%, #024949 75%, #035c5c 100%) !important;
    padding: 3.5rem 6rem !important;
    max-width: 85% !important;
    text-align: center;
    /* Green ribbon with scissor-cut ends: V-cut notches on left and right */
    clip-path: polygon(
            /* Left scissor-cut end */
            0% 25%,
            10% 0%,
            12% 8%,
            10% 15%,
            0% 30%,
            /* Left side straight */
            0% 70%,
            /* Left bottom scissor-cut */
            10% 85%,
            12% 92%,
            10% 100%,
            0% 75%,
            /* Bottom edge straight */
            100% 75%,
            /* Right bottom scissor-cut */
            90% 100%,
            88% 92%,
            90% 85%,
            100% 70%,
            /* Right side straight */
            100% 30%,
            /* Right top scissor-cut */
            90% 15%,
            88% 8%,
            90% 0%,
            100% 25%,
            /* Top edge straight back to start */
            0% 25%) !important;
    transform: translateY(0) !important;
    box-shadow:
        0 -8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 0 !important;
    /* Extend upward to overlap hero section - starts at bottom edge and extends up */
    margin-top: -100px !important;
    /* Metallic ribbon shine effect */
    background-size: 200% 200% !important;
    animation: ribbonShine 3s ease-in-out infinite !important;
}

@keyframes ribbonShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.inner-hero-angular-banner .inner-hero-large-text {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 1.25rem 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-family: 'Open Sans', sans-serif !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    font-family: 'Open Sans', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.3s !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb a:hover {
    opacity: 1 !important;
    text-decoration: underline !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb span {
    color: #ffffff !important;
    margin: 0 12px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    opacity: 0.8 !important;
}

.inner-hero-angular-banner .inner-hero-breadcrumb span:last-child {
    color: #ffffff !important;
    margin: 0 !important;
}

/* Responsive adjustments for folded banner */
@media (max-width: 768px) {
    .inner-hero-angular-banner {
        padding: 2.5rem 4rem !important;
        max-width: 92% !important;
        margin-top: -60px !important;
        clip-path: polygon(
                /* Left scissor-cut end */
                0% 25%,
                10% 0%,
                12% 8%,
                10% 15%,
                0% 30%,
                /* Left side straight */
                0% 70%,
                /* Left bottom scissor-cut */
                10% 85%,
                12% 92%,
                10% 100%,
                0% 75%,
                /* Bottom edge straight */
                100% 75%,
                /* Right bottom scissor-cut */
                90% 100%,
                88% 92%,
                90% 85%,
                100% 70%,
                /* Right side straight */
                100% 30%,
                /* Right top scissor-cut */
                90% 15%,
                88% 8%,
                90% 0%,
                100% 25%,
                /* Top edge straight back to start */
                0% 25%) !important;
    }

    .inner-hero-angular-banner .inner-hero-large-text {
        font-size: 2.5rem !important;
        letter-spacing: 1.5px !important;
    }

    .inner-hero-angular-banner .inner-hero-breadcrumb {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .inner-hero-angular-banner {
        padding: 2rem 2.5rem !important;
        max-width: 95% !important;
        margin-top: -40px !important;
        clip-path: polygon(
                /* Left scissor-cut end */
                0% 25%,
                10% 0%,
                12% 8%,
                10% 15%,
                0% 30%,
                /* Left side straight */
                0% 70%,
                /* Left bottom scissor-cut */
                10% 85%,
                12% 92%,
                10% 100%,
                0% 75%,
                /* Bottom edge straight */
                100% 75%,
                /* Right bottom scissor-cut */
                90% 100%,
                88% 92%,
                90% 85%,
                100% 70%,
                /* Right side straight */
                100% 30%,
                /* Right top scissor-cut */
                90% 15%,
                88% 8%,
                90% 0%,
                100% 25%,
                /* Top edge straight back to start */
                0% 25%) !important;
    }

    .inner-hero-angular-banner .inner-hero-large-text {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 1px !important;
    }

    .inner-hero-angular-banner .inner-hero-breadcrumb {
        font-size: 0.9rem !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
    }

    .inner-hero-angular-banner .inner-hero-breadcrumb span {
        margin: 0 !important;
    }
}

/* New Hero Section with Green Overlay - Page Title and Excerpt Only */
.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-page-title {
    font-size: 2.6rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 1.5rem 0 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-family: 'Open Sans', sans-serif !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.inner-hero-page-excerpt {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-family: 'Open Sans', sans-serif !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.95 !important;
}

.inner-hero-green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 92, 92, 0.75), rgba(3, 92, 92, 0.3), transparent);
    z-index: 1;
}

/* Responsive adjustments for new hero section */
@media (max-width: 992px) {
    .inner-hero-content {
        max-width: 500px !important;
        padding-left: 40px !important;
    }

    .inner-hero-page-title {
        font-size: 2.75rem !important;
    }

    .inner-hero-page-excerpt {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: 400px !important;
        min-height: 400px !important;
    }

    .inner-hero-content {
        max-width: 100% !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .inner-hero-page-title {
        font-size: 2.25rem !important;
        margin-bottom: 1rem !important;
    }

    .inner-hero-page-excerpt {
        font-size: 1rem !important;
    }

    .inner-hero-green-overlay {
        width: 60% !important;
    }
}

@media (max-width: 576px) {
    .inner-page-hero {
        height: 350px !important;
        min-height: 350px !important;
    }

    .inner-hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .inner-hero-page-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .inner-hero-page-excerpt {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .inner-hero-green-overlay {
        width: 70% !important;
    }
}

/* ============================================================
   Events Archive Page (archive-events.php)
   ============================================================ */
.events-archive-page .inner-hero-content {
    text-align: left;
}

.events-archive-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.events-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.events-archive-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(3, 92, 92, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.events-archive-card:hover {
    box-shadow: 0 12px 40px rgba(3, 92, 92, 0.12);
    transform: translateY(-4px);
}

.events-archive-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.events-archive-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e8ecef;
}

.events-archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.events-archive-card:hover .events-archive-img {
    transform: scale(1.05);
}

.events-archive-card-date-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--kpy-primary, #035c5c);
    color: #fff;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(3, 92, 92, 0.35);
}

.events-archive-card-date-badge i {
    font-size: 1rem;
}

.events-archive-card-body {
    padding: 1.5rem 1.25rem;
}

.events-archive-card-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.events-archive-card:hover .events-archive-card-title {
    color: var(--kpy-primary, #035c5c);
}

.events-archive-card-location,
.events-archive-card-time {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.events-archive-card-location i,
.events-archive-card-time i {
    color: var(--kpy-primary, #035c5c);
    flex-shrink: 0;
}

.events-archive-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kpy-primary, #035c5c);
    transition: gap 0.25s ease;
}

.events-archive-card:hover .events-archive-card-cta {
    gap: 0.6rem;
}

.events-archive-card-cta i {
    font-size: 1rem;
}

/* Events archive pagination */
.events-archive-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.events-archive-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.events-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.events-archive-pagination .page-numbers:hover,
.events-archive-pagination .page-numbers.current {
    background: var(--kpy-primary, #035c5c);
    color: #fff;
    border-color: var(--kpy-primary, #035c5c);
}

.events-archive-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

.events-archive-pagination .page-numbers.dots:hover {
    background: transparent;
    color: #333;
}

/* Events archive empty state */
.events-archive-empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.events-archive-empty-icon {
    font-size: 4rem;
    color: var(--kpy-primary, #035c5c);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.events-archive-empty-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.75rem;
}

.events-archive-empty-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   Single Event Page
   ============================================================ */
.single-event-page .single-event-hero .inner-hero-green-overlay {
    display: block !important;
}

.single-event-hero-inner {
    max-width: 100%;
}

.single-event-hero-top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.single-event-hero-breadcrumb {
    font-size: 0.95rem;
    font-weight: 500;
}

.single-event-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.single-event-hero-breadcrumb a:hover {
    opacity: 0.85;
}

.single-event-hero-breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.single-event-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--kpy-primary, #035c5c);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(3, 92, 92, 0.4);
}

.single-event-scroll-btn {
    flex-shrink: 0;
}

/* Single event content section */
.single-event-content {
    padding: 3.5rem 0 4rem;
    background: #fff;
}

.single-event-article {
    margin: 0;
}

.single-event-header {
    margin-bottom: 2rem;
}

.single-event-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.single-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.single-event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: #555;
}

.single-event-meta-item i {
    color: var(--kpy-primary, #035c5c);
    font-size: 1.1rem;
}

.single-event-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-height: 260px;
}

.single-event-img {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    object-fit: cover;
}

.single-event-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
}

.single-event-body p {
    margin-bottom: 1.25rem;
}

.single-event-body p:last-child {
    margin-bottom: 0;
}

.single-event-share {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.single-event-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.single-event-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.single-event-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.single-event-share-btn:hover {
    background: var(--kpy-primary, #035c5c);
    color: #fff;
}

.single-event-sidebar {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eee;
}

.single-event-sidebar-title {
    font-family: var(--kpy-font-heading, 'Open Sans', sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kpy-primary, #035c5c);
}

.single-event-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-event-related-item a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.single-event-related-item:last-child a {
    border-bottom: none;
}

.single-event-related-item a:hover {
    background: rgba(3, 92, 92, 0.06);
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
}

.single-event-related-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.single-event-related-body {
    flex: 1;
    min-width: 0;
}

.single-event-related-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.single-event-related-item a:hover .single-event-related-title {
    color: var(--kpy-primary, #035c5c);
}

.single-event-related-date,
.single-event-related-location {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.single-event-related-date i,
.single-event-related-location i {
    margin-right: 0.25rem;
    color: var(--kpy-primary, #035c5c);
}

.single-event-related-empty {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .single-event-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-event-content {
        padding: 2.5rem 0 3rem;
    }

    .single-event-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .events-archive-section {
        padding: 3rem 0 4rem;
    }

    .events-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .events-archive-card-image {
        height: 200px;
    }

    .events-archive-card-body {
        padding: 1.25rem 1rem;
    }

    .events-archive-card-title {
        font-size: 1.15rem;
    }
}

.inner-hero-text-col {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.6) !important;
    height: 100% !important;
    min-height: 400px !important;
    width: 33.333333% !important;
}

.inner-hero-text-content {
    width: 100%;
}

.inner-hero-large-text {
    font-family: var(--kpy-font-heading, 'Arial', sans-serif);
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--kpy-primary, #FF6B35) !important;
    line-height: 1.1;
    margin: 0 0 20px 0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.inner-hero-breadcrumb {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

.inner-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.inner-hero-breadcrumb a:hover {
    opacity: 0.8;
}

.inner-hero-breadcrumb span {
    margin: 0 8px;
    color: #ffffff;
}

.inner-hero-image-col {
    position: relative !important;
    z-index: 1 !important;
    padding: 0 !important;
    height: 100% !important;
    min-height: 400px !important;
    width: 66.666667% !important;
}

@media (max-width: 992px) {
    .inner-hero-large-text {
        font-size: 1.75rem;
    }

    .inner-hero-text-col {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: 300px;
        min-height: 300px;
    }

    .inner-hero-large-text {
        font-size: 1.5rem;
    }

    .inner-hero-text-col {
        padding: 20px 30px;
        background: rgba(0, 0, 0, 0.7);
        min-height: 300px;
    }

    .inner-hero-image-col {
        min-height: 300px;
    }
}


/* ==========================================================
   COMPREHENSIVE FIXES - SIDEBAR, CTA, HERO, PAGE DESIGNS
   ========================================================== */

/* Sidebar Improvements - Bold Headings, Even Spacing */
.sidebar,
.sidebar-widget {
    padding: 0;
    margin: 0;
}

.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar-widget h2,
.sidebar-widget h3,
.sidebar-widget h4,
.widget-title {
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    color: var(--kpy-base) !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-widget:first-child h2,
.sidebar-widget:first-child h3,
.sidebar-widget:first-child h4,
.sidebar-widget:first-child .widget-title {
    margin-top: 0 !important;
}

.sidebar ul,
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar li,
.sidebar-widget li {
    padding: 0.875rem 1rem;
    margin: 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: var(--kpy-bg-secondary);
    border-radius: 4px;
}

.sidebar li:hover,
.sidebar-widget li:hover {
    background: rgba(3, 92, 92, 0.1);
    border-left-color: var(--kpy-primary);
    padding-left: 1.25rem;
    transform: translateX(5px);
}

.sidebar a,
.sidebar-widget a {
    color: var(--kpy-grey);
    text-decoration: none;
    display: block;
    width: 100%;
    transition: color 0.3s ease;
}

.sidebar a:hover,
.sidebar-widget a:hover {
    color: var(--kpy-primary);
}

.sidebar .widget {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--kpy-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Reduce Hero Section Padding */
.inner-hero-section,
.page-hero,
.hero-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.inner-hero-section+*,
.page-hero+*,
.hero-section+* {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* CTA Sections - Touch Footer, Parallax Effect */
.kpy-about-cta,
.kpy-services-cta,
.kpy-concierge-cta,
.og-about-cta,
.og-service-cta,
.homepage-cta-parallax {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.kpy-footer {
    margin-top: 0 !important;
}

/* All CTA sections should have parallax background support */
.kpy-about-cta[data-parallax],
.kpy-services-cta[data-parallax],
.kpy-concierge-cta[data-parallax],
.og-about-cta[data-parallax],
.og-service-cta[data-parallax] {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Modern Real Estate Page Design Improvements */
/* Remove excessive padding and improve spacing */
.homepage-template>section,
.kpy-concierge-page>section,
.kpy-about-page>section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.homepage-template>section:first-of-type {
    padding-top: 2rem !important;
}

/* Enhanced Card Designs - Luxury Real Estate Style */
.homepage-service-card,
.kpy-concierge-service-card,
.kpy-benefit-card,
.kpy-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.homepage-service-card::before,
.kpy-concierge-service-card::before,
.kpy-benefit-card::before,
.kpy-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.homepage-service-card:hover,
.kpy-concierge-service-card:hover,
.kpy-benefit-card:hover,
.kpy-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 92, 92, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.homepage-service-card:hover::before,
.kpy-concierge-service-card:hover::before,
.kpy-benefit-card:hover::before,
.kpy-feature-card:hover::before {
    transform: scaleX(1);
}

/* Icon Improvements */
.homepage-service-icon,
.kpy-concierge-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.homepage-service-card:hover .homepage-service-icon,
.kpy-concierge-service-card:hover .kpy-concierge-service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.homepage-service-icon i,
.kpy-concierge-service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Typography Improvements */
.homepage-section-title,
.kpy-section-title {
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.homepage-section-subtitle,
.kpy-section-subtitle {
    font-size: 1.2rem !important;
    color: var(--kpy-grey) !important;
    margin-bottom: 3rem !important;
}

/* Statistics Cards - Modern Design */
.homepage-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.homepage-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
    transform: scale(0);
}

.homepage-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--kpy-primary);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.homepage-stat-card:hover::before {
    transform: scale(1);
}

.homepage-stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.homepage-stat-card:hover .homepage-stat-icon {
    transform: rotate(360deg) scale(1.1);
}

.homepage-stat-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.homepage-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 0.5rem;
    font-family: var(--kpy-font-heading);
}

.homepage-stat-label {
    font-size: 1rem;
    color: var(--kpy-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Responsive Improvements */
@media (max-width: 768px) {

    .sidebar h2,
    .sidebar h3,
    .sidebar h4,
    .sidebar-widget h2,
    .sidebar-widget h3,
    .sidebar-widget h4,
    .widget-title {
        font-size: 1.2rem !important;
    }

    .homepage-section-title,
    .kpy-section-title {
        font-size: 2rem !important;
    }

    .homepage-stat-card,
    .homepage-service-card,
    .kpy-concierge-service-card {
        padding: 1.5rem;
    }
}

/* Ensure footer touches CTA */
.kpy-footer-top-curve {
    margin-top: 0 !important;
}

/* Additional OG CTA fixes */
.og-about-cta,
.og-service-cta {
    margin-bottom: 0 !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================================
   IMPROVED BLOG/NEWS/GALLERY ARCHIVE & SINGLE POST STYLES
   ========================================================== */

/* Category Archive Improvements */
.category-archive-page {
    background: #ffffff;
}

.category-hero {
    position: relative;
    overflow: hidden;
}

.category-hero-title {
    font-family: var(--kpy-font-heading);
}

.category-content-section {
    padding: 60px 0;
}

/* Modern Gallery Grid */
.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.modern-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
}

.modern-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.modern-gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-card-content {
    padding: 1.5rem;
    background: #ffffff;
}

.gallery-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kpy-base);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    font-family: var(--kpy-font-heading);
}

.gallery-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--kpy-grey);
    font-size: 0.9rem;
}

/* Modern News/Blog Grid */

.archive-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 1.5rem;
    font-family: var(--kpy-font-heading);
}

.archive-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--kpy-grey);
    margin-bottom: 2rem;
}

.archive-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.archive-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.archive-feature-item i {
    color: var(--kpy-primary);
    font-size: 1.2rem;
}

.archive-stats {
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary));
    padding: 3rem;
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--kpy-font-heading);
}

.stat-label {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Category Pagination */
.category-pagination {
    margin-top: 4rem;
    text-align: center;
}

.category-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-pagination .page-numbers li {
    margin: 0;
}

.category-pagination .page-numbers a,
.category-pagination .page-numbers span {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    color: var(--kpy-base);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--kpy-light-grey);
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-pagination .page-numbers a:hover,
.category-pagination .page-numbers .current {
    background: var(--kpy-primary);
    color: #ffffff;
    border-color: var(--kpy-primary);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .category-hero-title {
        font-size: 2rem !important;
    }

    .media-section-title {
        font-size: 2rem !important;
    }

    .modern-gallery-grid,
    .modern-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .archive-features {
        grid-template-columns: 1fr;
    }

    .archive-intro-title {
        font-size: 2rem !important;
    }

    .stat-number {
        font-size: 3rem !important;
    }

    .single-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   COMPREHENSIVE PAGE REDESIGN - MODERN STYLES
   ============================================ */

/* About Page - Kasenga Intro Section */
.kpy-about-kasenga-intro {
    padding: 100px 0;
    background: #ffffff;
}

.kpy-about-kasenga-content {
    padding-right: 40px;
}

.kpy-about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: var(--kpy-font-heading);
    line-height: 1.2;
}

.kpy-about-main-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.kpy-about-main-text p {
    margin-bottom: 20px;
}

.kpy-about-main-image {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Business Areas - Modern Timeline Style */
.kpy-business-areas-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.kpy-business-areas-timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 60px;
}

.kpy-business-areas-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6B35 0%, rgba(255, 107, 53, 0.3) 100%);
}

.kpy-business-area-item-modern {
    position: relative;
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.kpy-business-area-item-modern::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 40px;
    width: 20px;
    height: 20px;
    background: #FF6B35;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px #FF6B35;
    z-index: 2;
}

.kpy-business-area-item-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
    border-left-color: #FF6B35;
}

.kpy-business-area-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    font-family: var(--kpy-font-heading);
}

.kpy-business-area-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.kpy-business-area-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
}

.kpy-business-area-title-modern a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kpy-business-area-title-modern a:hover {
    color: #FF6B35;
}

.kpy-business-area-desc-modern {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.kpy-business-area-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.kpy-business-area-link:hover {
    color: #E55A2B;
    gap: 12px;
}

/* List With Us - Side by Side Layout */
.kpy-list-form-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.kpy-list-info-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.kpy-list-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--kpy-font-heading);
}

.kpy-list-info-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.kpy-list-info-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 30px;
}

.kpy-list-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.kpy-list-info-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kpy-list-info-list li i {
    color: #FF6B35;
    font-size: 1.2rem;
}

.kpy-list-info-benefits {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.kpy-list-info-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.kpy-list-info-benefits p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.kpy-list-form-wrapper-modern {
    background: #ffffff;
    padding: 50px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.kpy-list-form-form-modern .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.kpy-list-form-form-modern .form-control:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.kpy-list-form-form-modern label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

/* Homepage Business Areas */
.homepage-business-areas {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.homepage-business-area-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.homepage-business-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #E55A2B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.homepage-business-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.homepage-business-area-card:hover::before {
    transform: scaleX(1);
}

.homepage-business-area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(3, 92, 92, 0.3);
    transition: all 0.3s ease;
}

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

.homepage-business-area-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
}

.homepage-business-area-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.homepage-business-area-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.homepage-business-area-link:hover {
    color: #E55A2B;
    gap: 12px;
}

/* Business Area Page Template */
.kpy-business-area-content-section {
    padding: 100px 0;
    background: #ffffff;
}

.kpy-business-area-main-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.kpy-business-area-main-content h2,
.kpy-business-area-main-content h3 {
    color: #1a1a1a;
    font-family: var(--kpy-font-heading);
    margin-top: 30px;
    margin-bottom: 20px;
}

.kpy-business-area-featured-image {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.kpy-business-area-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.kpy-service-item-modern {
    background: #ffffff;
    padding: 35px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.kpy-service-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.kpy-service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.kpy-service-item-modern:hover .kpy-service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.kpy-service-item-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
}

.kpy-service-item-modern p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kpy-about-main-title {
        font-size: 2.5rem;
    }

    .kpy-business-areas-timeline {
        padding-left: 40px;
    }

    .kpy-business-area-item-modern::before {
        left: -35px;
    }

    .kpy-list-info-section,
    .kpy-list-form-wrapper-modern {
        padding: 35px;
    }
}

/* Concierge Page - Modern Styles */
.kpy-concierge-intro-modern {
    padding: 100px 0;
    background: #ffffff;
}

.kpy-intro-subtitle-modern {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 600;
}

.kpy-intro-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: var(--kpy-font-heading);
    line-height: 1.2;
}

.kpy-intro-content-modern {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.kpy-intro-content-modern p {
    margin-bottom: 20px;
}

.kpy-intro-highlight-modern {
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #FF6B35;
    border-radius: 8px;
    margin-top: 30px;
}

.kpy-intro-highlight-modern p {
    margin: 0;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.kpy-page-content-modern {
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.kpy-concierge-featured-image {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 768px) {

    .kpy-about-kasenga-intro,
    .kpy-business-areas-modern,
    .kpy-list-form-modern,
    .kpy-concierge-intro-modern {
        padding: 60px 0;
    }

    .kpy-about-main-title,
    .kpy-intro-title-modern {
        font-size: 2rem;
    }

    .kpy-business-areas-timeline {
        padding-left: 30px;
    }

    .kpy-business-areas-timeline::before {
        left: 15px;
    }

    .kpy-business-area-item-modern {
        padding: 20px;
    }

    .kpy-business-area-item-modern::before {
        left: -25px;
        width: 15px;
        height: 15px;
    }

    .kpy-business-area-number {
        font-size: 2rem;
    }

    .kpy-list-info-section,
    .kpy-list-form-wrapper-modern {
        padding: 25px;
    }
}

/* Global Border Radius for Buttons and Images - Custom Shape */
.kpy-btn,
.kpy-btn-primary,
.kpy-btn-lg,
.homepage-cta-button,
.og-cta-btn,
.kpy-btn-secondary,
button.btn,
a.btn,
.news-card-image,
.news-card-image img,
.modern-news-card img,
.property-image,
.kpy-property-image,
.gm-listing-image,
.homepage-about-image img,
.kpy-about-main-image img,
.kpy-business-area-featured-image img,
img[class*="img-fluid"],
img[class*="rounded"] {
    border-radius: var(--kpy-border-radius-custom, 0 20px 0 20px) !important;
}

/* Exceptions - keep circular for icons/badges */
.news-card-badge,
.kpy-property-badge,
.badge,
[class*="badge"] {
    border-radius: 50px !important;
}

/* Business Areas Workflow Style - Inspired by Uptown Theme */
.kpy-business-areas-workflow {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.kpy-business-areas-workflow .kpy-section-header {
    text-align: left;
    margin-bottom: 80px;
}

.kpy-business-areas-workflow .kpy-section-header .kpy-section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kpy-primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.kpy-business-areas-workflow .kpy-section-header .kpy-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
}

.kpy-business-areas-workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.kpy-business-area-workflow-item {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--kpy-border-radius-custom);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.kpy-business-area-workflow-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 92, 92, 0.15);
    border-left-color: var(--kpy-primary);
}

.kpy-business-area-workflow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: var(--kpy-font-heading);
    box-shadow: 0 8px 20px rgba(3, 92, 92, 0.3);
}

.kpy-business-area-workflow-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: var(--kpy-font-heading);
    line-height: 1.3;
}

.kpy-business-area-workflow-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kpy-business-area-workflow-title a:hover {
    color: var(--kpy-primary);
}

.kpy-business-area-workflow-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .kpy-business-areas-workflow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kpy-business-areas-workflow .kpy-section-header .kpy-section-title {
        font-size: 2.5rem;
    }
}

/*====================================================================
   Alpha Asset Managers Brand CSS
   Custom styling based on Alpha Asset Managers Brand Guidelines
   Primary Color: Alpha Green (#035c5c)
   Typography: Benton Sans Pro (headings), Open Sans (body)
===================================================================**/

/* ============================================
   BRAND COLOR PALETTE
   ============================================ */
:root {
    /* Primary Brand Color - Alpha Green */
    --alpha-primary: #035c5c;
    --alpha-primary-rgb: 6, 92, 93;
    --alpha-primary-75: rgba(6, 92, 93, 0.75);
    /* 75% tint */
    --alpha-primary-50: rgba(6, 92, 93, 0.50);
    /* 50% tint */
    --alpha-primary-25: rgba(6, 92, 93, 0.25);
    /* 25% tint */

    /* CMYK: 91, 46, 57, 28 */
    /* RGB: 6, 92, 93 */
    /* HEX: #035c5c */

    /* Extended Color Palette */
    --alpha-secondary: #1a7a7a;
    --alpha-accent: #4a9d9d;
    --alpha-light: #e6f2f2;
    --alpha-lighter: #f0f7f7;

    /* Neutral Colors */
    --alpha-base: #1a1a1a;
    --alpha-dark: #2d2d2d;
    --alpha-grey: #666666;
    --alpha-light-grey: #e5e5e5;
    --alpha-white: #ffffff;
    --alpha-black: #000000;

    /* Background Colors */
    --alpha-bg-primary: #ffffff;
    --alpha-bg-secondary: #f8f9fa;
    --alpha-bg-accent: #f0f7f7;
    --alpha-bg-dark: #035c5c;
    --alpha-bg-overlay: rgba(3, 92, 92, 0.85);

    /* Typography - Brand Fonts */
    --alpha-font-heading: "Benton Sans Pro", "Open Sans", system-ui, -apple-system, sans-serif;
    --alpha-font-body: "Open Sans", system-ui, -apple-system, sans-serif;

    /* Font Weights - Benton Sans Pro */
    --alpha-weight-book: 300;
    --alpha-weight-regular: 400;
    --alpha-weight-bold: 700;
    --alpha-weight-black: 900;

    /* Shadows & Effects */
    --alpha-shadow: 0 2px 4px rgba(3, 92, 92, 0.1);
    --alpha-shadow-md: 0 4px 8px rgba(3, 92, 92, 0.15);
    --alpha-shadow-lg: 0 8px 16px rgba(3, 92, 92, 0.2);
    --alpha-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --alpha-space-xs: 0.5rem;
    --alpha-space-sm: 1rem;
    --alpha-space-md: 1.5rem;
    --alpha-space-lg: 3rem;
    --alpha-space-xl: 4rem;
    --alpha-space-2xl: 6rem;

    /* Gradients */
    --alpha-gradient-primary: linear-gradient(135deg, #035c5c 0%, #024a4a 100%);
    --alpha-gradient-hero: linear-gradient(135deg, rgba(3, 92, 92, 0.95) 0%, rgba(2, 74, 74, 0.95) 100%);

    /* Accent Colors - Using Alpha Green Tints */
    --alpha-accent: var(--alpha-primary-75);
    /* 75% tint for accents */
    --alpha-accent-light: var(--alpha-primary-50);
    /* 50% tint for lighter accents */
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: var(--alpha-font-body);
    color: var(--alpha-base);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    color: var(--alpha-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1,
.h1 {
    font-size: 3rem;
    font-weight: var(--alpha-weight-black);
    letter-spacing: -0.02em;
}

h2,
.h2 {
    font-size: 2.5rem;
    font-weight: var(--alpha-weight-bold);
}

h3,
.h3 {
    font-size: 2rem;
    font-weight: var(--alpha-weight-bold);
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: var(--alpha-weight-regular);
}

h5,
.h5 {
    font-size: 1.25rem;
    font-weight: var(--alpha-weight-regular);
}

h6,
.h6 {
    font-size: 1rem;
    font-weight: var(--alpha-weight-regular);
}

p {
    font-family: var(--alpha-font-body);
    margin-bottom: 1rem;
    color: var(--alpha-grey);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--alpha-dark);
}

/* ============================================
   BRAND COLORS - OVERRIDES
   ============================================ */
.text-alpha-primary {
    color: var(--alpha-primary) !important;
}

.bg-alpha-primary {
    background-color: var(--alpha-primary) !important;
    color: var(--alpha-white) !important;
}

.bg-alpha-primary-75 {
    background-color: var(--alpha-primary-75) !important;
}

.bg-alpha-primary-50 {
    background-color: var(--alpha-primary-50) !important;
}

.bg-alpha-primary-25 {
    background-color: var(--alpha-primary-25) !important;
}

.bg-alpha-light {
    background-color: var(--alpha-light) !important;
}

.bg-alpha-lighter {
    background-color: var(--alpha-lighter) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-alpha-primary {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    border: 2px solid var(--alpha-primary);
    padding: 0.75rem 2rem;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--alpha-transition);
    text-decoration: none;
    display: inline-block;
}

.btn-alpha-primary:hover,
.btn-alpha-primary:focus {
    background-color: var(--alpha-secondary);
    border-color: var(--alpha-secondary);
    color: var(--alpha-white);
    transform: translateY(-2px);
    box-shadow: var(--alpha-shadow-md);
}

.btn-alpha-outline {
    background-color: transparent;
    color: var(--alpha-primary);
    border: 2px solid var(--alpha-primary);
    padding: 0.75rem 2rem;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--alpha-transition);
    text-decoration: none;
    display: inline-block;
}

.btn-alpha-outline:hover,
.btn-alpha-outline:focus {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    transform: translateY(-2px);
    box-shadow: var(--alpha-shadow-md);
}

.btn-alpha-white {
    background-color: var(--alpha-white);
    color: var(--alpha-primary);
    border: 2px solid var(--alpha-white);
    padding: 0.75rem 2rem;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--alpha-transition);
    text-decoration: none;
    display: inline-block;
}

.btn-alpha-white:hover,
.btn-alpha-white:focus {
    background-color: transparent;
    color: var(--alpha-white);
    border-color: var(--alpha-white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.alpha-header {
    background-color: var(--alpha-white);
    box-shadow: var(--alpha-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.alpha-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.alpha-nav {
    font-family: var(--alpha-font-heading);
}

.alpha-nav .navbar-nav .nav-link {
    color: var(--alpha-base);
    font-weight: var(--alpha-weight-regular);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: var(--alpha-transition);
    position: relative;
}

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

.alpha-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--alpha-primary);
    transform: scaleX(0);
    transition: transform var(--alpha-transition);
}

.alpha-nav .navbar-nav .nav-link:hover::after,
.alpha-nav .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.alpha-hero {
    background: var(--alpha-gradient-hero);
    color: var(--alpha-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.alpha-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 92, 92, 0.85);
    z-index: 1;
}

.alpha-hero .container {
    position: relative;
    z-index: 2;
}

.alpha-hero h1 {
    color: var(--alpha-white);
    font-weight: var(--alpha-weight-black);
    margin-bottom: 1.5rem;
}

.alpha-hero .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */
.alpha-value-prop {
    padding: 5rem 0;
    background-color: var(--alpha-bg-primary);
}

.alpha-value-prop h2 {
    color: var(--alpha-primary);
    margin-bottom: 2rem;
}

.alpha-value-prop .value-card {
    background-color: var(--alpha-white);
    padding: 2.5rem;
    box-shadow: var(--alpha-shadow);
    transition: var(--alpha-transition);
    height: 100%;
    border-top: 4px solid var(--alpha-primary);
}

.alpha-value-prop .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

.alpha-value-prop .value-card h3 {
    color: var(--alpha-primary);
    margin-bottom: 1rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.alpha-team {
    padding: 5rem 0;
    background-color: var(--alpha-bg-secondary);
}

.alpha-team-member {
    background-color: var(--alpha-white);
    padding: 2rem;
    box-shadow: var(--alpha-shadow);
    text-align: center;
    transition: var(--alpha-transition);
    margin-bottom: 2rem;
}

.alpha-team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

.alpha-team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--alpha-primary);
}

.alpha-team-member h4 {
    color: var(--alpha-primary);
    margin-bottom: 0.5rem;
}

.alpha-team-member .role {
    color: var(--alpha-grey);
    font-style: italic;
    margin-bottom: 1rem;
}

/* ============================================
   PRODUCTS/SERVICES SECTION
   ============================================ */
.alpha-products {
    padding: 5rem 0;
    background-color: var(--alpha-bg-primary);
}

.alpha-product-card {
    background-color: var(--alpha-white);
    padding: 2.5rem;
    box-shadow: var(--alpha-shadow);
    transition: var(--alpha-transition);
    height: 100%;
    border-left: 4px solid var(--alpha-primary);
}

.alpha-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

.alpha-product-card h3 {
    color: var(--alpha-primary);
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.alpha-footer {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    padding: 4rem 0 2rem;
}

.alpha-footer h5 {
    color: var(--alpha-white);
    font-weight: var(--alpha-weight-bold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.alpha-footer a:hover {
    color: var(--alpha-white);
}

.alpha-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

/* ============================================
   COMPLIANCE & DISCLOSURES
   ============================================ */
.alpha-compliance {
    background-color: var(--alpha-light);
    padding: 2rem;
    border-left: 4px solid var(--alpha-primary);
    margin: 2rem 0;
}

.alpha-compliance h4 {
    color: var(--alpha-primary);
    margin-bottom: 1rem;
}

.alpha-compliance p {
    font-size: 0.9rem;
    color: var(--alpha-grey);
    margin-bottom: 0.5rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.alpha-section {
    padding: 5rem 0;
}

.alpha-section-alt {
    background-color: var(--alpha-bg-secondary);
}

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

.alpha-minimalist {
    background-color: var(--alpha-white);
    padding: 2rem;
    border: 1px solid var(--alpha-light-grey);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    .alpha-hero {
        padding: 4rem 0;
    }

    .alpha-hero .lead {
        font-size: 1.25rem;
    }

    .alpha-section {
        padding: 3rem 0;
    }
}

/* ============================================
   ACCESSIBILITY (WCAG 2.1)
   ============================================ */
.alpha-focus-visible:focus-visible {
    outline: 3px solid var(--alpha-primary);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    text-decoration: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes alphaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alpha-fade-in {
    animation: alphaFadeIn 0.6s ease-out;
}

/* ============================================
   EXACT HOMEPAGE DESIGN - HEADER & MENU
   ============================================ */

/* Top Bar */
.alpha-top-bar {
    background-color: var(--alpha-primary);
    color: var(--alpha-white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.alpha-top-bar a {
    color: var(--alpha-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Navigation */
/* Removed duplicate .alpha-main-nav - using the one defined in header section */

.nav-logo img {
    max-height: 50px;
    width: auto;
}

.nav-logo .logo-text {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.25rem;
    color: var(--alpha-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-menu-list>li>a {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-regular);
    font-size: 0.95rem;
    color: var(--alpha-base);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu-list>li>a:hover,
.nav-menu-list>li.current-menu-item>a {
    color: var(--alpha-primary);
}

.nav-menu-list>li.has-dropdown>a::after {
    content: '';
    display: inline-block;
    margin-left: 0.25rem;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
}

.nav-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--alpha-white);
    box-shadow: var(--alpha-shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-menu-list>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-list .sub-menu li {
    padding: 0;
}

.nav-menu-list .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--alpha-base);
    text-transform: none;
    font-size: 0.9rem;
}

.nav-menu-list .sub-menu a:hover {
    background-color: var(--alpha-light);
    color: var(--alpha-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.nav-action-btn {
    background: none;
    border: none;
    color: var(--alpha-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.nav-action-btn:hover {
    color: var(--alpha-secondary);
}

.nav-call-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: var(--alpha-primary);
    font-family: var(--alpha-font-heading);
}

.nav-call-btn .call-text {
    font-size: 0.75rem;
    font-weight: var(--alpha-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-call-btn .call-number {
    font-size: 0.95rem;
    font-weight: var(--alpha-weight-bold);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--alpha-primary);
    transition: all 0.3s;
}

/* Search Overlay */
.alpha-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.alpha-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-overlay-content form {
    display: flex;
    gap: 1rem;
}

.search-overlay-content input {
    flex: 1;
    padding: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    border: 2px solid var(--alpha-white);
    color: var(--alpha-white);
    border-radius: 0;
}

.search-overlay-content input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-overlay-content button {
    padding: 1.5rem 2rem;
    background: var(--alpha-primary);
    border: none;
    color: var(--alpha-white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 0;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--alpha-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Menu */
.alpha-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--alpha-white);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.alpha-mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--alpha-light-grey);
}

.mobile-logo img {
    max-height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--alpha-primary);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--alpha-light-grey);
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--alpha-base);
    text-decoration: none;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-list a:hover {
    background-color: var(--alpha-light);
    color: var(--alpha-primary);
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.alpha-hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(3, 92, 92, 0.50) 0%, rgba(3, 92, 92, 0.40) 20%, rgba(3, 92, 92, 0.30) 40%, rgba(3, 92, 92, 0.20) 60%, rgba(3, 92, 92, 0.10) 80%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hide any curved bottom paths in hero sections */
.curved-bottom,
.kpy-hero-curve,
.inner-hero-curve {
    display: none !important;
}

/* Hide any SVG paths or elements in the hero slider */
.alpha-hero-slider svg,
.hero-slide svg,
.alpha-hero-slider path,
.hero-slide path {
    display: none !important;
    visibility: hidden !important;
}

/* Hide SVG paths and geometric shapes in main slider */
.main-slider svg,
.main-slider path,
.kpy-slide svg,
.kpy-slide path,
.kpy-slide-curve,
.kpy-slide-shapes,
.kpy-shape,
.kpy-shape-1,
.kpy-shape-2,
.kpy-shape-3,
.kpy-curtain-left,
.kpy-curtain-right {
    display: none !important;
    visibility: hidden !important;
}

/* Hide social icons and navigation links in slider */
.kpy-slider-left-social,
.kpy-slider-right-nav,
.kpy-social-icon,
.kpy-nav-link {
    display: none !important;
    visibility: hidden !important;
}

/* Geometric shapes removed - hidden via display none */
.hero-geometric-left,
.hero-geometric-right,
.geo-shape,
.geo-triangle-1,
.geo-triangle-2,
.geo-triangle-3,
.geo-angular {
    display: none !important;
    visibility: hidden !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--alpha-white);
    padding: 2rem 0;
}

.hero-label {
    display: inline-block;
    background: var(--kpy-gradient-medium);
    color: var(--alpha-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: var(--alpha-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(4, 122, 122, 0.4);
}

.hero-title {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--alpha-white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-hero-cta {
    display: inline-block;
    background: var(--alpha-white);
    color: var(--alpha-primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 2px solid var(--alpha-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-hero-cta:hover {
    background: var(--alpha-green-light);
    border-color: var(--alpha-green-light);
    color: var(--alpha-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 217, 217, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--alpha-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--alpha-white);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* ============================================
   FEATURE CARDS SECTION
   ============================================ */
.alpha-features-section {
    padding: 5rem 0;
    background: var(--kpy-gradient-light);
}

.feature-card {
    background: var(--alpha-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-top: 4px solid var(--alpha-green-50);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 122, 122, 0.2);
    border-top-color: var(--alpha-green-75);
    background: linear-gradient(to bottom, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--kpy-gradient-primary);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--alpha-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--alpha-white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.feature-card h3 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.5rem;
    color: var(--alpha-base);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--alpha-grey);
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.alpha-about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 50%, var(--alpha-white) 100%);
}

.about-image-wrapper {
    position: relative;
    border-radius: 50%;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.about-image,
.about-image-placeholder {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
}

.about-image-placeholder {
    background: var(--alpha-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px dashed var(--alpha-primary-50);
    border-radius: 50%;
    opacity: 0.5;
}

.section-label {
    display: inline-block;
    background: transparent;
    color: var(--kpy-primary);
    padding: 0.35rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: var(--alpha-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 2.5rem;
    color: var(--alpha-base);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--alpha-grey);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--alpha-base);
    font-size: 1rem;
}

.about-benefits li i {
    color: var(--alpha-green-75);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.about-benefits li:nth-child(even) i {
    color: var(--alpha-green-50);
}

.btn-section-cta {
    display: inline-block;
    background: var(--kpy-gradient-primary);
    color: var(--alpha-white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.btn-section-cta:hover {
    background: var(--kpy-gradient-medium);
    border-color: var(--alpha-green-75);
    color: var(--alpha-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 122, 122, 0.4);
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.alpha-solutions-section {
    padding: 5rem 0;
    background: var(--kpy-gradient-light);
}

.alpha-solutions-section .section-label {
    margin-bottom: 1rem;
}

.alpha-solutions-section h2 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 2.5rem;
    color: var(--alpha-base);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-intro {
    color: var(--kpy-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-home-highlights {
    padding: 4rem 0 4.5rem;
    background: #fff;
}

.alpha-home-highlights .alpha-highlights-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 0.75rem;
}

.alpha-home-highlights .alpha-highlights-intro {
    font-size: 0.98rem;
    color: var(--kpy-grey);
    max-width: 640px;
    margin: 0 auto;
}

.alpha-highlight-news-card {
    background: var(--kpy-bg-secondary);
    border-radius: 40px 0 40px 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: stretch;
}

.alpha-highlight-news-image {
    flex: 0 0 160px;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
}

.alpha-highlight-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alpha-highlight-news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.alpha-highlight-news-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--kpy-grey);
}

.alpha-highlight-news-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.alpha-highlight-news-title a {
    color: var(--kpy-base);
    text-decoration: none;
}

.alpha-highlight-news-title a:hover {
    color: var(--kpy-primary);
}

.alpha-highlight-news-excerpt {
    font-size: 0.9rem;
    color: var(--kpy-grey);
}

.alpha-highlight-events {
    background: var(--kpy-bg-secondary);
    border-radius: 40px 0 40px 0;
    padding: 1.75rem 1.5rem;
}

.alpha-highlight-events-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.alpha-highlight-events-list {
    margin: 0;
    padding: 0;
}

.alpha-highlight-event-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.alpha-highlight-event-date {
    flex: 0 0 54px;
    height: 54px;
    border-radius: 40px 0 40px 0;
    background: var(--kpy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.alpha-highlight-event-body {
    flex: 1;
    display: flex;
    align-items: center;
}

.alpha-highlight-event-title {
    font-size: 0.9rem;
    color: var(--kpy-base);
    text-decoration: none;
    font-weight: 600;
}

.alpha-highlight-event-title:hover {
    color: var(--kpy-primary);
}


.solution-card {
    background: var(--alpha-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-card:nth-child(1) .solution-icon {
    background: var(--kpy-gradient-primary);
}

.solution-card:nth-child(2) .solution-icon {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.solution-card:nth-child(3) .solution-icon {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--alpha-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1.5rem;
    color: var(--alpha-white);
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.solution-card h3 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.5rem;
    color: var(--alpha-base);
    margin: 0 1.5rem 1rem;
    text-align: center;
}

.solution-card p {
    color: var(--alpha-grey);
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    flex: 1;
}

.solution-link {
    display: block;
    text-align: center;
    color: var(--alpha-green-75);
    text-decoration: none;
    font-weight: var(--alpha-weight-bold);
    padding: 1rem;
    margin: 0 1.5rem 1.5rem;
    border-top: 2px solid var(--alpha-green-25);
    transition: all 0.3s;
}

.solution-link:hover {
    color: var(--alpha-primary);
    border-top-color: var(--alpha-green-50);
    background: var(--alpha-green-bg);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.alpha-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.alpha-process-section .section-label {
    margin-bottom: 1rem;
}

.alpha-process-section h2 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 2.5rem;
    color: var(--alpha-base);
    margin-bottom: 3rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -15%;
    width: 30%;
    height: 2px;
    background: var(--alpha-green-50);
    border-top: 2px dashed var(--alpha-green-50);
    transform: translateY(-50%);
    z-index: 1;
}

.process-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--alpha-green-50);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.process-step:nth-child(1) .process-number {
    background: var(--kpy-gradient-primary);
}

.process-step:nth-child(2) .process-number {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.process-step:nth-child(3) .process-number {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.process-step:nth-child(4) .process-number {
    background: var(--alpha-green-25);
    color: var(--alpha-primary);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--alpha-primary-75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpha-white);
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.process-step:nth-child(1) .process-icon {
    background: var(--kpy-gradient-primary);
}

.process-step:nth-child(2) .process-icon {
    background: linear-gradient(135deg, var(--alpha-green-75) 0%, var(--alpha-green-50) 100%);
}

.process-step:nth-child(3) .process-icon {
    background: linear-gradient(135deg, var(--alpha-green-50) 0%, var(--alpha-green-25) 100%);
}

.process-step:nth-child(4) .process-icon {
    background: var(--alpha-green-25);
    color: var(--alpha-primary);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--alpha-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpha-white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(4, 122, 122, 0.3);
}

.process-step h4 {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    font-size: 1.25rem;
    color: var(--alpha-base);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--alpha-grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dotted line with arrow from each step to the next */
.alpha-process-section .row {
    position: relative;
}

.alpha-process-section .row>[class*="col-"] {
    position: relative;
}

.alpha-process-section .row>[class*="col-"]:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(50% + 1.5rem);
    height: 0;
    border-bottom: 2px dashed var(--alpha-green-50);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.alpha-process-section .row>[class*="col-"]:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.5rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--alpha-green-50);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {

    .alpha-process-section .row>[class*="col-"]:not(:last-child)::before,
    .alpha-process-section .row>[class*="col-"]:not(:last-child)::after {
        display: none;
    }
}

/* Xtra-style homepage: section labels & split headings */
.alpha-homepage-xtra .section-label-uppercase {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--kpy-primary);
    margin-bottom: 0.5rem;
}

.alpha-homepage-xtra .alpha-section-split-heading {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--kpy-base);
}

/* Dual CTA blocks */
.alpha-dual-cta-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.alpha-dual-cta-card {
    display: block;
    padding: 2.5rem;
    background: var(--kpy-primary);
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alpha-dual-cta-card:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 92, 92, 0.25);
}

.alpha-dual-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.alpha-dual-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alpha-dual-cta-card .btn-section-cta {
    background: #fff;
    color: var(--kpy-primary);
    border: none;
}

.alpha-dual-cta-card .btn-section-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--kpy-primary);
}

/* Stats / Trust section */
.alpha-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.alpha-stats-heading {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--kpy-base);
}

.alpha-stat-item {
    padding: 1.5rem;
}

.alpha-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kpy-primary);
    line-height: 1.1;
}

.alpha-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--kpy-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}

/* Process intro & bullets */
.alpha-process-intro {
    max-width: 800px;
    margin-bottom: 1.5rem;
    color: var(--kpy-grey);
    line-height: 1.7;
}

.alpha-process-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    max-width: 700px;
}

.alpha-process-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--kpy-grey);
}

.alpha-process-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--kpy-primary);
    border-radius: 50%;
}

/* About: second CTA button outline */
.btn-outline-alpha {
    background: transparent !important;
    color: var(--kpy-primary) !important;
    border: 2px solid var(--kpy-primary) !important;
    margin-left: 0.75rem;
}

.btn-outline-alpha:hover {
    background: var(--kpy-primary) !important;
    color: #fff !important;
}

/* From the Blog section */
.alpha-blog-section {
    padding: 5rem 0;
    background: var(--kpy-gradient-light);
}

.alpha-blog-card {
    display: block;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alpha-blog-card:hover {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.alpha-blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.alpha-blog-card-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

.alpha-blog-card-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--kpy-grey);
    margin: 0.75rem 0 0.5rem;
}

.alpha-blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding: 0 1rem 1rem;
    line-height: 1.35;
    color: var(--kpy-base);
}

/* Meet Our Team section */
.alpha-team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--alpha-white) 0%, var(--alpha-green-bg) 100%);
}

.alpha-team-card {
    background: #fff;
    overflow: hidden;
    padding-bottom: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 999px 999px 0 0;
}

.alpha-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.alpha-team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px 999px 0 0;
}

.alpha-team-card-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 3rem;
    border-radius: 999px 999px 0 0;
}

.alpha-team-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 1rem 0.25rem;
    color: var(--kpy-base);
}

.alpha-team-card-role {
    font-size: 0.9rem;
    color: var(--kpy-grey);
    margin: 0 1rem;
}

/* ============================================
   ALPHA PRELOADER (favicon)
   ============================================ */
.alpha-preloader,
#preloader.alpha-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f10;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.alpha-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.alpha-preloader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alpha-preloader-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: alpha-preloader-pulse 1.2s ease-in-out infinite;
}

.alpha-preloader-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(3, 92, 92, 0.25);
    border-top-color: var(--alpha-primary, #035c5c);
    border-radius: 50%;
    animation: alpha-preloader-spin 0.9s linear infinite;
}

@keyframes alpha-preloader-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

@keyframes alpha-preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.alpha-consultation-section {

    padding: 0;
    margin: 0;
}

/* CTA (black/white + green blend) */
.alpha-home-cta {
    position: relative;
    background: linear-gradient(135deg, #0b0f10 0%, #0b0f10 30%, var(--alpha-primary) 100%);
    color: var(--alpha-white);
    margin-bottom: 0;
    overflow: hidden;
}

.alpha-home-cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.alpha-home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 16, 0.85) 0%, rgba(11, 15, 16, 0.75) 30%, rgba(3, 92, 92, 0.80) 100%);
    z-index: 1;
}

.alpha-home-cta .container {
    position: relative;
    z-index: 2;
}

.alpha-home-cta .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.alpha-home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(143, 192, 192, 0.10) 100%);
    padding: 2.5rem 2.5rem;
}

.alpha-home-cta-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.alpha-home-cta-title {
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-black);
    color: var(--alpha-white);
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.alpha-home-cta-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    max-width: 60ch;
}

.alpha-home-cta-actions {
    flex: 0 0 auto;
}

.alpha-home-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border: 2px solid var(--alpha-white);
    background: var(--alpha-white);
    color: #0b0f10;
    font-family: var(--alpha-font-heading);
    font-weight: var(--alpha-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.alpha-home-cta-button:hover {
    background: var(--alpha-green-light);
    border-color: var(--alpha-green-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-call-btn {
        display: none;
    }

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

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

    .process-arrow {
        display: none;
    }

    .alpha-home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .alpha-top-bar {
        font-size: 0.75rem;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

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

    .about-content h2,
    .alpha-solutions-section h2,
    .alpha-process-section h2,
    .alpha-home-cta-title {
        font-size: 2rem;
    }
}

/* ============================================================
   2. CAREERS CPT 
   ============================================================ */

.alpha-careers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.alpha-career-card {
    background: #f8fafb;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: none;
}

.alpha-career-card * {
    border: none;
    box-shadow: none;
}

.alpha-career-card .alpha-career-card__tag--salary {
    background: transparent;
    padding: 0;
}

.alpha-career-card__body {
    padding: 2.25rem 2rem;
}

.alpha-career-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.alpha-career-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.alpha-career-card__apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--kpy-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px 0 40px 0;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.alpha-career-card__apply-btn:hover {
    background: var(--kpy-primary-dark);
    color: #fff;
}

.alpha-career-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    margin-bottom: 1.25rem;
    row-gap: 0.35rem;
}

.alpha-career-card__tag {
    font-size: 0.85rem;
    color: var(--kpy-grey);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.alpha-career-card__tag:not(:last-child)::after {
    content: '';
    display: none;
}

.alpha-career-card__tag i {
    color: var(--kpy-primary);
    font-size: 0.95rem;
    opacity: 0.9;
}

.alpha-career-card__tag--salary {
    color: var(--kpy-primary);
    font-weight: 600;
}

.alpha-career-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--kpy-dark, #2d3748);
    margin: 0 0 1.25rem;
}

.alpha-career-card__section {
    margin-top: 1.5rem;
}

.alpha-career-card__section+.alpha-career-card__section {
    margin-top: 1.25rem;
}

.alpha-career-card__section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.6rem;
}

.alpha-career-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-career-card__list li {
    font-size: 0.9rem;
    color: var(--kpy-grey);
    line-height: 1.65;
    padding: 0.15rem 0 0.15rem 1.2rem;
    position: relative;
}

.alpha-career-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: var(--kpy-primary);
    border-radius: 50%;
    opacity: 0.8;
}

.alpha-career-card__deadline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--kpy-primary);
    font-weight: 600;
}

.alpha-career-card__deadline i {
    font-size: 1rem;
}

.alpha-careers-empty {
    text-align: center;
    padding: 3.5rem 2rem;
    background: #f8fafb;
    border-radius: 40px 0 40px 0;
}

.alpha-careers-empty i {
    font-size: 3rem;
    color: var(--kpy-primary);
    display: block;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.alpha-careers-empty p {
    color: var(--kpy-grey);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .alpha-career-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .alpha-career-card__body {
        padding: 1.75rem 1.5rem;
    }

    .alpha-careers-grid {
        padding: 1.5rem 0 2rem;
        gap: 1.5rem;
    }
}


/* ============================================================
   3. PRODUCTS TEMPLATE — FULL REDESIGN
   ============================================================ */

/* Hero */
.alpha-products-page .alpha-hero {
    position: relative;
    overflow: hidden;
}

.alpha-products-page .alpha-hero h1 {
    font-family: var(--alpha-font-head);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--alpha-white);
    margin: 0 0 .8rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.alpha-products-page .alpha-hero .lead {
    font-family: var(--alpha-font-body);
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.alpha-products-page .alpha-hero h2 {
    font-family: var(--alpha-font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--alpha-white);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

/* Overview section */
.alpha-products-page .alpha-section {
    padding: 3.5rem 0;
}

.alpha-products-page .alpha-content p {
    font-family: var(--alpha-font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--alpha-grey);
    margin-bottom: 1rem;
}

.alpha-products-page .alpha-content p:last-child {
    margin-bottom: 0;
}

/* Product cards grid */
.alpha-products-page .alpha-section-alt {
    background: var(--alpha-surface);
    padding: 4rem 0;
}

.alpha-products-page .alpha-product-card {
    background: var(--alpha-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--alpha-shadow-sm);
    border: 1px solid var(--alpha-green-light);
    transition: transform .3s var(--alpha-ease),
        box-shadow .3s var(--alpha-ease);
}

.alpha-products-page .alpha-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--alpha-shadow-lg);
}

/* top-left accent corner */
.alpha-products-page .alpha-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--alpha-grad-primary);
    border-radius: 0 0 4px 0;
}

.alpha-products-page .alpha-product-card h3 {
    font-family: var(--alpha-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--alpha-green);
    margin: 0.6rem 0 .65rem;
    line-height: 1.3;
}

.alpha-products-page .alpha-product-card p {
    font-family: var(--alpha-font-body);
    font-size: .9rem;
    line-height: 1.75;
    color: var(--alpha-grey);
    margin: 0 0 .8rem;
}

.alpha-products-page .alpha-product-card h4 {
    font-family: var(--alpha-font-head);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--alpha-base);
    margin: 0 0 .6rem !important;
}

.alpha-products-page .alpha-product-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alpha-products-page .alpha-product-card ul li {
    font-family: var(--alpha-font-body);
    font-size: .85rem;
    color: var(--alpha-grey);
    padding: .28rem 0 .28rem 1.1rem;
    position: relative;
    line-height: 1.55;
}

.alpha-products-page .alpha-product-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .68rem;
    width: 6px;
    height: 6px;
    background: var(--alpha-green);
    border-radius: 50%;
}

/* CTA button inside product card */
.alpha-products-page .btn-alpha-primary {
    display: inline-block;
    background: var(--alpha-grad-primary);
    color: var(--alpha-white);
    font-family: var(--alpha-font-head);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    padding: .55rem 1.4rem;
    border-radius: 30px;
    margin-top: .5rem;
    transition: transform .2s var(--alpha-ease),
        box-shadow .2s var(--alpha-ease);
}

.alpha-products-page .btn-alpha-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(3, 92, 92, .3);
    color: var(--alpha-white);
}

/* Compliance strip */
.alpha-products-page .alpha-compliance {
    background: var(--alpha-green-bg);
    border-top: 1px solid var(--alpha-green-light);
    padding: 2.2rem 0;
}

.alpha-products-page .alpha-compliance h4 {
    font-family: var(--alpha-font-head);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--alpha-green);
    margin: 0 0 .8rem;
}

.alpha-products-page .alpha-compliance p {
    font-family: var(--alpha-font-body);
    font-size: .78rem;
    line-height: 1.7;
    color: var(--alpha-grey);
    margin: 0 0 .5rem;
}

.alpha-products-page .alpha-compliance strong {
    color: var(--alpha-base);
}

/* Bottom CTA */
.alpha-products-page .alpha-hero p {
    font-family: var(--alpha-font-body);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.alpha-products-page .btn-alpha-white {
    display: inline-block;
    background: var(--alpha-white);
    color: var(--alpha-green);
    font-family: var(--alpha-font-head);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform .2s var(--alpha-ease),
        box-shadow .2s var(--alpha-ease);
}

.alpha-products-page .btn-alpha-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    color: var(--alpha-green);
}


/* ============================================================
   4. SERVICES TEMPLATE — FULL REDESIGN
   ============================================================ */

.alpha-services .alpha-section {
    padding: 4rem 0;
}

.alpha-services .alpha-content {
    max-width: 780px;
    margin: 0 auto;
}

.alpha-services .alpha-content p {
    font-family: var(--alpha-font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--alpha-grey);
    margin-bottom: 1rem;
}

/* Process title */
.alpha-services .text-alpha-primary {
    font-family: var(--alpha-font-head);
    color: var(--alpha-green) !important;
    position: relative;
    display: inline-block;
}

.alpha-services .text-alpha-primary::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: var(--alpha-grad-primary);
    border-radius: 2px;
}

/* Process step cards */
.alpha-services .alpha-process-step {
    background: var(--alpha-white);
    border-radius: 12px;
    padding: 1.8rem 1.6rem;
    box-shadow: var(--alpha-shadow-sm);
    border: 1px solid var(--alpha-green-light);
    border-left: 4px solid var(--alpha-green);
    height: 100%;
    transition: transform .3s var(--alpha-ease),
        box-shadow .3s var(--alpha-ease);
}

.alpha-services .alpha-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--alpha-shadow-md);
}

.alpha-services .alpha-step-number {
    width: 44px;
    height: 44px;
    background: var(--alpha-grad-primary);
    color: var(--alpha-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--alpha-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .9rem;
    box-shadow: 0 3px 10px rgba(3, 92, 92, .25);
}

.alpha-services .alpha-process-step h4 {
    font-family: var(--alpha-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--alpha-base);
    margin: 0;
    line-height: 1.4;
}

/* Features section */
.alpha-services .alpha-section-alt {
    background: var(--alpha-surface);
}

/* CTA strip */
.alpha-services .alpha-section[style*="035c5c"] {
    position: relative;
    overflow: hidden;
}

.alpha-services .alpha-section[style*="035c5c"] h2 {
    font-family: var(--alpha-font-head);
    position: relative;
    z-index: 1;
}

.alpha-services .alpha-section[style*="035c5c"] p {
    font-family: var(--alpha-font-body);
    position: relative;
    z-index: 1;
}

.alpha-services .alpha-section[style*="035c5c"] a {
    position: relative;
    z-index: 1;
    font-family: var(--alpha-font-head);
    transition: transform .2s var(--alpha-ease),
        box-shadow .2s var(--alpha-ease);
}

.alpha-services .alpha-section[style*="035c5c"] a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}


/* ============================================================
   5. CONTACT TEMPLATES — UNIFIED FIX
   ============================================================ */

/* ── 5a. CONTACT (main form page) ── */

.alpha-contact .alpha-contact-info-section {
    padding: 4rem 0;
}

/* Info stack labels */
.alpha-contact .alpha-contact-info-section h2 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-base);
}

.alpha-contact .alpha-contact-info-section p {
    font-family: var(--alpha-font-body);
}

/* Testimonial / image card */
.alpha-contact .alpha-contact-info-section img {
    border-radius: 12px;
    object-fit: cover;
}

/* Form section card */
.alpha-contact .alpha-contact-form-section {
    padding: 4rem 0;
}

.alpha-contact .alpha-contact-form-section h2 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-base);
}

/* Form inputs */
.alpha-contact .alpha-contact-form-section input,
.alpha-contact .alpha-contact-form-section select,
.alpha-contact .alpha-contact-form-section textarea {
    font-family: var(--alpha-font-body);
    transition: border-color .25s var(--alpha-ease),
        box-shadow .25s var(--alpha-ease);
}

.alpha-contact .alpha-contact-form-section input:focus,
.alpha-contact .alpha-contact-form-section select:focus,
.alpha-contact .alpha-contact-form-section textarea:focus {
    border-color: var(--alpha-green) !important;
    box-shadow: 0 0 0 3px rgba(3, 92, 92, .12);
}

/* Static map iframe replacement ─── key fix ─── */
.alpha-contact .alpha-contact-form-section .alpha-static-map-wrap {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border-radius: 0;
    overflow: hidden;
}

.alpha-contact .alpha-contact-form-section .alpha-static-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Newsletter strip */
.alpha-contact input[type="email"]:focus {
    outline: none;
    border-color: var(--alpha-green);
    box-shadow: 0 0 0 2px rgba(3, 92, 92, .12);
}


/* ── 5b. CONTACT DETAILS (3-card grid) ── */

.alpha-contact-details .container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Section header */
.alpha-contact-details p[style*="kpy-primary"] {
    font-family: var(--alpha-font-head);
}

.alpha-contact-details h2 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-base);
}

/* Three cards */
.alpha-contact-details .col-lg-4>div {
    background: var(--alpha-white);
    border-radius: 14px;
    box-shadow: var(--alpha-shadow-md);
    overflow: hidden;
    height: 100%;
    transition: transform .3s var(--alpha-ease),
        box-shadow .3s var(--alpha-ease);
}

.alpha-contact-details .col-lg-4>div:hover {
    transform: translateY(-6px);
    box-shadow: var(--alpha-shadow-hover);
}

/* Card accent bar */
.alpha-contact-details .col-lg-4>div>div:first-child {
    height: 4px;
    background: var(--alpha-grad-primary);
}

/* Icon circle */
.alpha-contact-details .col-lg-4>div>div:nth-child(2)>div:first-child {
    background: var(--alpha-green-bg);
}

.alpha-contact-details .col-lg-4>div>div:nth-child(2)>div:first-child i {
    color: var(--alpha-green);
}

/* Card title */
.alpha-contact-details .col-lg-4 h3 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-green);
}

/* Info row text */
.alpha-contact-details .col-lg-4 a,
.alpha-contact-details .col-lg-4 span {
    font-family: var(--alpha-font-body);
}

.alpha-contact-details .col-lg-4 a:hover {
    color: var(--alpha-green) !important;
}

/* Full-width static map strip ─── key fix ─── */
.alpha-contact-details .alpha-static-map-strip {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: var(--alpha-surface);
}

.alpha-contact-details .alpha-static-map-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Regulatory disclaimer */
.alpha-contact-details .col-lg-9 {
    font-family: var(--alpha-font-body);
}


/* ── 5c. HQ ON MAP ── */

.alpha-hq-map .alpha-section {
    padding: 4rem 0;
}

/* Map container card */
.alpha-hq-map .alpha-map-container {
    background: var(--alpha-white);
    border-radius: 12px;
    box-shadow: var(--alpha-shadow-md);
    overflow: hidden;
}

/* Static map image inside */
.alpha-hq-map .alpha-map-container .alpha-static-map-wrap {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.alpha-hq-map .alpha-map-container .alpha-static-map-wrap img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

/* Location info sidebar card */
.alpha-hq-map .alpha-location-info {
    background: var(--alpha-white);
    border-radius: 12px;
    box-shadow: var(--alpha-shadow-md);
    padding: 2.2rem;
    height: 100%;
}

.alpha-hq-map .alpha-location-info h3 {
    font-family: var(--alpha-font-head);
    color: var(--alpha-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
}

.alpha-hq-map .alpha-location-info h4 {
    font-family: var(--alpha-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--alpha-base);
    margin: 0 0 .5rem;
}

.alpha-hq-map .alpha-location-info p {
    font-family: var(--alpha-font-body);
    font-size: .9rem;
    color: var(--alpha-grey);
    line-height: 1.7;
    margin: 0 0 .8rem;
}

.alpha-hq-map .alpha-location-info a {
    color: var(--alpha-green);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.alpha-hq-map .alpha-location-info a:hover {
    color: var(--alpha-green-mid);
}

.alpha-hq-map .alpha-location-info i {
    color: var(--alpha-green);
    margin-right: .4rem;
}

/* Directions / Parking / Transport sub-sections */
.alpha-hq-map .alpha-location-info div[style*="border-top"] {
    border-top-color: var(--alpha-green-light) !important;
}


/* ============================================================
   6. SHARED UTILITIES
   ============================================================ */

/* Ensure Bootstrap icons load correctly across all templates */
.alpha-career-card i.bi,
.alpha-contact-details i.bi,
.alpha-hq-map i.bi,
.alpha-products-page i.bi,
.alpha-services i.bi {
    display: inline-block;
    vertical-align: middle;
}

/* Responsive: cards stack on mobile */
@media (max-width: 768px) {
    .alpha-products-page .alpha-product-card {
        padding: 1.4rem;
    }

    .alpha-services .alpha-process-step {
        padding: 1.3rem 1.2rem;
    }

    .alpha-hq-map .alpha-map-container .alpha-static-map-wrap img {
        min-height: 280px;
    }

    .alpha-hq-map .alpha-location-info {
        padding: 1.5rem;
    }
}

/* Uniform card/image/button shape: 40px on two edges, 0 on the other two (no box-shadow, no borders) */
.alpha-card-shape,
.alpha-card-shape img,
.alpha-btn-shape {
    border-radius: 40px 0 40px 0;
}

/* Legacy diagonal corner shape for CTA buttons/links */
.btn-section-cta,
.alpha-home-cta-button,
.solution-link {
    border-radius: 40px 0 40px 0;
}

/* Doorway / arch style for key cards & images on Home and About pages */
.alpha-features-section .feature-card,
.alpha-solutions-section .solution-card,
.alpha-homepage-exact .about-image-wrapper,
.alpha-homepage-exact .about-image,
.alpha-homepage-exact .solution-image img,
.alpha-blog-section .alpha-blog-card,
.alpha-blog-section .alpha-blog-card-img,
.alpha-about .value-card,
.alpha-about .alpha-minimalist {
    border-radius: 999px 999px 0 0;
    overflow: hidden;
}

/* Fade scroll: sections reveal on scroll
   IMPORTANT: Never hide content if JS/AOS fails.
   Sections are fully visible by default; JS can still add subtle transitions. */
.alpha-fade-section {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.alpha-fade-section.alpha-fade-visible {
    opacity: 1;
    transform: none;
}

/* Ensure any element using AOS attributes is visible
   even if AOS JavaScript or CSS is missing or disabled. */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Alpha Products Page */
.alpha-products-page .alpha-philosophy-title {
    color: var(--kpy-primary);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.alpha-products-page .alpha-section-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.alpha-products-page .alpha-audience-block {
    padding: 2.5rem;
    height: 100%;
}

.alpha-products-page .alpha-audience-icon {
    width: 60px;
    height: 60px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.alpha-products-page .alpha-audience-icon .bi {
    font-size: 1.75rem;
    color: #fff;
}

.alpha-products-page .alpha-offer-box {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 40px 0 40px 0;
}

.alpha-products-page .alpha-offer-box h4 {
    color: var(--kpy-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.alpha-products-page .process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.alpha-products-page .process-item .process-num-wrap {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.alpha-products-page .process-item .process-num-inner {
    width: 50px;
    height: 50px;
    background: var(--kpy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.alpha-products-page .fund-card {
    background: #fff;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 40px 0 40px 0;
}

.alpha-products-page .fund-card .fund-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--kpy-primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 40px 0 40px 0;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.alpha-products-page .risk-disclosures {
    padding: 5rem 0 5.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.alpha-products-page .alpha-risk-cta .alpha-risk-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 92, 92, 0.88), rgba(3, 92, 92, 0.78));
}

.alpha-products-page .risk-disclosures .container {
    position: relative;
    z-index: 1;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-card {
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem;
    height: 100%;
    border-radius: 40px 0 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.alpha-products-page .alpha-risk-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.alpha-products-page .alpha-risk-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px 0 40px 0;
    background: var(--kpy-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.alpha-products-page .alpha-risk-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.alpha-products-page .alpha-disclosure-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--kpy-primary);
    margin: 0 0 1rem;
}

.alpha-products-page .alpha-disclosure-title i {
    color: var(--kpy-primary);
}

.alpha-products-page .alpha-disclosure-highlight {
    background: var(--kpy-bg-secondary);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.alpha-products-page .alpha-disclosure-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--kpy-dark);
}

.alpha-products-page .alpha-disclosure-body {
    font-size: 0.95rem;
    color: var(--kpy-grey);
    margin: 0;
    line-height: 1.6;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 1rem;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list::-webkit-scrollbar {
    width: 6px;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--kpy-grey);
}

.alpha-products-page .risk-disclosures .alpha-disclosure-list li {
    margin-bottom: 0.75rem;
}

.alpha-products-page .alpha-legal-strip {
    margin-top: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 40px 0 40px 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}

.alpha-products-page .alpha-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.alpha-products-page .alpha-legal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.alpha-products-page .alpha-legal-link i {
    color: #fff;
}

.alpha-products-page .alpha-legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

.alpha-products-page .alpha-legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.alpha-products-page .alpha-legal-updated i {
    color: #fff;
}

@media (max-width: 992px) {
    .alpha-products-page .process-item {
        flex-direction: column;
    }

    .alpha-products-page .process-item .process-num-wrap {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .alpha-products-page .col-lg-6[data-aos="fade-left"] {
        order: -1;
        min-height: 400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alpha-products-page .fund-card {
        transition: none;
        transform: none;
    }
}

/* Alpha Services Page */
.alpha-services .service-area-card {
    border-radius: 40px 0 40px 0;
    transition: all 0.3s ease;
}

.alpha-services .service-area-card:hover h3 {
    color: var(--kpy-primary);
}

.alpha-services .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: var(--kpy-primary);
    opacity: 0.2;
}

@media (max-width: 992px) {
    .alpha-services .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alpha-services .service-area-card {
        transition: none;
    }
}

/* Alpha Careers Page – section headers, no borders */
.alpha-careers-page .alpha-careers-content {
    background: #fff;
}

.alpha-careers-page .alpha-section-title {
    color: var(--kpy-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.alpha-careers-page .alpha-section-lead {
    color: var(--kpy-grey);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-careers-page .alpha-careers-grid-wrapper {
    margin: 0 auto;
}

/* ===== Category archive (News, Blogs, Projects, Programs) ===== */
.category-archive-page.alpha-content-category .category-content-section {
    padding: 60px 0;
    background: #fff;
}

.alpha-category-cards-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.alpha-category-card {
    display: block;
    position: relative;
    padding: 2rem 1.5rem;
    min-height: 180px;
    overflow: hidden;
    background: var(--kpy-primary, #035c5c);
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.alpha-category-card:hover {
    color: #fff;
    transform: translateY(-4px);
}

.alpha-category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.alpha-category-card-label,
.alpha-category-card-desc {
    position: relative;
    z-index: 1;
}

.alpha-category-card-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alpha-category-card-desc {
    font-size: 0.95rem;
    opacity: 0.95;
}

.alpha-category-posts-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.alpha-category-post-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.alpha-category-post-card:last-of-type {
    border-bottom: 0;
}

.alpha-category-post-thumb {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e9ecef;
}

.alpha-category-post-placeholder,
.news-card-placeholder,
.gallery-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #adb5bd;
    font-size: 2.5rem;
}

.alpha-category-post-body .alpha-category-post-meta {
    font-size: 0.8rem;
    color: var(--kpy-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alpha-category-post-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.3;
    color: var(--kpy-base, #1a1a1a);
}

.alpha-category-post-excerpt {
    color: var(--kpy-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.alpha-category-post-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--kpy-grey);
    margin-bottom: 0.5rem;
}

.alpha-category-post-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.alpha-category-post-more {
    font-weight: 600;
    color: var(--kpy-primary);
    font-size: 0.9rem;
}

.alpha-category-pagination {
    margin-top: 3rem;
    text-align: center;
}

.alpha-category-pagination .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.alpha-category-pagination .page-numbers li {
    list-style: none;
}

.alpha-category-pagination .page-numbers a,
.alpha-category-pagination .page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    min-width: 44px;
    text-align: center;
    background: #f1f3f5;
    color: var(--kpy-base);
    text-decoration: none;
    border-radius: 40px 0 40px 0;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.alpha-category-pagination .page-numbers a:hover,
.alpha-category-pagination .page-numbers .current {
    background: var(--kpy-primary);
    color: #fff;
}

.alpha-category-sidebar {
    position: sticky;
    top: 6rem;
}

.alpha-sidebar-widget {
    margin-bottom: 2rem;
}

.alpha-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kpy-base);
    margin-bottom: 1rem;
}

.alpha-sidebar-search {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alpha-sidebar-search .form-control {
    padding: 0.6rem 1rem;
}

.alpha-sidebar-search .btn {
    width: 100%;
}

.alpha-sidebar-popular li,
.alpha-sidebar-categories li {
    margin-bottom: 0.6rem;
}

.alpha-sidebar-popular a,
.alpha-sidebar-categories a {
    color: var(--kpy-grey);
    text-decoration: none;
    font-size: 0.95rem;
}

.alpha-sidebar-popular a:hover,
.alpha-sidebar-categories a:hover {
    color: var(--kpy-primary);
}

.alpha-sidebar-categories a span {
    margin-left: 0.25rem;
    color: var(--kpy-grey);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .alpha-category-post-thumb {
        max-width: 100%;
    }

    .alpha-category-sidebar {
        position: static;
    }
}

/* Wide layout: content sits freely, not squashed in a narrow container */
.alpha-layout-wide .alpha-wrap,
.alpha-layout-wide .category-content-section .container {
    max-width: none;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.alpha-wrap.alpha-wrap--wide {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 1400px) {
    .alpha-wrap.alpha-wrap--wide {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Magazine/shortcode layout: wider container so content isn't squashed */
.magazine-layout .container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.magazine-layout.magazine-layout--fluid .container {
    max-width: none;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.mag-pagination {
    margin-top: 2.5rem;
    text-align: center;
}

.mag-pagination .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.mag-pagination .page-numbers a,
.mag-pagination .page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    min-width: 44px;
    text-align: center;
    background: #f1f3f5;
    color: var(--kpy-base);
    text-decoration: none;
    border-radius: 40px 0 40px 0;
    font-weight: 600;
}

