/*
 * MayOne Global Advisory — Premium Pixels Stylesheet
 */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #072B5A;
    --navy-dark: #051F42;
    --navy-light: #0D3E7D;
    --gold: #D69A2D;
    --gold-dark: #B87E16;
    --gold-light: #E4B354;
    --gold-bg: rgba(214, 154, 45, 0.08);
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --text-color: #1F2937;
    --border-color: #E5E7EB;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --success-light: #D1FAE5;
    --error: #EF4444;
    --error-light: #FEE2E2;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--navy); }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 45px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold);
    margin-bottom: 14px;
}
.section-label::before {
    content: ''; display: inline-block; width: 32px; height: 2px; background: var(--gold);
}

.section-heading {
    font-size: 38px; font-weight: 800; margin-bottom: 18px; line-height: 1.2;
    color: var(--navy);
}
.section-navy .section-heading { color: var(--white); }

.section-subtext {
    font-size: 17px; color: var(--gray-500); max-width: 700px; line-height: 1.7;
}
.section-navy .section-subtext { color: rgba(255, 255, 255, 0.8); }

.section-header-center {
    text-align: center; max-width: 750px; margin: 0 auto 56px;
}
.section-header-center .section-subtext { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; font-weight: 600; font-size: 14px; font-family: inherit;
    border-radius: var(--radius); cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); white-space: nowrap;
}
.btn i { font-size: 13px; }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(214, 154, 45, 0.3); }
.btn-outline-white { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(7, 43, 90, 0.3); }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.nav-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 80px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}
.logo-icon {
    width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius);
    display: flex !important; align-items: center !important; justify-content: center !important;
    color: var(--gold); font-weight: 800; font-size: 20px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0 !important;
}
.logo-text-group h2 { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 2px; margin-top: 0; }
.logo-text-group span { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-500); font-weight: 600; }

.main-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}
.main-nav .nav-link {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--gray-700) !important;
    padding: 8px 0 !important;
    position: relative !important;
    display: inline-block !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--gold); }
.main-nav .nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: var(--transition);
}
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.nav-dropdown .dropdown-trigger i { font-size: 10px; transition: var(--transition); }
.nav-dropdown:hover .dropdown-trigger i { transform: rotate(180deg); }
.dropdown-panel {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
    background: var(--white); border: 1px solid var(--border-color); box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg); width: 320px; padding: 12px 0;
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-panel a {
    display: flex; align-items: center; gap: 14px; padding: 12px 24px;
    font-size: 14px; font-weight: 500; color: var(--gray-700);
}
.dropdown-panel a i { color: var(--gold); width: 18px; text-align: center; }
.dropdown-panel a:hover { background: var(--off-white); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Toggle */
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--navy); cursor: pointer; }

/* ===== HERO SECTION (01) ===== */
.hero {
    background: linear-gradient(105deg, rgba(7,43,90,0.96) 0%, rgba(7,43,90,0.88) 55%, rgba(7,43,90,0.6) 100%),
                url('../images/hero_skyline.png') no-repeat right center/cover;
    padding: 120px 0 0;
    color: var(--white);
    min-height: 580px;
    position: relative;
}
.hero-inner { max-width: 680px; padding-bottom: 90px; }
.hero h1 {
    font-size: 46px; font-weight: 800; line-height: 1.15;
    color: var(--white); margin-bottom: 24px;
}
.hero p {
    font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7;
    margin-bottom: 36px; max-width: 580px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Trust Strip */
.trust-strip {
    background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.trust-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-badge {
    display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.95);
}
.trust-badge-icon {
    width: 42px; height: 42px; border-radius: 50%; background: var(--gold-bg);
    border: 1px solid rgba(214, 154, 45, 0.4); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.trust-badge-icon i { color: var(--gold); font-size: 16px; }

/* ===== SERVICES STRIP (HOME) ===== */
.services-strip { padding: 40px 0; }
.services-strip-title {
    text-align: center; margin-bottom: 12px; font-size: 28px; font-weight: 800;
}
.services-strip-sub {
    text-align: center; margin-bottom: 48px; font-size: 15px; color: var(--gray-500);
}
.services-cards-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.service-mini-card {
    text-align: center; padding: 32px 20px; border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); background: var(--white); transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.service-mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.smc-icon {
    width: 56px; height: 56px; margin-bottom: 18px; border-radius: 50%;
    background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
}
.smc-icon i { color: var(--gold); font-size: 22px; }
.service-mini-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; color: var(--navy); }
.service-mini-card .smc-link {
    font-size: 12px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 4px;
    margin-top: auto;
}

/* ===== WHY MAYONE ===== */
.why-section { padding: 45px 0; }
.why-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.why-content h2 { font-size: 36px; margin-bottom: 18px; }
.why-content > p { font-size: 16px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }
.why-checklist { display: flex; flex-direction: column; gap: 20px; }
.why-check-item {
    display: flex; align-items: flex-start; gap: 14px;
}
.why-check-icon {
    width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--white);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px;
    box-shadow: 0 4px 10px rgba(214, 154, 45, 0.3);
}
.why-check-icon i { font-size: 12px; }
.why-check-text strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.why-check-text span { font-size: 14px; color: var(--gray-500); }
.why-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Key Metrics Row */
.metrics-row {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
    margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border-color);
}
.metric-item { text-align: center; }
.metric-icon { font-size: 26px; color: var(--gold); margin-bottom: 10px; }
.metric-item p { font-size: 13px; font-weight: 600; color: var(--gray-700); line-height: 1.4; }

/* Partners Strip */
.partners-bar {
    padding: 40px 0; border-top: 1px solid var(--border-color); margin-top: 56px;
}
.partners-label {
    text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--gray-400); margin-bottom: 28px;
}
.partners-logos {
    display: flex; justify-content: center; align-items: center; gap: 64px; flex-wrap: wrap;
}
.partner-logo {
    font-weight: 800; font-size: 22px; color: var(--gray-400); letter-spacing: -0.5px;
    text-transform: uppercase; opacity: 0.6; transition: var(--transition);
}
.partner-logo:hover { opacity: 1; color: var(--navy); }

/* ===== SERVICES OVERVIEW (PAGE) ===== */
.services-overview { padding: 45px 0; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.svc-card {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 40px 32px; transition: var(--transition);
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.svc-card-icon {
    width: 60px; height: 60px; border-radius: var(--radius);
    background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.svc-card-icon i { font-size: 24px; color: var(--gold); }
.svc-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.svc-card p { font-size: 14px; color: var(--gray-500); flex-grow: 1; margin-bottom: 24px; line-height: 1.6; }
.svc-card-link {
    font-size: 14px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
}
.svc-card-link:hover { color: var(--gold-dark); gap: 10px; }

/* Why Clients Trust Us */
.trust-bar { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border-color); }
.trust-bar-title {
    text-align: center; font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gray-500); margin-bottom: 36px;
}
.trust-icons-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.trust-icon-item { text-align: center; }
.trust-icon-circle {
    width: 60px; height: 60px; border-radius: 50%; background: var(--gold-bg);
    margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(214, 154, 45, 0.2);
}
.trust-icon-circle i { color: var(--gold); font-size: 22px; }
.trust-icon-item p { font-size: 13px; font-weight: 600; color: var(--gray-700); }

/* ===== SERVICE DETAIL PAGES ===== */
.service-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white); padding: 50px 0;
    border-bottom: 5px solid var(--gold); position: relative; overflow: hidden;
}
.service-hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center;
}
.service-hero-text h1 { font-size: 38px; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
.service-hero-text p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.7; }
.service-hero-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 2px solid rgba(255,255,255,0.1); }

/* Offerings Grid */
.offerings { padding: 45px 0; }
.offerings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.offer-card {
    display: flex; gap: 20px; padding: 28px; background: var(--gray-50);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: var(--transition);
}
.offer-card:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-md); }
.offer-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius); background: var(--gold-bg);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.offer-card-icon i { color: var(--gold); font-size: 20px; }
.offer-card-text h4 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.offer-card-text p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.offer-card-span2 { grid-column: span 2; }

/* Disclosures */
.disclosure-box {
    background: #FFFBEB; border: 1px solid #FEF3C7; border-left: 4px solid var(--gold);
    border-radius: var(--radius); padding: 28px; margin-top: 36px;
}
.disclosure-box h5 {
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    color: #92400E; margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.disclosure-box ul { padding: 0; }
.disclosure-box li { font-size: 14px; color: #B45309; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.disclosure-box li i { margin-top: 4px; flex-shrink: 0; }

/* Benefits Grid */
.benefits { padding: 45px 0; background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
    text-align: center; background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 36px 24px; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.benefit-icon {
    width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%;
    background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
}
.benefit-icon i { font-size: 24px; color: var(--gold); }
.benefit-card h4 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.benefit-card p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

.benefit-card-cta {
    background: var(--navy) !important; border: none !important; color: var(--white);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.benefit-card-cta h4 { color: var(--white) !important; margin-bottom: 12px; }
.benefit-card-cta p { color: rgba(255,255,255,0.75) !important; margin-bottom: 20px; }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ind-card {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.ind-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.ind-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ind-card-body { padding: 32px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.ind-card-body h3 { font-size: 19px; margin-bottom: 12px; color: var(--navy); }
.ind-card-body p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.ind-card-body .btn { margin-top: auto; }

/* ===== PROCESS ===== */
.process-steps-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-bottom: 48px;
}
.process-step { text-align: center; position: relative; }
.step-number {
    width: 54px; height: 54px; border-radius: 50%; background: var(--gold);
    color: var(--white); font-weight: 800; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; box-shadow: 0 4px 15px rgba(214, 154, 45, 0.4);
    position: relative; z-index: 2;
}
.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.process-step p { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* connector line between steps */
.process-step:not(:last-child)::after {
    content: ''; position: absolute; top: 27px; right: -12px; width: calc(100% - 60px);
    height: 2px; background: var(--border-color); left: calc(50% + 27px);
    z-index: 1;
}

.process-steps-row2 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto;
}

/* Tech Delivery Box */
.tech-delivery {
    background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    padding: 48px; margin-top: 56px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    box-shadow: var(--shadow-sm);
}
.tech-delivery h3 { font-size: 24px; margin-bottom: 14px; color: var(--navy); }
.tech-delivery p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }
.tech-delivery img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== ABOUT US ===== */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: 34px; margin-bottom: 18px; line-height: 1.25; }
.about-text > p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.values-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
    margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border-color);
}
.value-item { text-align: center; }
.value-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gold-bg); border: 1px solid rgba(214, 154, 45, 0.2);
    margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
}
.value-circle i { color: var(--gold); font-size: 22px; }
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--gray-700); }

/* ===== SECURITY ===== */
.security-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: flex-start; }
.security-text h2 { font-size: 34px; margin-bottom: 16px; line-height: 1.25; }
.security-text > p { font-size: 16px; color: var(--gray-500); margin-bottom: 32px; line-height: 1.7; }
.security-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sec-card {
    padding: 24px; background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius); display: flex; gap: 16px; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.sec-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.sec-card i { color: var(--gold); font-size: 22px; margin-top: 3px; flex-shrink: 0; }
.sec-card h4 { font-size: 15px; margin-bottom: 6px; color: var(--navy); }
.sec-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.security-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.security-tagline {
    text-align: center; margin-top: 48px; font-size: 15px; font-weight: 600; color: var(--gold);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ===== RESOURCES ===== */
.resource-tabs {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; justify-content: center;
}
.tab-btn {
    padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
    border: 1px solid var(--border-color); background: var(--white); color: var(--gray-600);
    cursor: pointer; transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.res-card {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.res-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.res-card-img { width: 100%; height: 200px; object-fit: cover; }
.res-card-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.res-card-meta { font-size: 12px; color: var(--gray-400); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.res-card-body h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; color: var(--navy); }
.res-card-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.5; flex-grow: 1; }
.res-card-link { font-size: 14px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); border: 1px solid var(--border-color); font-weight: 600;
    font-size: 14px;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Search Filter Bar */
.search-filter-bar {
    max-width: 500px; margin: 0 auto 36px; display: flex; gap: 10px;
}
.search-input {
    flex-grow: 1; padding: 12px 18px; border: 1px solid var(--border-color);
    border-radius: var(--radius); outline: none; font-family: inherit; font-size: 14px;
    background: var(--off-white);
}
.search-input:focus { border-color: var(--gold); background: var(--white); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
.contact-form-box {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-input {
    width: 100%; padding: 12px 16px; font-size: 14px; font-family: inherit;
    border: 1px solid var(--border-color); border-radius: var(--radius); background: var(--gray-50);
    outline: none; transition: var(--transition);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214, 154, 45, 0.15); background: var(--white); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-privacy { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.form-privacy input { margin-top: 4px; }

.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.alert-success { background: var(--success-light); color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: var(--error-light); color: #991b1b; border: 1px solid #fecaca; }

.offices-col { display: flex; flex-direction: column; gap: 32px; }
.office-box {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.office-box h3 { font-size: 19px; color: var(--navy); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.office-box h3 i { color: var(--gold); }
.office-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 14px; color: var(--gray-600); }
.office-detail i { color: var(--gold); margin-top: 4px; flex-shrink: 0; width: 18px; text-align: center; }

/* Map Box */
.map-box {
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm); margin-top: 48px;
}
.map-box iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-card {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.faq-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq-q {
    padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-size: 15px; font-weight: 600; color: var(--navy);
}
.faq-q i { color: var(--gold); font-size: 15px; transition: var(--transition); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.faq-card.open .faq-a { max-height: 250px; }
.faq-card.open .faq-q i { transform: rotate(180deg); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-main {
    padding: 45px 0 30px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; line-height: 1.6; }
.footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.footer-social-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social-icon:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-cta { margin-top: 24px; }

/* Newsletter Form Footer */
.newsletter-footer-form {
    margin-top: 20px; display: flex; gap: 8px; max-width: 320px;
}
.newsletter-footer-input {
    flex-grow: 1; padding: 10px 14px; font-size: 13px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
    color: var(--white); outline: none;
}
.newsletter-footer-input:focus { border-color: var(--gold); }
.newsletter-footer-btn {
    padding: 10px 16px; background: var(--gold); color: var(--white);
    border: none; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer;
}
.newsletter-footer-btn:hover { background: var(--gold-dark); }

.footer-bottom {
    padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ===== SECTION DIVIDER ===== */
.page-section-bar {
    background: var(--navy); border-bottom: 4px solid var(--gold); padding: 18px 0;
}
.page-section-bar .container {
    display: flex; align-items: center; justify-content: space-between;
}
.page-section-bar-title { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }

/* ===== ADMIN PANEL STYLING ===== */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}
.admin-sidebar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 10;
}
.admin-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-sidebar-header h2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}
.admin-sidebar-menu {
    flex-grow: 1;
    padding: 20px 0;
    overflow-y: auto;
}
.admin-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.admin-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}
.admin-menu-item:hover, .admin-menu-item.active {
    background: rgba(255,255,255,0.05);
    color: var(--gold);
    border-left: 4px solid var(--gold);
}
.admin-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.admin-main {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.admin-navbar {
    height: 70px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-navbar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}
.admin-navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.admin-content-inner {
    padding: 40px;
    flex-grow: 1;
}

/* Admin Dashboard Widgets */
.admin-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.admin-widget-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}
.admin-widget-info h3 {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.admin-widget-info p {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.admin-widget-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

/* Admin Panel Table */
.admin-panel-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}
.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.admin-card-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.admin-table th, .admin-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.admin-table th {
    background: var(--gray-50);
    color: var(--gray-700);
    font-weight: 600;
}
.admin-table tr:hover {
    background: var(--gray-50);
}
.admin-action-btns {
    display: flex;
    gap: 8px;
}
.admin-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid transparent;
}
.admin-btn-edit { background: var(--gold-bg); color: var(--gold-dark); border-color: rgba(214, 154, 45, 0.2); }
.admin-btn-edit:hover { background: var(--gold); color: var(--white); }
.admin-btn-delete { background: var(--error-light); color: var(--error); border-color: rgba(239, 68, 68, 0.2); }
.admin-btn-delete:hover { background: var(--error); color: var(--white); }

/* Badges */
.admin-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}
.admin-badge-pending { background: var(--warning-light); color: var(--warning); }
.admin-badge-contacted { background: #DBEAFE; color: #1D4ED8; }
.admin-badge-closed { background: var(--success-light); color: var(--success); }

/* Modal Form Styles */
.modal-admin {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-admin.show { opacity: 1; visibility: visible; }
.modal-admin-content {
    background: var(--white); border-radius: var(--radius-lg);
    width: 100%; max-width: 600px; padding: 32px;
    box-shadow: var(--shadow-lg); transform: translateY(-20px); transition: var(--transition);
    max-height: 90vh; overflow-y: auto;
}
.modal-admin.show .modal-admin-content { transform: translateY(0); }
.modal-admin-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
.modal-admin-header h3 { font-size: 18px; color: var(--navy); }
.modal-close-btn { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--gray-400); }
.modal-close-btn:hover { color: var(--error); }

/* Admin Login Style */
.admin-login-body {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.admin-login-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}
.admin-login-logo {
    display: flex; justify-content: center; margin-bottom: 32px;
}

/* Testimonial slider custom styling */
.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}
.testi-stars { color: var(--gold); margin-bottom: 18px; font-size: 14px; }
.testi-quote { font-size: 14px; color: var(--gray-600); font-style: italic; line-height: 1.7; margin-bottom: 24px; flex-grow: 1; }
.testi-client { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 14px;
}
.testi-client-info h4 { font-size: 14px; color: var(--navy); font-weight: 700; }
.testi-client-info span { font-size: 12px; color: var(--gray-500); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-cards-row { grid-template-columns: repeat(3, 1fr); }
    .services-grid, .industries-grid, .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-icons-row, .metrics-row, .values-row { grid-template-columns: repeat(3, 1fr); }
    .process-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .process-step:not(:last-child)::after { display: none; }
    .admin-widgets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .main-nav, .header-cta { display: none; }
    .mobile-toggle { display: block; }
    .main-nav.active {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 80px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg); padding: 20px; z-index: 999;
    }
    .main-nav.active .nav-link { padding: 12px 0; }
    .nav-dropdown .dropdown-panel {
        position: static; transform: none; width: 100%; box-shadow: none;
        border: none; background: var(--off-white); border-radius: var(--radius);
        opacity: 1; visibility: visible; padding: 10px;
    }

    .hero h1 { font-size: 34px; }
    .hero-inner { max-width: 100%; }
    .hero-buttons { flex-direction: column; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .service-hero-grid, .about-grid, .security-grid, .contact-grid, .tech-delivery {
        grid-template-columns: 1fr; gap: 40px;
    }
    .services-cards-row { grid-template-columns: repeat(2, 1fr); }
    .offerings-grid, .security-cards, .faq-grid, .benefits-grid, .testimonial-track { grid-template-columns: 1fr; }
    .offer-card-span2 { grid-column: span 1; }
    .values-row { grid-template-columns: repeat(2, 1fr); }
    .process-steps-grid, .process-steps-row2 { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-heading { font-size: 30px; }
    .admin-content-inner { padding: 20px; }
}

@media (max-width: 480px) {
    .services-cards-row, .services-grid, .industries-grid, .resources-grid,
    .trust-icons-row, .metrics-row, .values-row, .footer-grid,
    .process-steps-grid, .process-steps-row2, .trust-row { grid-template-columns: 1fr; }
    .hero { padding: 80px 0 0; }
    .hero h1 { font-size: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .admin-widgets-grid { grid-template-columns: 1fr; }
}
