/* ==========================================================================
   KEYPEKEE LAND LIMITED - EXACT BRANDED PROFILE STRUCTURAL LAYOUT
   ========================================================================== */

:root {
    --brand-primary: #02019A;
    --brand-secondary: #fd7e14;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(2, 1, 154, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
body { background: #ffffff; color: var(--text-dark); line-height: 1.65; padding-top: 90px; }
.container { width: 100%; max-width: 1230px; margin: 0 auto; padding: 0 25px; }

/* Fixed Navbar */
.kl-main-nav { position: fixed; top: 0; left: 0; right: 0; height: 90px; background: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.02); z-index: 1000; display: flex; align-items: center; border-bottom: 1px solid var(--border-color); }
.kl-nav-container { width: 100%; max-width: 1230px; margin: 0 auto; padding: 0 25px; display: flex; justify-content: space-between; align-items: center; }
.kl-logo img { height: 55px; object-fit: contain; display: block; }
.kl-nav-item a { color: var(--brand-primary); text-decoration: none; font-weight: 700; font-size: 14px; text-transform: uppercase; transition: all 0.2s; }
.kl-nav-item a:hover { color: var(--brand-secondary); }

/* Main Split Page Column System */
.profile-layout-grid { display: grid; grid-template-columns: 2.1fr 1fr; gap: 40px; margin-top: 30px; margin-bottom: 80px; align-items: start; }

/* Structural Content Card Blocks */
.profile-group-card { background: #ffffff; border: 1px solid var(--border-color); border-radius: 8px; padding: 30px; margin-bottom: 25px; box-shadow: var(--shadow-sm); }
.group-heading { font-size: 18px; color: var(--brand-primary); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; display: flex; align-items: center; gap: 10px; }
.group-heading i { color: var(--brand-secondary); font-size: 20px; }

/* Project Head Media Layout */
.media-matrix-showcase { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 15px; }
.master-image-frame { height: 460px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border-color); background: #f1f5f9; }
.master-image-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.15s ease-in-out; }
.cluster-images-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cluster-thumb { height: 90px; border-radius: 6px; overflow: hidden; border: 2px solid var(--border-color); cursor: pointer; transition: all 0.2s; }
.cluster-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cluster-thumb:hover, .cluster-thumb.active-thumb { border-color: var(--brand-primary); }

/* Data Tables & Lists */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 12px 15px; border-bottom: 1px solid #f1f5f9; font-size: 15px; }
.spec-table td:first-child { font-weight: 700; color: var(--text-muted); width: 40%; }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; }
.advantage-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; }

/* Sticky Widget Side Panel */
.sticky-side-panel { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 25px; }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: #25d366; color: #fff; padding: 15px; border-radius: 6px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 14px; box-shadow: 0 4px 12px rgba(37,211,102,0.2); transition: all 0.2s; }
.btn-whatsapp:hover { background: #1ebd54; transform: translateY(-2px); }
.btn-call { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--brand-primary); color: #fff; padding: 15px; border-radius: 6px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 14px; box-shadow: 0 4px 12px rgba(2,1,154,0.15); transition: all 0.2s; }
.btn-call:hover { background: #010066; transform: translateY(-2px); }

/* Calculator UI Layout elements */
.calc-input-group { margin-bottom: 15px; }
.calc-input-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.calc-control { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 15px; font-weight: 600; outline: none; }
.calc-control:focus { border-color: var(--brand-primary); }
.calc-result-box { background: var(--bg-light); border-radius: 6px; padding: 15px; margin-top: 15px; border: 1px dashed var(--border-color); text-align: center; }

/* Responsive adjustments */
@media (max-width: 992px) {
    body { padding-top: 80px; } .kl-main-nav { height: 80px; }
    .profile-layout-grid { grid-template-columns: 1fr; gap: 25px; }
    .master-image-frame { height: 320px; } .sticky-side-panel { position: static; }
}