@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
    --font-display: 'Sora', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --navy-darkest: #040c1a;
    --navy-hero: #07132a;
    --navy-card: #0b1a36;
    --navy-border: #1e3a6e;
    
    --blue-primary: #1d68ff;
    --blue-hover: #1553d4;
    --blue-light: #60a5fa;
    --blue-soft-bg: #eff6ff;
    
    --amber: #f59e0b;
    --amber-hover: #d97706;
    --amber-soft-bg: #fef3c7;
    
    --green: #10b981;
    --green-soft-bg: #ecfdf5;
    
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 35px rgba(29, 104, 255, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* =========================================
   Top Announcement Bar
   ========================================= */
.announcement-bar {
    background: #0d52cc;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 0;
    text-align: center;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.nav-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 46px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.brand-text small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.2s ease;
    border-radius: var(--radius-full);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-explore-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
    transition: all 0.2s ease;
}

.btn-explore-cta:hover {
    background: var(--amber-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

.menu-toggle {
    display: none;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 22px;
    color: var(--text-heading);
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: #e2e8f0;
}

.nav-drawer-header,
.nav-drawer-footer,
.nav-backdrop {
    display: none;
}


/* =========================================
   Buttons & Pills
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--blue-primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(29, 104, 255, 0.25);
}

.btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(29, 104, 255, 0.35);
}

.btn-hero-primary {
    background: var(--blue-primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 25px rgba(29, 104, 255, 0.35);
}

.btn-hero-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(29, 104, 255, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.eyebrow,
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--blue-primary);
    margin-bottom: 12px;
}

.hero-reference .eyebrow-pill {
    color: #93c5fd;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--amber);
    box-shadow: 0 0 8px var(--amber);
}

/* =========================================
   Hero Section (Reference Style)
   ========================================= */
.hero-reference {
    background: radial-gradient(circle at 80% 20%, rgba(29, 104, 255, 0.2), transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.15), transparent 40%),
                var(--navy-hero);
    color: #ffffff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-reference-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-reference-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 10px 0 20px;
    color: #ffffff;
}

.hero-reference-title .highlight-text {
    color: #93c5fd;
}

.hero-reference-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 520px;
    margin-bottom: 35px;
}

.hero-reference-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-reference-perks {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    flex-wrap: wrap;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
}

.perk-check {
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
}

.hero-reference-visual {
    position: relative;
}

.hero-card-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 35px rgba(29, 104, 255, 0.2);
}

.hero-card-showcase img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
}

.hero-card-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(11, 26, 54, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge-text small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 2px;
}

.badge-text strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.badge-icon {
    font-size: 22px;
}

/* =========================================
   Stats Strip
   ========================================= */
.stats-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 35px 0;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-strip-item {
    padding: 10px 15px;
    border-right: 1px solid var(--border-color);
}

.stat-strip-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================
   Section Base & Headings
   ========================================= */
.section {
    padding: 90px 0;
}

.section-heading-ref {
    margin-bottom: 40px;
}

.section-heading-ref h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 8px 0 12px;
}

.section-heading-ref p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.heading-sub-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.link-arrow {
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.link-arrow:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-center p {
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Government Certified Banner
   ========================================= */
.gov-certified-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0edff 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
    padding: 22px 30px;
    margin-bottom: 45px;
}

.gov-badge-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.gov-badge-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 4px;
}

.gov-badge-content p {
    font-size: 13px;
    color: #3b82f6;
    line-height: 1.5;
}

/* =========================================
   Project Cards Grid (Reference Style)
   ========================================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 35px;
}

.modern-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Center Card: 10 Days Recommended */
.modern-card.recommended {
    background: var(--navy-card);
    border-color: var(--navy-border);
    color: #ffffff;
    box-shadow: 0 20px 45px -10px rgba(11, 26, 54, 0.4);
    transform: scale(1.03);
    z-index: 2;
}

.modern-card.recommended:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 25px 50px -10px rgba(11, 26, 54, 0.55);
}

.most-selected-badge {
    position: absolute;
    top: -13px;
    left: 32px;
    background: var(--amber);
    color: #0f172a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: 0.02em;
}

.modern-card.recommended .plan-name {
    color: #93c5fd;
}

.days-circle {
    background: var(--blue-soft-bg);
    color: var(--blue-primary);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 800;
}

.days-circle b {
    font-family: var(--font-display);
    font-size: 16px;
}

.days-circle span {
    font-size: 11px;
    font-weight: 600;
}

.modern-card.recommended .days-circle {
    background: rgba(255, 255, 255, 0.08);
    color: #93c5fd;
}

.price-wrap {
    margin-bottom: 18px;
}

.price-wrap h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.modern-card.recommended .price-wrap h2 {
    color: #ffffff;
}

.price-wrap p {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modern-card.recommended .price-wrap p {
    color: #94a3b8;
}

.plan-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.modern-card.recommended .plan-desc {
    color: #cbd5e1;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    margin-bottom: 12px;
    line-height: 1.5;
}

.modern-card.recommended .features-list li {
    color: #f1f5f9;
}

.check-icon {
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.courier-feature {
    color: var(--amber) !important;
    font-weight: 600;
}

.btn-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--blue-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-select:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(29, 104, 255, 0.3);
}

.modern-card.recommended .btn-select {
    background: #ffffff;
    color: var(--navy-card);
    font-weight: 800;
}

.modern-card.recommended .btn-select:hover {
    background: #f1f5f9;
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

.important-notice-bar {
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    font-size: 13px;
    color: #854d0e;
    line-height: 1.5;
}

/* =========================================
   How It Works (Reference 3-Cards Style & Process List)
   ========================================= */
.how-section-ref {
    background: var(--bg-light);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
}

.step-icon {
    font-size: 24px;
}

.process-step-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 16px 0;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.process-item > span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.process-item h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.process-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =========================================
   Why Choose Us / About Reference
   ========================================= */
.why-section-ref {
    background: #ffffff;
}

.why-grid-ref {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.why-copy h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 8px 0 16px;
}

.why-copy > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 3px;
}

.why-feat-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.feat-divider {
    height: 1px;
    background: var(--border-color);
}

.why-card-stack {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-card-stack img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.verified-trust-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
}

.vt-check {
    font-size: 28px;
}

.vt-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
}

.vt-content span {
    font-size: 12px;
    color: var(--text-muted);
}

/* =========================================
   Community Feedback Gallery
   ========================================= */
.feedback-section {
    background: var(--navy-hero);
    color: #ffffff;
    padding: 90px 0;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.feedback-header .eyebrow {
    color: #93c5fd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.feedback-header .eyebrow span {
    color: var(--amber);
}

.feedback-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.feedback-header p {
    color: #cbd5e1;
    font-size: 15px;
}

.feedback-header a {
    color: #60a5fa;
    font-size: 14px;
    font-weight: 700;
}

.feedback-header a:hover {
    color: #93c5fd;
}

.feedback-grid {
    column-count: 4;
    column-gap: 16px;
}

.feedback-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.feedback-item:hover img {
    transform: scale(1.03);
}

.feedback-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 14px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.feedback-overlay b {
    display: block;
    font-size: 12px;
    color: #ffffff;
}

.feedback-overlay .stars {
    color: var(--amber);
    font-size: 11px;
    letter-spacing: 2px;
}

/* =========================================
   Footer (Reference Dark Navy Style)
   ========================================= */
.footer {
    background: var(--navy-darkest);
    color: #ffffff;
    padding: 70px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 38px;
    border-radius: var(--radius-sm);
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: 14px;
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12px;
    color: #64748b;
}

/* =========================================
   Payment Modal (Reference Split Style)
   ========================================= */
.payment-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 13, 26, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.payment-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.payment-modal {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 92%;
    max-width: 920px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.payment-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 520px;
}

.payment-details-pane {
    background: var(--navy-hero);
    color: #ffffff;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-eyebrow {
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.package-summary-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 15px;
}

.summary-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #60a5fa;
}

.package-summary-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin: 8px 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #cbd5e1;
}

.summary-row strong {
    color: #ffffff;
    font-size: 14px;
}

.highlight-price {
    font-family: var(--font-display);
    color: var(--amber) !important;
    font-size: 22px !important;
    font-weight: 800;
}

.refund-notice {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 12px;
    color: #a7f3d0;
    margin-top: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-qr-pane {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
}

.qr-header {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.qr-image-container {
    width: 260px;
    height: 260px;
    border: 8px solid #0f172a;
    border-radius: var(--radius-md);
    padding: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
}

.qr-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    font-size: 12px;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 15px;
}

.qr-instruction {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 290px;
    margin: 15px 0 20px;
    line-height: 1.5;
}

.btn-confirm-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 300px;
    background: var(--blue-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(29, 104, 255, 0.25);
    transition: all 0.2s ease;
}

.btn-confirm-payment:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 104, 255, 0.35);
}

.qr-footer-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 14px;
}

/* =========================================
   Confirmation Form Page (`confirm.php`)
   ========================================= */
.confirmation-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: 100vh;
}

.confirm-header {
    text-align: center;
    margin-bottom: 35px;
}

.confirm-header h1 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin: 8px 0;
}

.confirm-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.confirm-form {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.confirm-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
    display: block;
}

.confirm-form label small {
    color: var(--text-muted);
    font-weight: 400;
}

.confirm-form input[type="text"],
.confirm-form input[type="number"],
.confirm-form input[type="tel"],
.confirm-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background: #fbfcfe;
    transition: all 0.2s ease;
    color: var(--text-heading);
}

.confirm-form input:focus,
.confirm-form textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(29, 104, 255, 0.15);
    background: #ffffff;
}

.readonly-input {
    background: #f1f5f9 !important;
    color: #64748b !important;
    cursor: not-allowed;
    border-color: #e2e8f0 !important;
    font-weight: 600;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.file-upload-box {
    position: relative;
    width: 100%;
}

.file-upload-box input[type="file"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 24px;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    transition: all 0.2s ease;
}

.file-upload-box:hover label {
    border-color: var(--blue-primary);
    background: #eff6ff;
    color: var(--blue-primary);
}

.form-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 12px;
    color: #1e40af;
    line-height: 1.6;
    text-align: center;
    margin: 24px 0;
}

.btn-submit-confirm {
    width: 100%;
    background: var(--blue-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(29, 104, 255, 0.25);
    transition: all 0.2s ease;
}

.btn-submit-confirm:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(29, 104, 255, 0.35);
}

/* =========================================
   Waiting & Redirect Page (`telegram-redirect.php`)
   ========================================= */
.waiting-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
    max-width: 540px;
}

.status-card h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.status-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--blue-primary);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 25px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.timer-box {
    background: var(--green-soft-bg);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 25px 0;
    display: inline-block;
    min-width: 180px;
}

.timer-box span {
    display: block;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.timer-box small {
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timer-note {
    font-size: 12px !important;
    color: #94a3b8 !important;
    max-width: 380px;
    margin: 0 auto !important;
}

.icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin: 0 auto 25px;
}

.icon-circle.success {
    background: var(--green);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

.icon-circle.error {
    background: #ef4444;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.25);
}

/* =========================================
   Lightbox Modal
   ========================================= */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 13, 26, 0.92);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.lightbox-prev { left: -55px; }
.lightbox-next { right: -55px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* =========================================
   Inner Pages (About, FAQ, Contact, etc.)
   ========================================= */
.inner-hero {
    background: radial-gradient(circle at 80% 20%, rgba(29, 104, 255, 0.12), transparent 45%),
                var(--navy-hero);
    color: #ffffff;
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inner-hero h1 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 10px 0;
}

.inner-hero p {
    color: #cbd5e1;
    font-size: 16px;
}

.about-content {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cert-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.cert-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.cert-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cert-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cert-card img {
    border-radius: var(--radius-sm);
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq details {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 12px 0;
    padding: 0 20px;
    transition: all 0.2s ease;
}

.faq details[open] {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-sm);
}

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 18px;
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-section {
    background: var(--bg-light);
    padding: 70px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: flex-start;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-subtext {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-soft-bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(29, 104, 255, 0.08);
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 14px;
    color: var(--text-heading);
    line-height: 1.6;
    font-weight: 600;
}

.corp-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.corp-tags span {
    font-size: 12px;
    background: #f1f5f9;
    padding: 5px 11px;
    border-radius: var(--radius-sm);
    color: #334155;
    border: 1px solid #e2e8f0;
}

.btn-telegram-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2563eb;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    transition: all 0.2s ease;
}

.btn-telegram-inline:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-form-desc {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-success-alert {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 25px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
}

.form-group-contact label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 7px;
}

.form-group-contact label span.req {
    color: #ef4444;
    font-weight: 800;
    margin-left: 3px;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-heading);
    background: #fbfcfe;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group-contact select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(29, 104, 255, 0.15);
    background: #ffffff;
}

.form-group-contact textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--blue-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(29, 104, 255, 0.25);
    transition: all 0.2s ease;
    margin-top: 5px;
}

.btn-contact-submit:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 104, 255, 0.35);
}

.form-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
    text-align: center;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (max-width: 960px) {
    .hero-reference-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-reference-title {
        font-size: 42px;
    }
    
    .hero-card-showcase img {
        height: 320px;
    }
    
    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-strip-item:nth-child(2) {
        border-right: none;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .modern-card.recommended {
        transform: none;
    }
    
    .modern-card.recommended:hover {
        transform: translateY(-6px);
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid-ref {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        column-count: 2;
    }
    
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-flex {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 12, 26, 0.65);
        backdrop-filter: blur(4px);
        z-index: 1001;
    }

    .nav-backdrop.active {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 290px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        padding: 20px 20px 30px;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
        z-index: 1002;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        transform: translateX(105%);
        transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 14px;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-drawer-title {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 800;
        color: var(--text-heading);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .nav-drawer-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        font-size: 18px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        line-height: 1;
    }

    .nav-drawer-close:hover {
        background: #fee2e2;
        color: #ef4444;
        border-color: #fca5a5;
    }

    .nav-links a {
        font-size: 15px;
        font-weight: 700;
        color: #334155;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f8fafc;
        transition: all 0.15s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: #eff6ff;
        color: var(--blue-primary);
        padding-left: 18px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-drawer-footer {
        display: block;
        margin-top: auto;
        padding-top: 24px;
    }
    
    .payment-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-reference-title {
        font-size: 34px;
    }
    
    .section-heading-ref h2 {
        font-size: 28px;
    }
    
    .heading-sub-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-strip-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-strip-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    
    .stat-strip-item:last-child {
        border-bottom: none;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .confirm-form {
        padding: 24px;
    }
    
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .feedback-grid {
        column-count: 1;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-details-pane, .payment-qr-pane {
        padding: 30px 20px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .contact-info-card,
    .contact-form-card {
        padding: 28px 20px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}
