﻿/* =========================================================
   MONÈRA CONSULTING — GLOBAL THEME SYSTEM
   Premium GCC Healthcare Consulting UI
========================================================= */

/* =========================================================
   GOOGLE FONTS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    /* BRAND COLORS */
    --primary-navy: #022F38;
    --dark-navy: #011C22;
    --deep-teal: #063844;
    --gold-accent: #CDA77B;
    --warm-white: #F8F7F4;
    --text-dark: #112228;
    --muted-text: #68757A;
    /* SHARED SURFACE TOKENS */
    --border-light: #E8DFD3;   /* thin rule between sections / card outlines */
    --bg-icon: #FAF9F7;        /* subtle fill inside outlined icon circles   */
    /* STATUS COLORS */
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    /* TYPOGRAPHY */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Inter', sans-serif;
    /* BORDER RADIUS */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    /* SHADOWS */
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-card: 0 15px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 0 25px rgba(205,167,123,0.18);
    /* TRANSITIONS */
    --transition: all 0.3s ease;
}

/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
}

.heading-xl {
    font-size: 72px;
    letter-spacing: -2px;
}

.heading-lg {
    font-size: 54px;
}

.heading-md {
    font-size: 38px;
}

.heading-sm {
    font-size: 28px;
}

.text-gold {
    color: var(--gold-accent);
}

.text-muted-custom {
    color: var(--muted-text);
}

.text-light-custom {
    color: rgba(255,255,255,0.82);
}

p {
    margin-bottom: 1rem;
}

/* =========================================================
   CONTAINERS
========================================================= */

.container-custom {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* =========================================================
   SECTIONS
========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: linear-gradient( 135deg, var(--dark-navy), var(--deep-teal) );
    color: white;
}

.section-light {
    background: var(--warm-white);
}

.section-gradient {
    background: radial-gradient( circle at top left, rgba(205,167,123,0.12), transparent 40% ), linear-gradient( 135deg, var(--dark-navy), var(--deep-teal) );
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar-premium {
    padding: 22px 0;
    background: rgba(1,28,34,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-brand img {
    height: 54px;
}

.nav-link {
    color: white !important;
    font-size: 15px;
    font-weight: 500;
    margin-left: 14px;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--gold-accent) !important;
    }

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold-accent);
    color: white;
    box-shadow: var(--shadow-gold);
}

    .btn-gold:hover {
        background: #b88f63;
        transform: translateY(-2px);
    }

.btn-outline-gold {
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    background: transparent;
}

    .btn-outline-gold:hover {
        background: var(--gold-accent);
        color: white;
    }

.btn-dark-custom {
    background: var(--dark-navy);
    color: white;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

    .hero-image img {
        width: 100%;
        max-height: 820px;
        object-fit: contain;
    }

/* =========================================================
   GOLD CURVE DECORATION
========================================================= */

.gold-curve {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    border: 3px solid rgba(205,167,123,0.5);
    border-radius: 50%;
}

/* =========================================================
   CARDS
========================================================= */

.card-premium {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(205,167,123,0.12);
    transition: var(--transition);
}

    .card-premium:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }

.card-dark {
    background: linear-gradient( 135deg, var(--dark-navy), var(--deep-teal) );
    color: white;
}

.card-light {
    background: var(--warm-white);
}

/* =========================================================
   FEATURE ITEMS
========================================================= */

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 34px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient( 135deg, var(--dark-navy), var(--deep-teal) );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 28px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 10px;
}

/* =========================================================
   CORE VALUES
========================================================= */

.value-item {
    text-align: center;
    padding: 24px;
}

.value-icon {
    font-size: 42px;
    color: var(--gold-accent);
    margin-bottom: 14px;
}

/* =========================================================
   FORMS
========================================================= */

.form-control,
.form-select {
    border-radius: 14px;
    min-height: 56px;
    border: 1px solid rgba(0,0,0,0.08);
    background: white;
    padding: 14px 18px;
    font-size: 15px;
    transition: var(--transition);
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--gold-accent);
        box-shadow: 0 0 0 4px rgba(205,167,123,0.15);
    }

textarea.form-control {
    min-height: 160px;
}

/* =========================================================
   MODALS
========================================================= */

.modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.modal-body {
    padding: 32px;
}

.modal-title {
    font-size: 32px;
}

/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
    width: 280px;
    min-height: 100vh;
    background: linear-gradient( 180deg, var(--dark-navy), var(--deep-teal) );
    padding: 32px 24px;
    position: fixed;
    left: 0;
    top: 0;
}

.sidebar-logo img {
    height: 58px;
}

.sidebar-nav {
    margin-top: 40px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

    .sidebar-link:hover,
    .sidebar-link.active {
        background: var(--gold-accent);
        color: white;
    }

/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-content {
    margin-left: 280px;
    padding: 40px;
}

.stat-card {
    background: white;
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

/* =========================================================
   TABLES
========================================================= */

.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

    .table-premium tr {
        background: white;
        box-shadow: var(--shadow-soft);
    }

    .table-premium td {
        padding: 18px;
    }

/* =========================================================
   CALENDAR
========================================================= */

.calendar-wrapper {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.calendar-day {
    aspect-ratio: 1/1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .calendar-day:hover {
        background: rgba(205,167,123,0.12);
    }

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: linear-gradient( 135deg, var(--dark-navy), var(--deep-teal) );
    color: white;
    padding: 60px 0 30px;
}

    .footer a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

        .footer a:hover {
            color: var(--gold-accent);
        }

/* =========================================================
   UTILITIES
========================================================= */

.radius-xl {
    border-radius: var(--radius-xl);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.border-gold {
    border: 1px solid rgba(205,167,123,0.25);
}

.bg-gold {
    background: var(--gold-accent);
}

.bg-dark-custom {
    background: var(--dark-navy);
}

.text-small {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .heading-xl {
        font-size: 56px;
    }

    .heading-lg {
        font-size: 42px;
    }
}

@media(max-width:992px) {

    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .dashboard-content {
        margin-left: 0;
    }

    .sidebar {
        transform: translateX(-100%);
    }
}

@media(max-width:768px) {

    .heading-xl {
        font-size: 44px;
    }

    .heading-lg {
        font-size: 34px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .card-premium {
        padding: 24px;
    }

    .feature-item {
        flex-direction: column;
    }
}

@media(max-width:576px) {

    .heading-xl {
        font-size: 38px;
    }

    .container-custom {
        padding-left: 18px;
        padding-right: 18px;
    }
}
