:root {
    /* Brand Colors */
    --royal-blue: #0B2A5B;
    --cvedge-gold: #D4AF37;
    --pure-white: #FFFFFF;
    --navy-black: #071A33;
    --electric-blue: #3A7BFF;
    
    /* Theme Variables (Dark Mode Default) */
    --bg-primary: var(--navy-black);
    --bg-secondary: var(--royal-blue);
    --bg-card: rgba(11, 42, 91, 0.6);
    --text-primary: var(--pure-white);
    --text-secondary: #B0C4DE;
    --border-color: rgba(212, 175, 55, 0.2);
    --glow-shadow: 0 4px 20px rgba(58, 123, 255, 0.3);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
    
    /* Typography */
    --font-en-primary: 'Poppins', sans-serif;
    --font-en-secondary: 'Inter', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.light-mode {
    --bg-primary: #F8F9FA;
    --bg-secondary: #E9ECEF;
    --bg-card: #FFFFFF;
    --text-primary: var(--navy-black);
    --text-secondary: #4A5568;
    --border-color: rgba(11, 42, 91, 0.1);
    --glow-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-en-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

html[lang="ar"] body {
    font-family: var(--font-ar);
}

h1, h2, h3, h4, h5, h6, .btn, .nav-links a {
    font-family: var(--font-en-primary);
}

html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] .btn, html[lang="ar"] .nav-links a {
    font-family: var(--font-ar);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold { color: var(--cvedge-gold); }
.text-center { text-align: center; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cvedge-gold), transparent);
}

/* Background Overlay */
.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(11,42,91,0.2) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(58,123,255,0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(7, 26, 51, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.light-mode .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-icon {
    color: var(--cvedge-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cvedge-gold);
}

.nav-controls {
    display: flex;
    gap: 15px;
}

.btn-icon {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: inherit;
    font-weight: 600;
}

.btn-icon:hover {
    background: var(--royal-blue);
    color: var(--pure-white);
    border-color: var(--royal-blue);
    box-shadow: var(--glow-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cvedge-gold), #b8901e);
    color: #fff;
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cvedge-gold);
    color: var(--cvedge-gold);
}

.btn-secondary:hover {
    background: var(--cvedge-gold);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--cvedge-gold);
    color: var(--cvedge-gold);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.light-mode .hero-bg { opacity: 0.05; }

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.2s;
}

.hero-tagline {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b0c4de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-mode .hero-tagline {
    background: linear-gradient(to right, var(--navy-black), var(--royal-blue));
    -webkit-background-clip: text;
}

html[lang="ar"] .hero-tagline {
    font-size: 3.5rem;
}

.hero-message {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, transparent, rgba(11,42,91,0.05));
}

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

.about-text {
    flex: 1;
}

.about-desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-subdesc {
    font-weight: 600;
    margin-bottom: 15px;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.about-approach {
    font-weight: 600;
    margin-bottom: 15px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: rgba(58, 123, 255, 0.1);
    border: 1px solid rgba(58, 123, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--electric-blue);
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--glow-shadow);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.about-image-wrapper:hover .about-img {
    transform: rotateY(0) rotateX(0);
}

.glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--cvedge-gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

html[dir="rtl"] .service-card::before {
    transform-origin: right;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--electric-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card ul li::before {
    content: '•';
    color: var(--cvedge-gold);
}

/* Process Section */
.process {
    background: var(--bg-secondary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--navy-black);
    border: 2px solid var(--cvedge-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    color: var(--cvedge-gold);
    box-shadow: var(--gold-glow);
}

.light-mode .step-number {
    background: #fff;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-secondary);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: dashed 2px rgba(212, 175, 55, 0.5);
    margin-top: 30px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.premium {
    border: 2px solid var(--cvedge-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(11, 42, 91, 0.5);
}

.light-mode .pricing-card.premium {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--cvedge-gold);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.premium .package-name {
    color: var(--cvedge-gold);
}

.package-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    min-height: 48px;
}

.package-features {
    text-align: right;
    margin-bottom: 30px;
}

html[lang="en"] .package-features {
    text-align: left;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--cvedge-gold);
}

.pricing-card .btn {
    width: 100%;
}

/* Card CTA Buttons Container */
.card-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-cta-buttons .btn {
    width: 100%;
}

/* Contact */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--cvedge-gold);
}

.contact-item:hover {
    color: var(--cvedge-gold);
    transform: translateX(10px);
}
html[lang="en"] .contact-item:hover {
    transform: translateX(10px);
}
html[dir="rtl"] .contact-item:hover {
    transform: translateX(-10px);
}

.contact-cta {
    flex: 1;
}

.whatsapp-box {
    padding: 40px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
}

.whatsapp-huge {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.whatsapp-box h3 {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--cvedge-gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-top {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.scroll-top:hover {
    color: var(--cvedge-gold);
}

/* ============================
   SCROLL ANIMATIONS (one-shot)
   ============================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Base hidden state for all scroll-animated elements */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.from-left {
    transform: translateX(-50px);
}

.reveal.from-right {
    transform: translateX(50px);
}

html[dir="rtl"] .reveal.from-left {
    transform: translateX(50px);
}

html[dir="rtl"] .reveal.from-right {
    transform: translateX(-50px);
}

.reveal.scale-up {
    transform: scale(0.9);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Stagger delay for children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.48s; }

/* Legacy fade-in support */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo & Pricing Additions */
.brand-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.package-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--cvedge-gold);
    font-weight: 700;
    margin-top: 5px;
}

.premium .package-price {
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.light-mode .premium .package-price {
    text-shadow: none;
}

/* Marketing Additions */
.price-local {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: -15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--cvedge-gold);
    color: var(--cvedge-gold);
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.social-proof {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 1rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.mt-4 { margin-top: 2rem; }

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(11, 42, 91, 0.6);
    border-color: var(--cvedge-gold);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(7, 26, 51, 0.95) 0%, transparent 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Section divider */
.section-divider {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cvedge-gold), transparent);
}

/* Pricing section reduced top padding when after another pricing */
.pricing + .pricing {
    padding-top: 40px;
}

/* Academic section icon */
.academic-icon {
    font-size: 2.5rem;
    color: var(--cvedge-gold);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-tagline { font-size: 3rem; }
    html[lang="ar"] .hero-tagline { font-size: 2.5rem; }
    .about-container, .contact-card { flex-direction: column; }
    .process-steps { flex-direction: column; gap: 40px; align-items: center; }
    .step-connector { display: none; }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-tagline { font-size: 2.5rem; }
    html[lang="ar"] .hero-tagline { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-brand p { margin: 15px auto 0; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .contact-card { padding: 30px 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAYMENT METHODS SECTION
   ========================================================================== */
.payment-methods {
    background: linear-gradient(to bottom, rgba(11,42,91,0.05), transparent);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.light-mode .payment-methods {
    background: linear-gradient(to bottom, rgba(11,42,91,0.02), transparent);
}

.payment-icon-header {
    font-size: 2.5rem;
    color: var(--cvedge-gold);
    margin-bottom: 15px;
}

.payment-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Dynamic Pricing Active Card Highlight */
.pricing-card.active-plan-card {
    border: 2px solid var(--cvedge-gold) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3) !important;
    transform: scale(1.03) translateY(-5px);
}

/* Order Summary */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
    box-shadow: var(--glow-shadow);
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.font-bold {
    font-weight: 700;
}

.express-toggle-row {
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    display: block;
}

.express-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
    width: 100%;
}

.express-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
    background: transparent;
    margin-top: 2px;
}

.express-checkbox-container input:checked ~ .checkmark-box {
    background: var(--cvedge-gold);
    border-color: var(--cvedge-gold);
}

.checkmark-box::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.express-checkbox-container input:checked ~ .checkmark-box::after {
    display: block;
}

.express-label-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.express-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.express-price {
    font-size: 0.85rem;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.total-row {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0;
}

.payment-note {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 15px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.03);
}

.payment-note i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Accordion Container */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--cvedge-gold);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.08);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(212, 175, 55, 0.02);
}

.accordion-radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    flex-grow: 1;
}

.accordion-radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: var(--transition);
}

.accordion-radio-label input:checked ~ .radio-custom {
    border-color: var(--cvedge-gold);
}

.radio-custom::after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cvedge-gold);
}

.accordion-radio-label input:checked ~ .radio-custom::after {
    display: block;
}

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

.method-title i {
    font-size: 1.3rem;
}

.accordion-arrow {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.method-details-card {
    padding: 10px 25px 25px 25px;
    border-top: 1px solid var(--border-color);
}

.instruction-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.recipient-name-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.label-inline {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.value-inline {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.btn-copy {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-copy:hover {
    border-color: var(--cvedge-gold);
    color: var(--cvedge-gold);
    background: rgba(212, 175, 55, 0.03);
}

.btn-copy.success {
    border-color: #25D366 !important;
    color: #25D366 !important;
    background: rgba(37, 211, 102, 0.05) !important;
}

.account-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .account-rows {
        grid-template-columns: 1fr;
    }
}

.account-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 18px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-badge {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.account-badge.YER {
    background: rgba(58, 123, 255, 0.1);
    color: var(--electric-blue);
    border: 1px solid rgba(58, 123, 255, 0.2);
}

.account-badge.USD {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.account-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.info-grid-rows {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 5px 20px;
    margin-bottom: 20px;
}

.info-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.info-row-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-value-copy {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 700;
}

.notice-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.15);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #25D366;
    font-size: 0.9rem;
    line-height: 1.45;
}

.notice-wa-icon {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-whatsapp-confirm {
    background: #25D366;
    color: #fff !important;
    border: none;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp-confirm:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-paypal-confirm {
    background: #0070ba;
    color: #fff !important;
    border: none;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-paypal-confirm:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
}

/* ==========================================================================
   VISION, MISSION & ABOUT GRID
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--glow-shadow);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--cvedge-gold);
    box-shadow: var(--gold-glow);
}

.about-card-icon {
    font-size: 2.5rem;
    color: var(--cvedge-gold);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   UNIQUENESS COMPARISON SECTION
   ========================================================================== */
.uniqueness {
    background: linear-gradient(to bottom, transparent, rgba(11,42,91,0.03));
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.light-mode .uniqueness {
    background: linear-gradient(to bottom, transparent, rgba(11,42,91,0.01));
}

.uniqueness-icon-header {
    font-size: 2.5rem;
    color: var(--cvedge-gold);
    margin-bottom: 15px;
}

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .comparison-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--glow-shadow);
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.premium-compare {
    border: 2px solid var(--cvedge-gold);
    box-shadow: 0 10px 40px rgba(11, 42, 91, 0.4);
}

.light-mode .premium-compare {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.compare-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cvedge-gold);
    color: #fff;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.compare-badge.m-muted {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

.compare-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.compare-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.45;
}

.compare-list li i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-icon {
    color: #25D366;
}

.cross-icon {
    color: #FF4B4B;
}

/* ==========================================================================
   CEO HIGHLIGHT BANNER
   ========================================================================== */
.ceo-highlight-banner {
    background: linear-gradient(135deg, rgba(11,42,91,0.9), rgba(7,26,51,0.95));
    border: 2px solid var(--cvedge-gold);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    width: 100%;
}

.light-mode .ceo-highlight-banner {
    background: linear-gradient(135deg, #ffffff, #f1f3f5);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.08);
}

.ceo-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    text-align: center;
}

.ceo-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--cvedge-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--cvedge-gold);
}

.ceo-highlight-banner h3 {
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1.35;
    font-weight: 800;
}

.ceo-highlight-banner p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ceo-highlight-banner .btn {
    margin-top: 10px;
}

.pt-3 { padding-top: 1rem; }
.mt-5 { margin-top: 3rem; }


