[file name]: assets/css/custom.css
[file content begin]
/* 
 * HK RiskResil Consults Custom Styles
 * Professional Risk Management Consulting Theme
 */

:root {
  /* Primary Brand Colors */
  --riskresil-blue: #0a2c5d;
  --riskresil-dark-blue: #051c3d;
  --riskresil-light-blue: #2a6fb7;
  --riskresil-accent: #00a8a8;
  --riskresil-accent-light: #4dc9c9;
  --riskresil-gray: #4a5568;
  --riskresil-light-gray: #f8fafc;
  
  /* Status Colors */
  --riskresil-success: #38a169;
  --riskresil-warning: #d69e2e;
  --riskresil-danger: #e53e3e;
  --riskresil-info: #3182ce;
}

/* Brand Overrides */
.header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(10, 44, 93, 0.08);
}

.logo .sitename {
  color: var(--riskresil-blue);
  font-weight: 700;
}

.logo span {
  color: var(--riskresil-accent);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--riskresil-light-gray) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 44, 93, 0.03) 0%, rgba(0, 168, 168, 0.03) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-headline {
  color: var(--riskresil-dark-blue);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-tag .tag-text {
  background: var(--riskresil-accent);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
}

.hero-tag .tag-dot {
  background: var(--riskresil-blue);
}

/* Stats Cards */
.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 44, 93, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(10, 44, 93, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(10, 44, 93, 0.12);
}

.stat-card-primary {
  background: linear-gradient(135deg, var(--riskresil-blue) 0%, var(--riskresil-light-blue) 100%);
  color: white;
}

.stat-card-accent {
  background: linear-gradient(135deg, var(--riskresil-accent) 0%, var(--riskresil-accent-light) 100%);
  color: white;
}

.stat-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-card-primary .stat-icon-wrap,
.stat-card-accent .stat-icon-wrap {
  background: rgba(255, 255, 255, 0.25);
}

.stat-icon-wrap i {
  font-size: 1.8rem;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(10, 44, 93, 0.08);
  border: 1px solid rgba(10, 44, 93, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(10, 44, 93, 0.12);
  border-color: var(--riskresil-accent);
}

.service-card.featured {
  border: 2px solid var(--riskresil-accent);
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--riskresil-accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--riskresil-light-blue) 0%, var(--riskresil-accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.service-card h3 {
  color: var(--riskresil-dark-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--riskresil-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--riskresil-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.8rem;
  color: var(--riskresil-light-blue);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--riskresil-accent), var(--riskresil-light-blue));
}

.process-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 30px;
}

.process-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid var(--riskresil-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--riskresil-accent);
  font-size: 1rem;
}

.process-content h4 {
  color: var(--riskresil-dark-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-content p {
  color: var(--riskresil-gray);
  margin: 0;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 44, 93, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(10, 44, 93, 0.12);
}

.case-study-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-img img {
  transform: scale(1.05);
}

.industry-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--riskresil-accent);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-content h4 {
  color: var(--riskresil-dark-blue);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.case-study-content p {
  color: var(--riskresil-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.results span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--riskresil-success);
  font-weight: 500;
}

.read-more {
  color: var(--riskresil-accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 44, 93, 0.08);
  border: 1px solid rgba(10, 44, 93, 0.08);
  height: 100%;
}

.testimonial-text {
  color: var(--riskresil-gray);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--riskresil-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.author-details h5 {
  color: var(--riskresil-dark-blue);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.author-details span {
  color: var(--riskresil-gray);
  font-size: 0.9rem;
}

.stars {
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.avatar-stack {
  display: flex;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  margin-right: -15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar-count {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--riskresil-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 168, 168, 0.1);
  color: var(--riskresil-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--riskresil-blue) 0%, var(--riskresil-dark-blue) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-primary {
  background: var(--riskresil-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-cta-primary:hover {
  background: var(--riskresil-accent-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 168, 0.3);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
}

/* Buttons */
.btn-getstarted {
  background: var(--riskresil-accent);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-getstarted:hover {
  background: var(--riskresil-accent-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 168, 168, 0.3);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--riskresil-accent) 0%, var(--riskresil-accent-light) 100%);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 168, 0.3);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--riskresil-accent);
  color: var(--riskresil-accent);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--riskresil-accent);
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--riskresil-dark-blue);
  color: rgba(255, 255, 255, 0.8);
}

.footer .logo .sitename {
  color: white;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--riskresil-accent-light);
  padding-left: 5px;
}

.footer-links a::before {
  content: '▸';
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--riskresil-accent);
  transform: translateY(-3px);
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  width: 100%;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--riskresil-accent);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: var(--riskresil-accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--riskresil-accent-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .process-timeline {
    padding-left: 0;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-item {
    padding-left: 0;
    margin-bottom: 2rem;
  }
  
  .process-number {
    position: relative;
    left: 0;
    margin-bottom: 1rem;
  }
  
  .legal-links {
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
}
[file content end]