@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-light: #f3f6f9;
  --bg-dark: #0f2e5a;
  --bg-card: #ffffff;
  --bg-card-dark: #153866;
  --primary: #00bac7;
  --primary-hover: #009aa4;
  --primary-glow: rgba(0, 186, 199, 0.1);
  --accent: #e58f1e;
  --text-main: #2b3a4a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(255, 255, 255, 0.06);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--bg-dark);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 186, 199, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Layout Helpers */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.uppercase-tag {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

/* Header & Navigation */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  gap: 24px;
}
.top-bar-right {
  display: flex;
  gap: 16px;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg-dark);
}
.logo svg {
  fill: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  color: var(--text-main);
}
.nav-link:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 12px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-link {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.dropdown-link:hover {
  background: rgba(0, 186, 199, 0.1);
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bg-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(0, 186, 199, 0.3);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 186, 199, 0.05);
}

/* Sections Global */
section {
  padding: 100px 0;
  position: relative;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(15, 46, 90, 0.6), rgba(15, 46, 90, 0.7)), url('images/img_01_accounting.webp') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 180px 0 140px;
}
.hero-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 48px;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.hero-card h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--bg-dark);
  margin-bottom: 16px;
}
.hero-card h1 span {
  color: var(--primary);
}
.hero-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* About Us Section */
.about {
  padding: 80px 0;
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.about-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.about-right-img {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.about-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specializations Section */
.specializations {
  background: rgba(0, 186, 199, 0.01);
  border-top: 1px solid var(--border-color);
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 12px;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 186, 199, 0.15);
}
.spec-icon-box {
  background: var(--primary-glow);
  color: var(--primary);
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.spec-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.spec-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Features Block */
.features {
  border-top: 1px solid var(--border-color);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.feat-icon {
  background: var(--primary-glow);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feat-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.feat-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Achievements (Stats Banner) */
.achievements {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.achieve-icon-box {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.achieve-val {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.achieve-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Advisors (Meet Our Experts) */
.advisors {
  border-top: 1px solid var(--border-color);
}
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.advisor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.advisor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 186, 199, 0.15);
}
.advisor-img-box {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.advisor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisor-body {
  padding: 24px;
  text-align: center;
}
.advisor-body h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.advisor-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.advisor-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.advisor-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.advisor-social-link:hover {
  background: var(--primary);
  color: white;
}

/* Success Stories (Case Studies) */
.success-stories {
  background: rgba(0, 186, 199, 0.01);
  border-top: 1px solid var(--border-color);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 186, 199, 0.15);
}
.story-img-box {
  height: 200px;
  overflow: hidden;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-body {
  padding: 24px;
}
.story-body h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.story-client {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.story-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.story-bullets li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.story-bullets li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* Our Professional Services */
.services {
  border-top: 1px solid var(--border-color);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 186, 199, 0.15);
}
.service-icon-box {
  background: var(--primary-glow);
  color: var(--primary);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Technologies We Use */
.tech-slider {
  background: var(--bg-dark);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.tech-logo-row {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.tech-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Industries We Serve */
.industries {
  border-top: 1px solid var(--border-color);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 186, 199, 0.15);
}
.industry-icon {
  background: var(--primary-glow);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.industry-card h3 {
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  background: rgba(0, 186, 199, 0.01);
  border-top: 1px solid var(--border-color);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}
.testi-avatar-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--primary);
}
.testi-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-body h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.testi-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.testi-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Pricing Plans */
.pricing {
  border-top: 1px solid var(--border-color);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 186, 199, 0.2);
}
.price-card.featured {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.price-card.featured h3, .price-card.featured .price-num, .price-card.featured .price-card-features li {
  color: white;
}
.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.price-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.price-num span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-card.featured .price-num span {
  color: rgba(255, 255, 255, 0.7);
}
.price-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
.price-card.featured .price-card-features {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.price-card-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-card-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}
.price-card.featured .price-card-features li::before {
  color: white;
}

/* Free Consultation Callback */
.free-consult {
  background: linear-gradient(rgba(15, 46, 90, 0.9), rgba(15, 46, 90, 0.95)), url('images/img_01_accounting.webp') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 0;
  border-top: 1px solid var(--border-dark);
}
.consult-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.consult-left h2 {
  font-size: 3rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}
.consult-left p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}
.consult-form-col {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.consult-form-col h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--bg-dark);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 4px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: white;
}

/* FAQ Section */
.faq {
  border-top: 1px solid var(--border-color);
}
.faq-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.faq-img-box {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.faq-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 1.05rem;
}
.faq-toggle-icon {
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 200px;
}

/* How It Works (Process) */
.process {
  background: rgba(0, 186, 199, 0.01);
  border-top: 1px solid var(--border-color);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.process-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  margin: 0 auto 20px;
}
.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.process-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Latest Insights Blogs */
.blogs {
  border-top: 1px solid var(--border-color);
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-img-wrapper {
  height: 220px;
  overflow: hidden;
}
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-content {
  padding: 24px;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.card-action-link {
  font-weight: 700;
  color: var(--primary);
}

/* Footer Section */
footer {
  background: var(--bg-dark);
  color: white;
  border-top: 1px solid var(--border-dark);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 300px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
}

/* Secondary Page Banner */
.page-banner {
  padding: 120px 0 60px;
  background: linear-gradient(rgba(15, 46, 90, 0.8), rgba(15, 46, 90, 0.95)), url('images/img_01_accounting.webp') no-repeat center center;
  background-size: cover;
  text-align: center;
  color: white;
  border-bottom: 1px solid var(--border-dark);
}
.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: white;
}
.breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs span {
  color: var(--primary);
}

/* Shop Layout Page */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 0;
}
.shop-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget {
  margin-bottom: 30px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.shop-search {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 20px;
}
.shop-search input {
  width: 100%;
  font-size: 0.9rem;
  color: var(--text-main);
}
.shop-search span {
  color: var(--text-muted);
}
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.category-item:hover, .category-item.active {
  color: var(--primary);
}
.shop-main-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.results-count {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.shop-sort select {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Booking Drawer */
.booking-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.booking-drawer.open {
  right: 0;
}
.booking-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}
.booking-close:hover {
  color: var(--bg-dark);
}
.booking-content-container {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
}
.booking-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}
.booking-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.booking-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Product Detail Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 80px 0;
}
.product-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.product-info-col {
  display: flex;
  flex-direction: column;
}
.product-detail-badge {
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.product-detail-title {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-detail-price {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-title);
}
.product-detail-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.product-meta-specs {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-row {
  display: flex;
  font-size: 0.95rem;
}
.spec-label {
  width: 140px;
  font-weight: 600;
  color: var(--text-muted);
}
.spec-val {
  color: var(--text-main);
}
.purchase-controls {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Blog list page */
.blog-layout {
  padding: 60px 0;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.page-num:hover, .page-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Blog Detail Page */
.blog-detail-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.blog-detail-header {
  text-align: center;
  margin-bottom: 40px;
}
.blog-detail-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.blog-detail-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.blog-detail-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}
.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
}
.blog-content p {
  margin-bottom: 24px;
}
.blog-content h2, .blog-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin: 40px 0;
}

/* Contact page styling */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}
.contact-info-col h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-info-col p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-detail-content h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.contact-detail-content p {
  margin-bottom: 0;
}

.contact-form-col {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-col h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 4px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: white;
}

/* Accordion FAQs Section */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}
.faq-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: var(--bg-dark);
  color: white;
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  transform: translateX(-120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show {
  transform: translateX(0);
}

/* Image Fail Safe placeholder styling */
.img-fallback-svg {
  background: var(--bg-dark);
  fill: rgba(255, 255, 255, 0.35);
  display: block;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-card {
    max-width: 100%;
  }
  .specs-grid, .features-grid, .advisors-grid, .stories-grid, .services-grid, .industries-grid, .testi-grid, .pricing-grid, .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-wrapper, .consult-wrapper, .faq-wrapper, .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-dark);
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-container {
    height: 80px;
  }
  .specs-grid, .features-grid, .advisors-grid, .stories-grid, .services-grid, .industries-grid, .testi-grid, .pricing-grid, .blogs-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .booking-drawer {
    width: 100%;
    right: -100%;
  }
}
