/*
Theme Name: Global Plover Consultancy
Theme URI: https://globalploverconsultancy.com
Author: Global Plover Consultancy
Author URI: https://globalploverconsultancy.com
Description: A premium custom WordPress theme for Global Plover Consultancy. Fully compatible with Elementor page builder. Features ivory and navy color palette, gold accents, hero slider, and professional IT consultancy layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: global-plover
Tags: elementor, one-column, custom-colors, custom-logo, custom-menu, featured-images, sticky-post, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ════════════════════════════════════════════════
   GLOBAL PLOVER CONSULTANCY — THEME STYLESHEET
   Color Palette:
   Navy Dark:  #071c35
   Navy:       #0d2d52
   Navy Mid:   #163c6a
   Gold:       #c9a84c
   Gold Light: #dfc06a
   Ivory:      #FFFFF0
   Ivory Warm: #f8f5e8
   Cream:      #f7f2e3
   White:      #ffffff
════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
	--gp-navy:        #0d2d52;
	--gp-navy-dark:   #071c35;
	--gp-navy-mid:    #163c6a;
	--gp-navy-soft:   #1e4d85;
	--gp-gold:        #c9a84c;
	--gp-gold-light:  #dfc06a;
	--gp-gold-pale:   #f0dfa0;
	--gp-ivory:       #FFFFF0;
	--gp-ivory-2:     #fdfde4;
	--gp-ivory-3:     #faf9d8;
	--gp-ivory-4:     #f5f3c2;
	--gp-ivory-warm:  #f8f5e8;
	--gp-ivory-deep:  #ede9cc;
	--gp-cream:       #f7f2e3;
	--gp-white:       #ffffff;
	--gp-text-navy:   #0d2d52;
	--gp-text-mid:    #2f4f78;
	--gp-text-muted:  #5a7398;
	--gp-border:      rgba(13,45,82,0.1);
	--gp-gold-border: rgba(201,168,76,0.3);
	--gp-font-head:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--gp-font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--gp-radius:      10px;
	--gp-radius-lg:   16px;
	--gp-shadow:      0 8px 30px rgba(13,45,82,0.1);
	--gp-shadow-lg:   0 16px 50px rgba(13,45,82,0.15);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
	font-family: var(--gp-font-body);
	color: var(--gp-text-navy);
	background-color: var(--gp-ivory);
	line-height: 1.7;
	font-size: 15px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Elementor full width override */
body.elementor-page .site-header,
body.elementor-page .site-footer {
	display: block !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gp-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gp-gold-light); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gp-ivory); }
::-webkit-scrollbar-thumb { background: var(--gp-gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--gp-font-head);
	color: var(--gp-navy);
	line-height: 1.15;
	font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--gp-text-mid); font-size: 0.97rem; line-height: 1.85; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container,
.gp-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}
.site-content { min-height: 60vh; }

/* Elementor needs this */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1200px;
}

/* ── HEADER / NAVIGATION ── */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 9990;
	height: 72px;
	background: rgba(7, 28, 53, 0.97);
	border-bottom: 1px solid rgba(201,168,76,0.22);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: height 0.3s, background 0.3s;
	display: flex;
	align-items: center;
}
.site-header.scrolled { height: 62px; background: rgba(7,28,53,0.99); }
.header-inner {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

/* Logo */
.site-branding { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-branding:hover { text-decoration: none; }
.logo-img { height: 44px; width: auto; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
	font-family: var(--gp-font-head);
	color: var(--gp-gold);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.3px;
}
.logo-tagline {
	font-size: 0.56rem;
	color: rgba(255,255,240,0.55);
	letter-spacing: 3px;
	text-transform: uppercase;
}

/* Primary Navigation */
.main-navigation { display: flex; align-items: center; }
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-menu > li > a {
	color: rgba(255,255,240,0.82);
	font-size: 0.83rem;
	font-weight: 500;
	padding: 0.45rem 0.9rem;
	border-radius: 4px;
	transition: all 0.2s;
	letter-spacing: 0.2px;
	text-decoration: none;
	display: block;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-parent > a {
	color: var(--gp-gold);
	background: rgba(201,168,76,0.1);
}

/* Dropdown */
.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: var(--gp-navy-dark);
	border: 1px solid var(--gp-gold-border);
	border-radius: 8px;
	min-width: 240px;
	padding: 6px 0;
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
	list-style: none;
	z-index: 100;
}
.nav-menu li { position: relative; }
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu li a {
	display: block;
	padding: 0.55rem 1.25rem;
	color: rgba(255,255,240,0.78);
	font-size: 0.81rem;
	border-bottom: 1px solid rgba(201,168,76,0.08);
	transition: all 0.15s;
	text-decoration: none;
}
.nav-menu .sub-menu li:last-child a { border-bottom: none; }
.nav-menu .sub-menu li a:hover { color: var(--gp-gold); background: rgba(201,168,76,0.08); }

/* CTA button in nav */
.nav-cta-btn {
	background: var(--gp-gold) !important;
	color: var(--gp-navy-dark) !important;
	font-weight: 600 !important;
	border-radius: 5px !important;
	padding: 0.45rem 1.2rem !important;
}
.nav-cta-btn:hover {
	background: var(--gp-gold-light) !important;
	color: var(--gp-navy-dark) !important;
}

/* Hamburger Mobile */
.menu-toggle {
	display: none;
	background: none;
	border: 1.5px solid rgba(201,168,76,0.4);
	border-radius: 6px;
	padding: 6px 10px;
	cursor: pointer;
	color: var(--gp-gold);
	font-size: 1.2rem;
	line-height: 1;
}

/* ── MAIN CONTENT OFFSET ── */
.site-content { padding-top: 72px; }

/* ── BUTTONS ── */
.gp-btn,
.wp-block-button__link,
.elementor-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--gp-font-body);
	font-weight: 600;
	font-size: 0.87rem;
	letter-spacing: 0.3px;
	padding: 0.78rem 1.8rem;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.22s;
}
.gp-btn-gold {
	background: var(--gp-gold);
	color: var(--gp-navy-dark);
}
.gp-btn-gold:hover {
	background: var(--gp-gold-light);
	color: var(--gp-navy-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.gp-btn-navy {
	background: var(--gp-navy);
	color: var(--gp-ivory);
}
.gp-btn-navy:hover { background: var(--gp-navy-mid); color: var(--gp-ivory); }

.gp-btn-outline {
	background: transparent;
	color: var(--gp-ivory);
	border: 1.5px solid rgba(255,255,240,0.3);
}
.gp-btn-outline:hover {
	border-color: var(--gp-gold);
	color: var(--gp-gold);
	background: rgba(201,168,76,0.08);
}

/* ── SECTION LABELS ── */
.gp-sec-label {
	font-size: 0.72rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gp-gold);
	font-weight: 600;
	display: block;
	margin-bottom: 0.6rem;
}
.gp-divider {
	width: 60px;
	height: 2px;
	background: var(--gp-gold);
	margin: 1rem auto;
}
.gp-divider.left { margin-left: 0; }

/* ── HERO SLIDER ── */
.gp-hero-slider {
	position: relative;
	height: calc(100vh - 72px);
	min-height: 540px;
	overflow: hidden;
}
.gp-slides-track {
	display: flex;
	height: 100%;
	transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.gp-slide {
	min-width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.gp-slide-bg {
	position: absolute;
	inset: 0;
}
.gp-slide-1 .gp-slide-bg { background: linear-gradient(125deg, #071c35 0%, #0d2d52 45%, #1a4a7a 100%); }
.gp-slide-2 .gp-slide-bg { background: linear-gradient(125deg, #0a1f3a 0%, #0d3060 50%, #0f2d52 100%); }
.gp-slide-3 .gp-slide-bg { background: linear-gradient(125deg, #071825 0%, #071c35 45%, #0a2540 100%); }
.gp-slide-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 65% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.gp-slide-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,240,1) 40px, rgba(255,255,240,1) 41px),
		repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,240,1) 40px, rgba(255,255,240,1) 41px);
}
.gp-slide-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2.5rem;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	align-items: center;
}
.gp-slide-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(201,168,76,0.12);
	border: 1px solid rgba(201,168,76,0.28);
	color: var(--gp-gold);
	font-size: 0.72rem;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 0.35rem 1rem;
	border-radius: 30px;
	margin-bottom: 1.4rem;
}
.gp-slide-dot { width: 6px; height: 6px; background: var(--gp-gold); border-radius: 50%; display: inline-block; }
.gp-slide h1 {
	font-family: var(--gp-font-head);
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	color: var(--gp-ivory);
	line-height: 1.1;
	margin-bottom: 1.2rem;
	font-weight: 700;
}
.gp-slide h1 em { color: var(--gp-gold); font-style: italic; }
.gp-slide-desc {
	color: rgba(255,255,240,0.72);
	font-size: 1rem;
	line-height: 1.85;
	margin-bottom: 2rem;
	max-width: 530px;
}
.gp-slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.gp-slide-visual { display: flex; flex-direction: column; gap: 1rem; }
.gp-stat-card {
	background: rgba(255,255,240,0.06);
	border: 1px solid rgba(201,168,76,0.2);
	border-radius: 12px;
	padding: 1.3rem 1.8rem;
	backdrop-filter: blur(8px);
	animation: gpFloat 6s ease-in-out infinite;
}
.gp-stat-card:nth-child(2) { margin-left: 2rem; animation-delay: -2s; }
.gp-stat-card:nth-child(3) { margin-left: 1rem; animation-delay: -4s; }
@keyframes gpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.gp-stat-n {
	font-family: var(--gp-font-head);
	font-size: 2.4rem;
	color: var(--gp-gold);
	font-weight: 700;
	line-height: 1;
}
.gp-stat-l { font-size: 0.78rem; color: rgba(255,255,240,0.6); margin-top: 4px; }

/* Slider Controls */
.gp-slider-arrows {
	position: absolute;
	bottom: 2rem;
	right: 2.5rem;
	display: flex;
	gap: 0.75rem;
	z-index: 10;
}
.gp-sarr {
	width: 44px; height: 44px;
	background: rgba(201,168,76,0.15);
	border: 1px solid var(--gp-gold-border);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--gp-gold); font-size: 1.1rem;
	cursor: pointer; transition: all 0.2s;
}
.gp-sarr:hover { background: var(--gp-gold); color: var(--gp-navy-dark); }
.gp-slider-dots {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}
.gp-sdot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(255,255,240,0.3);
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}
.gp-sdot.active { background: var(--gp-gold); width: 24px; border-radius: 4px; }
.gp-ticker { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(201,168,76,0.2); z-index: 10; }
.gp-ticker-fill { height: 100%; background: var(--gp-gold); width: 0; transition: width linear; }

/* ── STATS BAR ── */
.gp-stats-bar {
	background: var(--gp-navy-dark);
	border-bottom: 2px solid var(--gp-gold-border);
	padding: 1.8rem 2.5rem;
}
.gp-stats-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.gp-sbar-item { text-align: center; }
.gp-sbar-num {
	font-family: var(--gp-font-head);
	font-size: 2.2rem;
	color: var(--gp-gold);
	font-weight: 700;
	line-height: 1;
}
.gp-sbar-label { font-size: 0.77rem; color: rgba(255,255,240,0.5); margin-top: 4px; letter-spacing: 0.5px; }

/* ── CARDS ── */
.gp-card {
	background: var(--gp-white);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	padding: 2rem 1.75rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.gp-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--gp-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s;
}
.gp-card:hover {
	box-shadow: var(--gp-shadow);
	transform: translateY(-4px);
	border-color: var(--gp-gold-border);
}
.gp-card:hover::before { transform: scaleX(1); }
.gp-card-icon {
	width: 54px; height: 54px;
	background: var(--gp-ivory-3);
	border: 1px solid var(--gp-gold-border);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 1.3rem;
	font-size: 1.5rem;
}
.gp-card h3 { margin-bottom: 0.6rem; }
.gp-card p { font-size: 0.86rem; margin-bottom: 0; }

/* Course Card */
.gp-course-card {
	background: var(--gp-white);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	overflow: hidden;
	transition: all 0.3s;
}
.gp-course-card:hover { box-shadow: var(--gp-shadow-lg); transform: translateY(-5px); }
.gp-course-head {
	background: var(--gp-navy);
	padding: 1.6rem 1.5rem;
	position: relative;
	overflow: hidden;
}
.gp-course-head::after {
	content: '';
	position: absolute;
	bottom: -25px; right: -25px;
	width: 90px; height: 90px;
	background: rgba(201,168,76,0.12);
	border-radius: 50%;
}
.gp-course-cat {
	font-size: 0.68rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gp-gold);
	margin-bottom: 0.5rem;
}
.gp-course-head h3 {
	font-family: var(--gp-font-head);
	color: var(--gp-ivory);
	font-size: 1.15rem;
	font-weight: 600;
	position: relative;
	z-index: 1;
}
.gp-course-body { padding: 1.5rem; }
.gp-course-body p { font-size: 0.86rem; line-height: 1.75; margin-bottom: 1rem; }
.gp-course-jobs { list-style: none; }
.gp-course-jobs li {
	font-size: 0.8rem;
	color: var(--gp-text-muted);
	padding: 3px 0;
	display: flex;
	gap: 6px;
	align-items: baseline;
}
.gp-course-jobs li::before { content: '→'; color: var(--gp-gold); font-size: 0.7rem; flex-shrink: 0; }
.gp-course-foot {
	padding: 1rem 1.5rem;
	border-top: 1px solid var(--gp-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.gp-course-level {
	font-size: 0.72rem;
	background: var(--gp-ivory-3);
	color: var(--gp-navy);
	padding: 3px 10px;
	border-radius: 20px;
	font-weight: 500;
}

/* Testimonial Card */
.gp-testi-card {
	background: rgba(255,255,240,0.05);
	border: 1px solid rgba(201,168,76,0.18);
	border-radius: var(--gp-radius-lg);
	padding: 2rem;
}
.gp-stars { color: var(--gp-gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.gp-testi-text {
	color: rgba(255,255,240,0.8);
	font-size: 0.88rem;
	line-height: 1.85;
	margin-bottom: 1.5rem;
	font-style: italic;
}
.gp-testi-author { display: flex; align-items: center; gap: 1rem; }
.gp-testi-avatar {
	width: 44px; height: 44px;
	background: var(--gp-gold);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--gp-navy-dark);
	font-weight: 700;
	font-size: 0.95rem;
	flex-shrink: 0;
}
.gp-testi-name { color: var(--gp-ivory); font-weight: 600; font-size: 0.88rem; }
.gp-testi-role { color: var(--gp-gold); font-size: 0.75rem; margin-top: 2px; }

/* ── SECTIONS ── */
.gp-section { padding: 5rem 2.5rem; }
.gp-section-ivory { background: var(--gp-ivory); }
.gp-section-ivory-warm { background: var(--gp-ivory-warm); }
.gp-section-ivory-2 { background: var(--gp-ivory-2); }
.gp-section-white { background: var(--gp-white); }
.gp-section-navy { background: var(--gp-navy); }
.gp-section-navy-dark { background: var(--gp-navy-dark); }
.gp-section-cream { background: var(--gp-cream); }

/* Section Head */
.gp-sec-head { text-align: center; margin-bottom: 3.5rem; }
.gp-sec-head .gp-sec-label { display: block; }
.gp-sec-head h2 { margin-bottom: 0.5rem; }
.gp-sec-head p { max-width: 640px; margin: 0.75rem auto 0; font-size: 0.97rem; }

/* ── GRIDS ── */
.gp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.gp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gp-grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: center; }

/* ── ABOUT BLOCK ── */
.gp-about-visual {
	background: var(--gp-navy);
	border-radius: var(--gp-radius-lg);
	padding: 3.5rem 2.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.gp-about-visual::before {
	content: '';
	position: absolute;
	top: -50px; right: -50px;
	width: 180px; height: 180px;
	background: rgba(201,168,76,0.12);
	border-radius: 50%;
}
.gp-about-visual::after {
	content: '';
	position: absolute;
	bottom: -40px; left: -30px;
	width: 120px; height: 120px;
	background: rgba(255,255,240,0.04);
	border-radius: 50%;
}
.gp-big-num {
	font-family: var(--gp-font-head);
	font-size: 5.5rem;
	color: var(--gp-gold);
	font-weight: 700;
	line-height: 1;
}
.gp-big-label { color: rgba(255,255,240,0.7); font-size: 1rem; margin-top: 0.4rem; }
.gp-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.gp-mini-stat {
	background: rgba(201,168,76,0.1);
	border-radius: 10px;
	padding: 1rem;
	text-align: center;
}
.gp-mini-n {
	font-family: var(--gp-font-head);
	font-size: 1.8rem;
	color: var(--gp-gold);
	font-weight: 700;
}
.gp-mini-l { font-size: 0.75rem; color: rgba(255,255,240,0.6); margin-top: 2px; }

/* ── PILLS ── */
.gp-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.gp-pill {
	background: var(--gp-ivory-3);
	border: 1px solid var(--gp-gold-border);
	color: var(--gp-navy);
	font-size: 0.78rem;
	font-weight: 500;
	padding: 0.35rem 0.9rem;
	border-radius: 20px;
}

/* ── SERVICE TAG ── */
.gp-svc-tag {
	display: inline-block;
	background: var(--gp-ivory-4);
	color: var(--gp-navy);
	font-size: 0.68rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	margin-top: 1rem;
	letter-spacing: 0.3px;
}

/* ── MISSION CARD ── */
.gp-mission-card {
	background: var(--gp-ivory);
	border-radius: var(--gp-radius);
	padding: 2.5rem 2rem;
	border-top: 3px solid var(--gp-gold);
}
.gp-mission-card h3 { margin-bottom: 0.75rem; }
.gp-mission-card p { font-size: 0.88rem; }

/* ── CTA BANNER ── */
.gp-cta-banner {
	background: linear-gradient(120deg, var(--gp-navy-dark) 0%, var(--gp-navy-mid) 100%);
	padding: 5rem 2.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.gp-cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.1), transparent 70%);
}
.gp-cta-banner > * { position: relative; z-index: 1; }
.gp-cta-banner h2 { color: var(--gp-ivory); margin-bottom: 1rem; }
.gp-cta-banner p { color: rgba(255,255,240,0.72); max-width: 540px; margin: 0 auto 2rem; }
.gp-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── JOB CARD ── */
.gp-job-card {
	background: var(--gp-white);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	padding: 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s;
}
.gp-job-card:hover {
	border-color: var(--gp-gold-border);
	box-shadow: var(--gp-shadow);
}
.gp-job-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.gp-job-title { font-family: var(--gp-font-head); font-size: 1.2rem; font-weight: 700; }
.gp-job-badge {
	font-size: 0.72rem;
	background: var(--gp-ivory-3);
	color: var(--gp-navy);
	padding: 3px 12px;
	border-radius: 20px;
	font-weight: 600;
	border: 1px solid var(--gp-gold-border);
}
.gp-job-meta { display: flex; gap: 1.5rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.gp-job-meta span { font-size: 0.8rem; color: var(--gp-text-muted); }
.gp-job-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1rem; }

/* ── PERK CARD ── */
.gp-perk {
	background: var(--gp-ivory);
	border-radius: var(--gp-radius);
	padding: 1.5rem;
	text-align: center;
	border: 1px solid var(--gp-ivory-4);
}
.gp-perk-ic { font-size: 1.8rem; margin-bottom: 0.75rem; }
.gp-perk h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.gp-perk p { font-size: 0.8rem; margin-bottom: 0; }

/* ── CONTACT ── */
.gp-contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.gp-contact-ic {
	width: 42px; height: 42px;
	background: var(--gp-ivory-3);
	border: 1px solid var(--gp-gold-border);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem; flex-shrink: 0;
}
.gp-contact-txt strong { display: block; font-size: 0.82rem; color: var(--gp-navy); margin-bottom: 2px; font-weight: 600; }
.gp-contact-txt span { font-size: 0.86rem; color: var(--gp-text-mid); }

/* Form */
.gp-form-card {
	background: var(--gp-ivory-warm);
	border-radius: var(--gp-radius-lg);
	padding: 2.5rem;
	border: 1px solid var(--gp-ivory-4);
}
.gp-fg { margin-bottom: 1.1rem; }
.gp-fg label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gp-navy); margin-bottom: 5px; }
.gp-fg input,
.gp-fg select,
.gp-fg textarea {
	width: 100%;
	padding: 0.7rem 1rem;
	border: 1.5px solid var(--gp-ivory-4);
	border-radius: 7px;
	font-family: inherit;
	font-size: 0.88rem;
	background: var(--gp-white);
	color: var(--gp-text-navy);
	transition: border-color 0.2s;
}
.gp-fg input:focus,
.gp-fg select:focus,
.gp-fg textarea:focus { outline: none; border-color: var(--gp-gold); }
.gp-fg textarea { height: 110px; resize: vertical; }
.gp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* WhatsApp Box */
.gp-wa-box {
	background: linear-gradient(120deg, #128c7e, #25d366);
	border-radius: 12px;
	padding: 1.4rem 1.8rem;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-top: 2rem;
	cursor: pointer;
	transition: transform 0.2s;
	text-decoration: none;
}
.gp-wa-box:hover { transform: translateY(-2px); }
.gp-wa-box strong { display: block; color: #fff; font-size: 0.95rem; }
.gp-wa-box span { color: rgba(255,255,255,0.85); font-size: 0.82rem; }

/* ── POPUP ── */
.gp-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(7,28,53,0.88);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(6px);
}
.gp-popup-overlay.open { display: flex; }
.gp-popup-box {
	background: var(--gp-white);
	border-radius: 20px;
	padding: 2.5rem;
	max-width: 400px;
	width: 90%;
	text-align: center;
	position: relative;
	border: 2px solid var(--gp-gold);
	animation: gpPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes gpPopIn { from { transform: scale(0.65); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.gp-popup-close {
	position: absolute;
	top: 1rem; right: 1rem;
	background: none; border: none;
	font-size: 1.4rem;
	cursor: pointer;
	color: var(--gp-text-muted);
	transition: color 0.2s;
}
.gp-popup-close:hover { color: var(--gp-navy); }
.gp-popup-title { font-family: var(--gp-font-head); color: var(--gp-navy); font-size: 1.5rem; margin-bottom: 0.4rem; font-weight: 700; }
.gp-popup-sub { color: var(--gp-text-muted); font-size: 0.86rem; margin-bottom: 1.5rem; line-height: 1.65; }
.gp-qr-box {
	width: 190px; height: 190px;
	margin: 0 auto 1.2rem;
	background: var(--gp-navy-dark);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
}
.gp-wa-join {
	display: inline-flex; align-items: center; gap: 8px;
	background: #25d366; color: #fff;
	padding: 0.75rem 2rem; border-radius: 8px;
	text-decoration: none; font-weight: 600; font-size: 0.88rem;
	transition: all 0.2s;
}
.gp-wa-join:hover { background: #20b858; color: #fff; }

/* WhatsApp FAB */
.gp-wa-fab {
	position: fixed;
	bottom: 2rem; right: 2rem;
	z-index: 9999;
	background: #25d366;
	color: #fff;
	border: none; cursor: pointer;
	width: 58px; height: 58px;
	border-radius: 50%;
	font-size: 1.6rem;
	box-shadow: 0 4px 20px rgba(37,211,102,0.45);
	transition: all 0.3s;
	display: flex; align-items: center; justify-content: center;
	animation: gpWAPulse 2.5s ease-in-out infinite;
}
.gp-wa-fab:hover { transform: scale(1.12); }
@keyframes gpWAPulse {
	0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
	50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ── FOOTER ── */
.site-footer {
	background: var(--gp-navy-dark);
	color: var(--gp-ivory);
	padding: 4.5rem 2.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3.5rem;
}
.footer-brand-name {
	font-family: var(--gp-font-head);
	color: var(--gp-gold);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,240,0.52); line-height: 1.8; margin: 1rem 0; }
.footer-col h4 {
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--gp-gold);
	margin-bottom: 1.2rem;
	font-weight: 600;
	font-family: var(--gp-font-body);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li a {
	display: block;
	color: rgba(255,255,240,0.52);
	text-decoration: none;
	font-size: 0.84rem;
	margin-bottom: 0.55rem;
	transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gp-gold); }
.footer-col .widget-title { color: var(--gp-gold); }
.footer-bottom {
	border-top: 1px solid rgba(201,168,76,0.15);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,240,0.32); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,240,0.32); text-decoration: none; }
.footer-legal a:hover { color: var(--gp-gold); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-link {
	width: 34px; height: 34px;
	background: rgba(201,168,76,0.12);
	border-radius: 6px;
	display: flex; align-items: center; justify-content: center;
	color: var(--gp-gold);
	font-size: 0.8rem;
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 700;
}
.social-link:hover { background: var(--gp-gold); color: var(--gp-navy-dark); }
.social-link.wa { background: #25d366; color: #fff; }

/* ── PAGE HEROES ── */
.gp-page-hero {
	background: linear-gradient(120deg, var(--gp-navy-dark), var(--gp-navy-mid));
	padding: 5rem 2.5rem 3.5rem;
}
.gp-page-hero-inner { max-width: 1200px; margin: 0 auto; }
.gp-breadcrumb { font-size: 0.76rem; color: rgba(201,168,76,0.7); margin-bottom: 1rem; }
.gp-breadcrumb a { color: rgba(201,168,76,0.7); text-decoration: none; }
.gp-breadcrumb span { color: var(--gp-gold); }
.gp-page-hero h1 { color: var(--gp-ivory); max-width: 720px; }
.gp-page-hero .hero-desc { color: rgba(255,255,240,0.72); margin-top: 1rem; max-width: 620px; }

/* ── ANIMATIONS ── */
.gp-fade-up { opacity: 0; transform: translateY(28px); transition: all 0.65s ease; }
.gp-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── ELEMENTOR OVERRIDES ── */
.elementor-section { position: relative; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--gp-font-head); }

/* Elementor inner section full-width */
.elementor-section.elementor-section-full_width .elementor-container {
	max-width: 100%;
}

/* ── WORDPRESS CORE ── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gp-text-muted); margin-top: 0.5rem; }
.sticky { /* sticky post styles */ }
.gallery-caption { font-size: 0.85rem; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin: 0 auto; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.gp-slide-inner { grid-template-columns: 1fr; }
	.gp-slide-visual { display: none; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.gp-grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
	.main-navigation { display: none; }
	.main-navigation.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--gp-navy-dark); padding: 1rem; border-bottom: 2px solid var(--gp-gold-border); }
	.nav-menu { flex-direction: column; width: 100%; gap: 0; }
	.nav-menu > li > a { padding: 0.75rem 1rem; border-radius: 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
	.nav-menu .sub-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,240,0.04); }
	.menu-toggle { display: block; }
	.gp-grid-2, .gp-grid-3 { grid-template-columns: 1fr; }
	.gp-grid-2-3 { grid-template-columns: 1fr; }
	.gp-stats-bar-inner { grid-template-columns: repeat(2,1fr); }
	.footer-top { grid-template-columns: 1fr; }
	.gp-form-row { grid-template-columns: 1fr; }
	.gp-hero-slider { height: auto; min-height: 85vh; }
	.gp-slide h1 { font-size: 2rem; }
	section, .gp-section { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
	.gp-stats-bar-inner { grid-template-columns: 1fr 1fr; }
	.gp-sbar-num { font-size: 1.8rem; }
}
</style>
