:root {
    --primary: #1e5aa8;
    --primary-dark: #0d3b6e;
    --accent: #f97316;
    --navy: #0a1628;
    --light-bg: #f4f7fb;
}

* { font-family: 'Inter', sans-serif; }

body { color: #334155; overflow-x: hidden; }

.brand-primary { color: var(--primary); }
.brand-accent { color: var(--accent); }
.brand-tagline { font-size: 0.65rem; color: #64748b; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

.topbar { background: var(--navy); color: #cbd5e1; }
.topbar-link { color: #e2e8f0; text-decoration: none; font-size: 0.875rem; }
.topbar-link:hover { color: var(--accent); }

.site-header { z-index: 1030; }
.navbar-brand { line-height: 1.1; font-size: 1.5rem; }
.nav-link { font-weight: 500; color: #1e293b !important; }
.nav-link:hover { color: var(--primary) !important; }

.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: #ea580c; border-color: #ea580c; color: #fff; }
.btn-outline-light:hover { background: var(--accent); border-color: var(--accent); }

.mega-menu { min-width: 900px; border-radius: 12px; }
.mega-title { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.75rem; }
.mega-links li { margin-bottom: 0.35rem; }
.mega-links a { color: #64748b; text-decoration: none; font-size: 0.85rem; transition: 0.2s; }
.mega-links a:hover { color: var(--primary); padding-left: 4px; }

.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.min-vh-75 { min-height: 75vh; }
.hero-badge {
    display: inline-block;
    background: rgba(249,115,22,0.2);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.hero-title { font-size: 2.75rem; font-weight: 800; line-height: 1.2; }
.hero-subtitle { font-size: 1.1rem; opacity: 0.85; max-width: 540px; }
.hero-image { border: 3px solid rgba(255,255,255,0.1); }

.section-title { font-weight: 800; color: var(--navy); font-size: 2rem; }
.section-subtitle { color: #64748b; max-width: 600px; margin: 0 auto; }

.service-card, .resource-card, .testimonial-card, .blog-card, .package-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}
.service-card:hover, .resource-card:hover, .testimonial-card:hover, .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(30,90,168,0.15);
    border-color: var(--primary);
}
.service-icon, .resource-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; margin-bottom: 1rem;
}
.service-card h5 { font-weight: 700; color: var(--navy); font-size: 1rem; }
.price-tag { display: inline-block; background: #eff6ff; color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-top: 0.5rem; }

.package-card.featured { border: 2px solid var(--accent); transform: scale(1.03); }
.package-badge { position: absolute; top: -12px; right: 20px; background: var(--accent); color: #fff; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.package-price .current { font-size: 2rem; font-weight: 800; color: var(--navy); }
.package-price .original { text-decoration: line-through; color: #94a3b8; margin-left: 0.5rem; font-size: 0.9rem; }
.package-features { list-style: none; padding: 0; margin: 1rem 0; }
.package-features li { padding: 0.35rem 0; font-size: 0.9rem; color: #64748b; }

.why-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.why-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: #eff6ff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem;
}

.bg-navy { background: var(--navy) !important; }
.process-number {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; margin: 0 auto;
}

.stats-section { background: var(--light-bg); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-label { color: #64748b; font-weight: 500; }

.testimonial-text { font-style: italic; color: #475569; font-size: 0.95rem; }
.blog-image { width: 100%; height: 180px; object-fit: cover; border-radius: 12px 12px 0 0; }
.blog-card { padding: 0; overflow: hidden; }

.site-footer { background: var(--navy); }
.footer-title { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; line-height: 2; }
.footer-links a:hover { color: var(--accent); }
.social-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.2s;
}
.social-icon:hover { background: var(--accent); color: #fff; }

.footer-credit {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}
.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit a:hover { color: var(--accent); }

.enquiry-card { border-radius: 16px; }

.content-body p { line-height: 1.8; }

@media (max-width: 991px) {
    .hero-title { font-size: 2rem; }
    .mega-menu { min-width: auto; }
    .package-card.featured { transform: none; }
}

@media (max-width: 767px) {
    .process-step { margin-bottom: 1rem; }
    .stat-number { font-size: 1.75rem; }
}
