:root {
  --primary: #0b66d6; /* Logo royal blue */
  --primary-light: #0f84ff; /* lighter blue */
  --secondary: #ff8c00; /* logo orange */
  --secondary-hover: #ffb347; /* lighter orange */
  --accent: #00b4ff; /* cyan highlight */
  --bg-color: #ffffff;
  --bg-gray: #f8fafc;
  --text-main: #24314a; /* dark slate for better contrast */
  --text-muted: #6b7b95;
  --text-light: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(11, 102, 214, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Counter Display */
.hero-counter {
  margin: 1.5rem 0;
}

.counter-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(15, 45, 69, 0.12);
  backdrop-filter: blur(16px);
  color: #f8fafc;
  max-width: 260px;
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--secondary);
}

.counter-card p {
  margin-top: 0.5rem;
  color: rgba(248, 250, 252, 0.9);
  font-size: 1rem;
  text-align: center;
}

/* Typography Enhancements */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header & Nav */
header {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0;
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 80px;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

header .logo-img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
  width: 100%;
}

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

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(15, 45, 69, 0.2);
}

.btn-nav:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 45, 69, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('./assets/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11,102,214,0.92) 0%, rgba(0,180,255,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-text-wrapper {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(200, 162, 74, 0.2);
  color: var(--secondary);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 162, 74, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

/* Buttons */
.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(200, 162, 74, 0.4);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(200, 162, 74, 0.5);
}

.btn-block {
  width: 100%;
}

/* Sections */
section {
  padding: 6rem 0;
}

.gray-bg {
  background-color: var(--bg-gray);
}

/* About Section */
.about-section {
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.custom-list {
  list-style: none;
  margin-top: 1.5rem;
}

.custom-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.custom-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  padding: 2.5rem;
}

.glass-panel.dark {
  background: linear-gradient(145deg, var(--primary), #163f5f);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tax-info-card h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list span {
  color: var(--text-muted);
}

/* Services Section */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--primary) 0%, #163f5f 100%);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover h3,
.service-card:hover p {
  color: white;
}

.service-card:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--bg-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-card p {
  color: var(--text-muted);
  transition: var(--transition);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem;
}

.contact-info h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  color: var(--secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.detail-value, .detail-value a {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.detail-value a:hover {
  color: var(--secondary);
}

.form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.feedback-message {
  margin-bottom: 1rem;
  font-size: 0.96rem;
  line-height: 1.4;
}

.feedback-message.sending {
  color: #1f7a9d;
}

.feedback-message.success {
  color: #0f6d29;
}

.feedback-message.error {
  color: #a11d2b;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: #f8fafc;
  transition: var(--transition);
  outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(15, 45, 69, 0.1);
}

.input-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  transform-origin: left top;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-2.2rem) scale(0.85);
  color: var(--primary);
  font-weight: 600;
}

/* Footer */
footer {
  background: #051420;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  height: 220px;
  width: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* In a real app, add a hamburger menu */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    padding: 2rem;
  }
  
  .form {
    padding: 2rem 1.5rem;
  }
}
