/* ============================================================
   UNIVERSAL SUCCESS PROJECT — Shared Stylesheet
   Used by: universal_project.html, universal_project_kit.html,
            universal_success_training.html, consultancy_services.html
   ============================================================ */

:root {
    --primary: #1B4332;
    --primary-mid: #2D6A4F;
    --primary-light: #40916C;
    --accent: #D4A017;
    --accent-light: #F4C842;
    --cream: #FDF6E3;
    --cream-dark: #F2E8C9;
    --blue-soft: #E8F4FD;
    --blue-mid: #B8D9F0;
    --blue-deep: #2C6E9E;
    --text-dark: #1A1A2E;
    --text-body: #3D4A3E;
    --text-muted: #7A8A7B;
    --white: #FFFFFF;
    --sidebar-bg: #0D2B1D;
    --font-display: 'Lato', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 8px 32px rgba(27,67,50,0.12);
    --shadow-card: 0 4px 20px rgba(27,67,50,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-body); overflow-x: hidden; line-height: 1.7; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }

/* ---- SIDEBAR ---- */
.sidebar-overlay { position: fixed; inset: 0; background: rgba(13,43,29,0.55); backdrop-filter: blur(4px); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.sidebar-overlay.active { opacity: 1; pointer-events: all; }
.sidebar-panel { position: fixed; top: 0; right: -380px; width: 360px; height: 100vh; background: var(--sidebar-bg); z-index: 1200; transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow-y: auto; }
.sidebar-panel.open { right: 0; }
.sidebar-header { background: var(--primary); padding: 28px 32px 20px; border-bottom: 1px solid rgba(212,160,23,0.3); display: flex; align-items: center; justify-content: space-between; }
.sidebar-header img { height: 42px; }
.sidebar-close { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); }
.sidebar-close:hover { background: var(--accent); }
.sidebar-label { padding: 20px 32px 10px; font-family: var(--font-elegant); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.sidebar-nav-item { display: flex; align-items: center; gap: 16px; padding: 18px 32px; color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--transition); position: relative; overflow: hidden; }
.sidebar-nav-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transition: transform 0.3s ease; }
.sidebar-nav-item:hover { color: var(--accent-light); background: rgba(255,255,255,0.05); padding-left: 40px; }
.sidebar-nav-item:hover::before { transform: scaleY(1); }
.sidebar-nav-item .icon { width: 42px; height: 42px; background: rgba(212,160,23,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--accent); flex-shrink: 0; }
.sidebar-desc { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }
.sidebar-social { padding: 24px 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.sidebar-social p { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.sidebar-social-links { display: flex; gap: 10px; }
.sidebar-social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; }
.sidebar-social-links a:hover { background: var(--accent); color: var(--white); }

/* ---- HEADER ---- */
.header-top-bar { background: var(--primary); padding: 9px 0; font-size: 13px; }
.header-top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-social a { color: rgba(255,255,255,0.75); margin-right: 12px; font-size: 13px; }
.top-social a:hover { color: var(--accent-light); }
.top-social span { color: rgba(255,255,255,0.5); font-size: 12px; margin-right: 8px; }
.top-contact-links a { color: rgba(255,255,255,0.75); margin-left: 20px; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.top-contact-links a:hover { color: var(--accent-light); }
.top-contact-links i { color: var(--accent); }
.main-header { background: var(--white); box-shadow: 0 2px 20px rgba(27,67,50,0.08); position: sticky; top: 0; z-index: 999; }
.main-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.nav-logo img { height: 52px; }
.main-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.nav-link-item { display: inline-flex; align-items: center; color: var(--text-dark); font-size: 14.5px; font-weight: 500; padding: 8px 14px; border-radius: 8px; position: relative; transition: var(--transition); text-decoration: none; }
.nav-link-item:hover, .nav-link-item.active { color: var(--primary); background: rgba(27,67,50,0.07); }
.nav-link-item::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0); width: 20px; height: 2px; background: var(--accent); border-radius: 2px; transition: transform 0.3s ease; }
.nav-link-item:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 200px; background: var(--white); border-radius: 12px; box-shadow: 0 12px 40px rgba(27,67,50,0.15); border: 1px solid rgba(27,67,50,0.08); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.3s ease; z-index: 1000; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 16px; color: var(--text-body); font-size: 14px; border-radius: 8px; transition: var(--transition); }
.nav-dropdown-menu a:hover { background: rgba(27,67,50,0.07); color: var(--primary); padding-left: 22px; }
.nav-dropdown-toggle.nav-link-item::after { content: '\f107' !important; font-family: 'Font Awesome 6 Pro' !important; font-weight: 900 !important; position: static !important; transform: none !important; width: auto !important; height: auto !important; background: none !important; border-radius: 0 !important; margin-left: 5px; font-size: 11px; bottom: auto !important; left: auto !important; transition: none !important; }
.nav-dropdown-toggle.nav-link-item:hover::after { transform: none !important; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-sidebar-toggle { display: flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); border: none; padding: 10px 18px; border-radius: 10px; font-size: 13.5px; font-weight: 500; font-family: var(--font-body); cursor: pointer; transition: var(--transition); }
.btn-sidebar-toggle:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-contact { display: flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); border: none; padding: 10px 20px; border-radius: 10px; font-size: 13.5px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-contact:hover { background: #b8860b; color: var(--white); transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: 1.5px solid rgba(27,67,50,0.2); color: var(--primary); width: 40px; height: 40px; border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; font-size: 18px; }
.mobile-nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 30px rgba(27,67,50,0.12); z-index: 998; padding: 16px 0; }
.mobile-nav-menu.open { display: block; }
.mobile-nav-menu a { display: block; padding: 12px 24px; color: var(--text-dark); font-size: 15px; border-bottom: 1px solid rgba(27,67,50,0.06); }

/* ---- PAGE HERO BANNER ---- */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #0d2b1d 100%); position: relative; overflow: hidden; padding: 80px 0 70px; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: background-size: cover; background-position: center; opacity: 0.07; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0;  background: linear-gradient(to bottom, transparent, var(--cream)); }
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; justify-content: flex-end; }
.page-breadcrumb a { color: rgba(255,255,255,0.6); font-size: 13px; }
.page-breadcrumb a:hover { color: var(--accent-light); }
.page-breadcrumb span { color: rgba(255,255,255,0.35); font-size: 11px; }
.page-breadcrumb .current { color: var(--accent-light); font-size: 13px; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,160,23,0.18); border: 1px solid rgba(212,160,23,0.4); color: var(--accent-light); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; padding: 7px 18px; border-radius: 30px; margin-bottom: 18px; font-weight: 600; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 58px); color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 span { color: var(--accent-light); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 560px; line-height: 1.75; margin: 0 auto; }

/* ---- SECTION UTILS ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-tag { font-family: var(--font-elegant); font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; font-weight: 600; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); color: var(--text-dark); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.section-divider { width: 52px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 3px; margin: 14px 0 28px; }
.section-divider.center { margin: 14px auto 28px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: var(--white); padding: 13px 28px; border-radius: 50px; font-size: 14.5px; font-weight: 600; transition: var(--transition); }
.btn-primary:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.25); }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--white); padding: 13px 28px; border-radius: 50px; font-size: 14.5px; font-weight: 600; transition: var(--transition); }
.btn-gold:hover { background: #b8860b; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); padding: 12px 26px; border-radius: 50px; font-size: 14.5px; font-weight: 500; transition: var(--transition); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* ---- GURU IMAGE (index-style) ---- */
.guru-section { background: var(--cream); position: relative; overflow: hidden; padding: 0; }
.guru-left-bg { position: absolute; top: 0; left: 0; width: 55%; height: 100%; background: var(--cream); z-index: 0; }
.guru-right-bg { position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: var(--cream); z-index: 0; }
.guru-inner { position: relative; z-index: 2; display: flex; align-items: stretch; min-height: 680px; }
.guru-content-col { width: 55%; padding: 80px 60px 80px 50px; display: flex; flex-direction: column; justify-content: center; }
.guru-image-col { width: 45%; padding: 50px 40px 50px 20px; position: relative; display: flex; align-items: center; justify-content: center; }
.guru-img-frame { position: relative; width: 100%; max-width: 360px; }
.guru-img-frame::before { content: ''; position: absolute; top: 16px; right: -16px; bottom: -16px; left: 16px; border: 2px solid rgba(27,67,50,0.15); border-radius: 22px; z-index: 0; }
.guru-img-frame img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 16px 48px rgba(27,67,50,0.18); object-fit: contain; object-position: bottom center; display: block; position: relative; z-index: 1; }
.guru-name-badge { position: absolute; bottom: -10px; left: -10px; z-index: 3; background: var(--primary); padding: 13px 18px; border-radius: 14px; box-shadow: 0 10px 32px rgba(27,67,50,0.3); text-align: center; }
.guru-name-badge strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--accent-light); line-height: 1.2; }
.guru-name-badge span { font-size: 11px; color: rgba(255,255,255,0.85); display: block; margin-top: 4px; line-height: 1.4; }
.guru-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(27,67,50,0.08); border: 1px solid rgba(27,67,50,0.2); color: var(--primary); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; padding: 7px 16px; border-radius: 30px; margin-bottom: 18px; font-weight: 600; width: fit-content; }
.guru-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); color: var(--text-dark); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.guru-subtitle-line { font-family: var(--font-elegant); font-size: 20px; color: var(--primary-light); font-style: italic; margin-bottom: 20px; }
.guru-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 2px; margin-bottom: 24px; }
.guru-desc { color: var(--text-body); font-size: 15.5px; line-height: 1.88; margin-bottom: 14px; }
.guru-roles { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 28px; }
.guru-role-tag { background: rgba(27,67,50,0.08); border: 1px solid rgba(27,67,50,0.15); color: var(--primary); font-size: 12px; padding: 6px 14px; border-radius: 20px; font-weight: 500; }
.guru-quote-box { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); border-radius: 16px; padding: 28px 32px; margin-top: 28px; position: relative; overflow: hidden; }
.guru-quote-box::before { content: '\201C'; font-family: Georgia; font-size: 120px; color: rgba(255,255,255,0.07); position: absolute; top: -20px; left: 10px; line-height: 1; }
.guru-quote-box p { font-family: var(--font-elegant); font-size: 20px; color: rgba(255,255,255,0.92); font-style: italic; line-height: 1.6; position: relative; z-index: 1; }
.guru-quote-box cite { display: block; color: var(--accent-light); font-size: 13px; font-style: normal; font-weight: 600; margin-top: 10px; letter-spacing: 1px; }
@media (max-width: 991px) {
    .guru-left-bg, .guru-right-bg { width: 100%; }
    .guru-inner { flex-direction: column; min-height: auto; }
    .guru-content-col { width: 100%; padding: 50px 24px; }
    .guru-image-col { width: 100%; padding: 30px 24px 50px; }
    .guru-img-frame { max-width: 280px; margin: 0 auto; }
}

/* ---- INDUSTRIES ---- */
.industries-section { background: var(--cream); }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 32px; }
.industry-item { background: var(--white); border-radius: 14px; padding: 20px 18px; display: flex; align-items: center; gap: 14px; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); transition: var(--transition); }
.industry-item:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 32px rgba(27,67,50,0.12); }
.industry-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 17px; flex-shrink: 0; }
.industry-item span { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.35; }

/* ---- RECORDS BANNER (blue bg + ayurvedic image) ---- */
.records-banner { position: relative; overflow: hidden; padding: 70px 0; }
.records-banner::before { content: ''; position: absolute; inset: 0; background-image: url('../img/bg/ayurvedha.jpg'); background-size: cover; background-position: center; }
.records-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,110,158,0.92) 0%, rgba(22,70,120,0.88) 50%, rgba(44,110,158,0.92) 100%); }
.records-banner .container { position: relative; z-index: 2; }
.records-banner .row { border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); padding: 12px 0; }
.record-stat { text-align: center; padding: 20px; position: relative; }
.record-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,0.2); }
.record-stat strong { display: block; font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.record-stat span { font-size: 14px; color: rgba(255,255,255,0.85); display: block; line-height: 1.4; letter-spacing: 0.3px; }

/* ---- AWARDS ---- */
.awards-section { background: var(--primary); position: relative; overflow: hidden; }
.awards-section::before { content: ''; position: absolute; inset: 0; background-image: url('../img/bg/homepage.jpeg'); background-size: cover; opacity: 0.06; }
.awards-section .container { position: relative; z-index: 2; }
.awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 36px; }
.award-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px; transition: var(--transition); }
.award-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.award-icon { width: 40px; height: 40px; background: rgba(212,160,23,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 18px; flex-shrink: 0; }
.award-card p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; font-weight: 500; }

/* ---- 21 ACHIEVEMENTS — REDESIGNED ---- */
.achievements-section { background: var(--cream); position: relative; overflow: hidden; }
.achievements-section::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(180deg, rgba(27,67,50,0.03) 0%, rgba(27,67,50,0.06) 100%); pointer-events: none; }
.achieve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.achieve-card { background: var(--white); border-radius: 16px; padding: 22px 20px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid rgba(27,67,50,0.06); box-shadow: 0 2px 12px rgba(27,67,50,0.07); transition: var(--transition); position: relative; overflow: hidden; }
.achieve-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--accent), var(--primary)); }
.achieve-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,67,50,0.14); border-color: rgba(212,160,23,0.3); }
.achieve-num-badge { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.achieve-card-text { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.achieve-card-text strong { color: var(--text-dark); }
.achieve-card-text em { font-style: italic; color: var(--primary); }
.achieve-highlight { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); border-radius: 20px; padding: 32px; color: var(--white); }
.achieve-highlight .achieve-num-badge { background: rgba(212,160,23,0.25); }
.achieve-highlight .achieve-card-text { color: rgba(255,255,255,0.88); }
.achieve-highlight .achieve-card-text strong { color: var(--accent-light); }
@media (max-width: 767px) { .achieve-grid { grid-template-columns: 1fr; } }

/* ---- COACHING ---- */
.coaching-section { background: var(--cream); }
.coaching-card { background: var(--white); border-radius: 18px; padding: 32px; height: 100%; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); transition: var(--transition); position: relative; overflow: hidden; }
.coaching-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s ease; }
.coaching-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,67,50,0.14); }
.coaching-card:hover::after { transform: scaleX(1); }
.coaching-icon { width: 60px; height: 60px; background: rgba(27,67,50,0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin-bottom: 20px; }
.coaching-card h4 { font-family: var(--font-display); font-size: 18px; color: var(--text-dark); margin-bottom: 12px; }
.coaching-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }

/* ---- USP CARDS ---- */
.usp-section { background: var(--cream); }
.usp-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.usp-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(27,67,50,0.16); }
.usp-card-header { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); padding: 32px 28px 24px; position: relative; overflow: hidden; }
.usp-card-header::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.usp-card-icon { width: 60px; height: 60px; background: rgba(212,160,23,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 26px; margin-bottom: 16px; }
.usp-card-header h4 { font-family: var(--font-display); font-size: 20px; color: var(--white); line-height: 1.3; }
.usp-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.usp-card-body p { font-size: 14.5px; color: var(--text-body); line-height: 1.8; flex: 1; margin-bottom: 20px; }
.usp-card-num { position: absolute; top: 20px; right: 24px; font-family: var(--font-display); font-size: 56px; color: rgba(255,255,255,0.08); font-weight: 900; line-height: 1; }

/* ---- PURPOSE ---- */
.purpose-section { background: var(--cream-dark); }
.purpose-card { background: var(--white); border-radius: 18px; padding: 34px; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); transition: var(--transition); height: 100%; }
.purpose-card:hover { transform: translateY(-4px); }
.purpose-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; margin-bottom: 20px; }
.purpose-card h4 { font-family: var(--font-display); font-size: 19px; color: var(--text-dark); margin-bottom: 12px; }
.purpose-card p { font-size: 14.5px; color: var(--text-body); line-height: 1.8; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--primary); position: relative; overflow: hidden; padding: 80px 0; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: url('../img/bg/homepage.jpeg'); background-size: cover; opacity: 0.07; }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content .section-tag { color: var(--accent-light); }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 540px; margin: 0 auto 36px; line-height: 1.8; }
.cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FEATURE LIST (for sub-pages) ---- */
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(27,67,50,0.07); font-size: 15px; color: var(--text-body); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--primary); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.feature-check { width: 28px; height: 28px; background: rgba(27,67,50,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; font-size: 13px; }

/* ---- CONTENT CARD (sub-pages) ---- */
.content-card { background: var(--white); border-radius: 20px; padding: 36px; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); height: 100%; }
.content-card-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 26px; margin-bottom: 22px; }
.content-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--text-dark); margin-bottom: 12px; }
.content-card p { color: var(--text-body); font-size: 15px; line-height: 1.8; }

/* ---- STEP TIMELINE (for sub-pages) ---- */
.step-timeline { position: relative; }
.step-timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent), var(--primary)); opacity: 0.3; }
.step-item { display: flex; gap: 24px; margin-bottom: 36px; position: relative; }
.step-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-size: 20px; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(27,67,50,0.25); }
.step-content { padding-top: 8px; }
.step-content h4 { font-family: var(--font-display); font-size: 18px; color: var(--text-dark); margin-bottom: 8px; }
.step-content p { font-size: 14.5px; color: var(--text-body); line-height: 1.8; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); border-radius: 20px; padding: 40px; color: var(--white); position: relative; overflow: hidden; }
.highlight-box::before { content: ''; position: absolute; top: -30px; right: -30px; width: 160px; height: 160px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.highlight-box::after { content: ''; position: absolute; bottom: -20px; left: -20px; width: 100px; height: 100px; background: rgba(212,160,23,0.1); border-radius: 50%; }
.highlight-box h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.highlight-box p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.85; position: relative; z-index: 1; }

/* ---- STATS ROW (sub-pages) ---- */
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin: 28px 0; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 36px; color: var(--primary); font-weight: 700; line-height: 1; }
.stat-item span { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ---- FOOTER ---- */
.footer-main { background: var(--sidebar-bg); color: rgba(255,255,255,0.75); padding: 80px 0 40px; }
.footer-logo img { height: 48px; margin-bottom: 20px; }
.footer-about-text { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.6); }
.footer-heading { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 22px; padding-bottom: 14px; position: relative; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 2px; }
.footer-heading::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,0.08); }
.footer-links a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 14px; padding: 5px 0; transition: var(--transition); }
.footer-links a i { font-size: 10px; color: var(--accent); }
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.footer-contact-icon { width: 38px; height: 38px; background: rgba(212,160,23,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.copyright-text { font-size: 13px; color: rgba(255,255,255,0.5); }
.copyright-text a { color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

/* ---- SCROLL TOP ---- */
#scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--primary); color: var(--white); border-radius: 12px; display: none; align-items: center; justify-content: center; font-size: 16px; z-index: 999; box-shadow: 0 6px 20px rgba(27,67,50,0.3); transition: var(--transition); }
#scroll-top:hover { background: var(--accent); color: var(--white); }
#scroll-top.visible { display: flex; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) { .main-nav { display: none; } .mobile-toggle { display: flex; } }
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .page-hero { padding: 60px 0 50px; }
    .achieve-grid { grid-template-columns: 1fr; }
    .record-stat:not(:last-child)::after { display: none; }
}

/* ============================================================
   SHARED FORM STYLES — All 3 USP sub-pages
   ============================================================ */
.intro-section { background: var(--cream); padding: 56px 0 0; }
.intro-box { background: var(--white); border-radius: 20px; padding: 40px 44px; box-shadow: var(--shadow-soft); border-left: 5px solid var(--accent); max-width: 900px; margin: 0 auto; }
.intro-text { font-size: 15.5px; color: var(--text-body); line-height: 1.9; margin-bottom: 20px; }
.intro-list { list-style: none; padding: 0; margin: 0 0 20px; }
.intro-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-body); padding: 10px 0; border-bottom: 1px solid rgba(27,67,50,0.07); }
.intro-list li:last-child { border: none; }
.intro-list li i { color: var(--primary); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.intro-tagline { font-size: 15.5px; color: var(--text-dark); font-weight: 500; line-height: 1.8; border-top: 1px solid rgba(27,67,50,0.08); padding-top: 18px; margin: 0; }

.usp-form-section { background: var(--cream); padding: 60px 0 80px; }
.usp-form-wrap { background: var(--white); border-radius: 24px; box-shadow: 0 12px 56px rgba(27,67,50,0.12); border: 1px solid rgba(27,67,50,0.08); overflow: hidden; max-width: 920px; margin: 0 auto; }
.usp-form-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%); padding: 38px 48px; position: relative; overflow: hidden; }
.usp-form-header::before { content:''; position:absolute; top:-50px; right:-50px; width:200px; height:200px; background:rgba(255,255,255,0.05); border-radius:50%; }
.usp-form-header::after  { content:''; position:absolute; bottom:-40px; left:-40px; width:140px; height:140px; background:rgba(212,160,23,0.07); border-radius:50%; }
.usp-form-header-icon { width:54px; height:54px; background:rgba(212,160,23,0.2); border-radius:14px; display:flex; align-items:center; justify-content:center; color:var(--accent-light); font-size:22px; margin-bottom:14px; position:relative; z-index:1; }
.usp-form-header h2 { font-family:var(--font-display); font-size:26px; color:var(--white); margin-bottom:6px; position:relative; z-index:1; }
.usp-form-header p { color:rgba(255,255,255,0.75); font-size:14.5px; position:relative; z-index:1; margin:0; }

.usp-form-body { padding: 40px 48px 44px; }
.form-group { margin-bottom: 22px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; display: block; letter-spacing: 0.3px; }
.form-label .req { color: #e74c3c; margin-left: 2px; }
.form-control-custom { width:100%; border:1.5px solid rgba(27,67,50,0.18); border-radius:10px; padding:13px 16px; font-size:14.5px; font-family:var(--font-body); color:var(--text-dark); background:var(--cream); transition:all 0.3s ease; outline:none; -webkit-appearance:none; appearance:none; }
.form-control-custom::placeholder { color: var(--text-muted); }
.form-control-custom:focus { border-color:var(--primary-light); background:var(--white); box-shadow:0 0 0 3px rgba(64,145,108,0.13); }
.form-control-custom.is-error { border-color:#e74c3c; background:#fff8f8; box-shadow:0 0 0 3px rgba(231,76,60,0.10); }
.form-control-custom.is-valid { border-color:var(--primary-light); background:var(--white); }
select.form-control-custom { cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B4332' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:42px; }
textarea.form-control-custom { resize:vertical; min-height:120px; }
.field-error { font-size:12px; color:#e74c3c; margin-top:5px; display:none; align-items:center; gap:5px; font-weight:500; }
.field-error.show { display:flex; }
.field-error i { font-size:11px; }

.fee-box { background:linear-gradient(135deg, rgba(27,67,50,0.06), rgba(27,67,50,0.02)); border:1.5px solid rgba(27,67,50,0.14); border-radius:14px; padding:20px 26px; margin:8px 0 28px; display:flex; align-items:center; gap:16px; }
.fee-icon { width:44px; height:44px; background:linear-gradient(135deg,var(--accent),#b8860b); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:18px; flex-shrink:0; }
.fee-label { font-size:13px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; font-weight:600; margin-bottom:2px; }
.fee-amount { font-family:var(--font-display); font-size:24px; color:var(--primary); font-weight:700; line-height:1; }

.btn-submit { background:linear-gradient(135deg,var(--primary),var(--primary-mid)); color:var(--white); border:none; padding:15px 44px; border-radius:50px; font-size:15px; font-weight:600; font-family:var(--font-body); cursor:pointer; transition:var(--transition); display:inline-flex; align-items:center; gap:10px; box-shadow:0 6px 24px rgba(27,67,50,0.25); }
.btn-submit:hover { background:linear-gradient(135deg,var(--primary-light),var(--primary)); transform:translateY(-2px); box-shadow:0 12px 36px rgba(27,67,50,0.3); }
.btn-submit:disabled { opacity:0.65; cursor:not-allowed; transform:none; }
.btn-submit .spinner { display:none; }
.btn-submit.loading .spinner { display:inline-block; }
.btn-submit.loading .btn-text { display:none; }

.contact-note { text-align:center; margin-top:32px; padding-top:24px; border-top:1px solid rgba(27,67,50,0.07); font-size:15px; color:var(--text-body); }
.contact-note a { color:var(--primary); font-weight:700; border-bottom:1.5px solid var(--accent); padding-bottom:1px; transition:var(--transition); }
.contact-note a:hover { color:var(--accent); }

.success-state { display:none; text-align:center; padding:48px 32px; }
.success-state.show { display:block; }
.success-icon-wrap { width:80px; height:80px; background:linear-gradient(135deg,#2e7d32,#43a047); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; box-shadow:0 8px 24px rgba(46,125,50,0.3); }
.success-icon-wrap i { font-size:36px; color:#fff; }
.success-state h3 { font-family:var(--font-display); font-size:26px; color:#1b5e20; margin-bottom:10px; }
.success-state p { color:#2e7d32; font-size:15px; max-width:440px; margin:0 auto 24px; line-height:1.8; }
.success-state .back-link { display:inline-flex; align-items:center; gap:8px; color:var(--primary); font-weight:600; border-bottom:1.5px solid var(--accent); }
