* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}

/* ===== NAVIGATION WITH DROPDOWN ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #055924;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-links>li>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #055924;
  transition: width 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  width: 100%;
}

.nav-links>li>a.active {
  color: #055924;
}

/* Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 1rem 1.5rem;
  display: block;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 89, 36, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(5, 89, 36, 0.05);
  color: #055924;
  transform: translateX(8px);
}

.contact-btn {
  background-color: #055924;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #044020;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.services-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(5,89,36,0.05)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
  background-size: cover;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #000000;
  animation: fadeInLeft50 1s ease-out;
}

.text-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #055924;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000;
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #333333;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.9s both;
}

/* Service Navigation Pills */
.service-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 1.2s both;
}

.service-nav-item {
  display: inline-block;
  background: rgba(5, 89, 36, 0.1);
  color: #055924;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(5, 89, 36, 0.2);
}

.service-nav-item:hover {
  background: #055924;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
  animation: slideInUp 1s ease-out 1.5s both;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.4);
}

.hero-image {
  text-align: center;
  animation: fadeInRight50 1s ease-out;
}

.hero-image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  animation: float20 3s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(5, 89, 36, 0.3);
}

/* Quick Stats */
.stats-wrapper {
  grid-column: span 2;
  margin-top: 3 rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 1.8s ease-out 1.8s both;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(5, 89, 36, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(5, 89, 36, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(5, 89, 36, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(5, 89, 36, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #055924;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #333333;
  font-weight: 500;
}

/* ===== BOOKKEEPING SERVICES SECTION ===== */
.bookkeeping-section {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

/* 3D Background Elements */
.bookkeeping-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 89, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float20 8s ease-in-out infinite;
}

.bookkeeping-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 89, 36, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float20 12s ease-in-out infinite reverse;
}

.block-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Service Header */
.service-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.book-service-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.3);
}

.book-service-icon:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 20px 40px rgba(5, 89, 36, 0.4);
}

.service-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content Layout */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.content-left {
  order: 1;
  animation: fadeInLeft30 1s ease-out 0.3s both;
}

.content-right {
  order: 2;
  animation: fadeInRight30 1s ease-out 0.6s both;
}

/* Who Is It For Section */
.who-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 3px solid rgba(5, 89, 36, 0.1);
  border-left: 8px solid #055924;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
}

.who-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 89, 36, 0.2);
}

.who-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #055924 !important;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.who-title::before {
  content: "";
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.who-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(5, 89, 36, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(5, 89, 36, 0.1);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #000000 !important;
}

.who-item:hover {
  background: rgba(5, 89, 36, 0.1);
  transform: translateX(8px);
  border-color: #055924;
}

.who-item::before {
  content: "→";
  color: #055924 !important;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* What We Do Section */
.what-we-do {
  background: #ffffff;
}

.what-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 2rem;
  position: relative;
  padding: 40px;
}

.what-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #055924, #077230);
  border-radius: 2px;
  margin: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 89, 36, 0.02) 0%, rgba(5, 89, 36, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #055924;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-item:hover .service-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-item-content {
  position: relative;
  z-index: 2;
}

.service-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 0.75rem;
}

.service-item-description {
  font-size: 1rem;
  color: #333333 !important;
  line-height: 1.6;
}

/* Service Image */
.service-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 3px solid #055924;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #055924;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 89, 36, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image:hover::before {
  opacity: 1;
}

/* CTA Section */
.service-cta {
  background: rgba(5, 89, 36, 0.05);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  animation: fadeInUp 1.2s ease-out 0.9s both;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.4);
} */

/* ===== TAX SERVICES SECTION ===== */
.tax-section {
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
  color: #ffffff;
}

/* 3D Background Elements */
.tax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 75% 75%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%);
  background-size: 500px 500px;
  animation: backgroundFloat 20s ease-in-out infinite;
}

/* Service Header */
.tax-service-icon {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tax-service-icon:hover {
  transform: scale(1.05) rotate(-5deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Main Content Layout */
/* .service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.content-left {
  order: 1;
  animation: fadeInLeft30 1s ease-out 0.3s both;
}

.content-right {
  order: 2;
  animation: fadeInRight30 1s ease-out 0.6s both;
} */

/* Who Is It For Section */
/* .who-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-left: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
} */

/* .who-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
} */

/* .who-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
} */

/* .who-title::before {
  content: "";
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
} */

/* .who-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
} */

/* .who-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #ffffff;
} */

/* .who-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.4);
}

.who-item::before {
  content: "→";
  color: #ffffff;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
} */

/* What We Do Section */
/* .what-we-do {
  background: transparent;
  border-radius: 20px;
  padding: 20px;
}

.what-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
}

.what-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-item:hover .service-item-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-item-content {
  position: relative;
  z-index: 2;
}

.service-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-item-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Service Image */
/* .service-image {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-image:hover::before {
  opacity: 1;
}  */

/* CTA Section */
/* .service-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  animation: fadeInUp 1.2s ease-out 0.9s both;
} */

/* .cta-button {
  display: inline-block;
  background: #ffffff;
  color: #055924;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background-color: #f8f9fa;
} */

/* ===== COMPANY REGISTRATION SECTION ===== */
.corporate-section {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

/* 3D Background Elements */
.corporate-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float20 8s ease-in-out infinite;
}

.corporate-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float20 12s ease-in-out infinite reverse;
}

/* .block-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
} */

/* Service Header */
/* .service-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
} */

.service-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.3);
}

.service-icon:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 20px 40px rgba(5, 89, 36, 0.4);
}

/* Main Content Layout */
/* .service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.content-left {
  order: 1;
  animation: fadeInLeft30 1s ease-out 0.3s both;
}

.content-right {
  order: 2;
  animation: fadeInRight30 1s ease-out 0.6s both;
} */

/* Who Is It For Section */
/* .who-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 3px solid rgba(5, 89, 36, 0.1);
  border-left: 8px solid #055924;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
}

.who-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 89, 36, 0.2);
}

.who-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #055924 !important;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.who-title::before {
  content: "";
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.who-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(5, 89, 36, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(5, 89, 36, 0.1);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #000000 !important;
}

.who-item:hover {
  background: rgba(5, 89, 36, 0.1);
  transform: translateX(8px);
  border-color: #055924;
}

.who-item::before {
  content: "→";
  color: #055924 !important;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
} */

/* What We Do Section */
/* .what-we-do {
  background: #ffffff;
}

.what-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 2rem;
  position: relative;
}

.what-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #055924, #077230);
  border-radius: 2px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.02) 0%,
      rgba(5, 89, 36, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #055924;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-item:hover .service-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-item-content {
  position: relative;
  z-index: 2;
}

.service-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 0.75rem;
}

.service-item-description {
  font-size: 1rem;
  color: #333333 !important;
  line-height: 1.6;
} */

/* Service Image */
/* .service-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 3px solid #055924;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #055924 !important;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.05) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image:hover::before {
  opacity: 1;
} */

/* CTA Section */
/* .service-cta {
  background: rgba(5, 89, 36, 0.05);
  border: 2px solid rgba(5, 89, 36, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  animation: fadeInUp 1.2s ease-out 0.9s both;
} */

/* .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.4);
} */

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* 3D Background Elements */
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.08)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  background-size: cover;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float30 8s ease-in-out infinite;
}

/* .block-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
} */

/* Main CTA Container */
.main-cta-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  animation: scaleInUp 0.8s ease-out;
}

.main-cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.1) 100%); */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.main-cta-container:hover {
  /* transform: translateY(-8px) scale(1.02); */
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4), 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.main-cta-container:hover::before {
  opacity: 1;
}

/* Button Container */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.cta-button-primary {
  display: inline-block;
  background: #ffffff;
  color: #055924;
  padding: 1.3rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.cta-button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 89, 36, 0.1) 0%, transparent 50%);
  border-radius: 50px;
}

.cta-button-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background-color: #f8f9fa;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 1.3rem 3.5rem;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button-secondary:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
}

.cta-button-secondary:hover::before {
  left: 0;
}

/* Service Quick Links */
.service-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.quick-link-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}

.quick-link-card:nth-child(1) {
  animation-delay: 0.8s;
}

.quick-link-card:nth-child(2) {
  animation-delay: 1s;
}

.quick-link-card:nth-child(3) {
  animation-delay: 1.2s;
}

.quick-link-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quick-link-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.quick-link-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.quick-link-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.quick-link-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.quick-link-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Info Footer */
.contact-footer {
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.4s ease-out 1.4s both;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-btn .icon-label {
  display: none;
}

/* Footer */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 200px;
  padding: 60px 32px;
}

.logo-footer {
  font-size: 1.5rem;
  font-weight: 700;
  color: #055924;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

footer ul li a {
  text-decoration: none;
  color: #055924;
}

footer ul li a:hover {
  text-decoration: underline;
}

.copyright {
  padding: 19px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Go to Top Button */
#go-to-top {
  position: fixed;
  bottom: 30px;
  right: 95px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

#go-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#go-to-top img {
  width: 24px;
  height: 24px;
}

/* WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

#whatsapp-button img {
  width: 28px;
  height: 28px;
}

#whatsapp-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Animations */
@keyframes fadeInLeft50 {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft30 {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight50 {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight30 {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float20 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes float30 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

@keyframes backgroundFloat {

  0%,
  100% {
    background-position: 0% 0%, 100% 100%;
  }

  50% {
    background-position: 100% 100%, 0% 0%;
  }
}

@keyframes scaleInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    left: 0;
  }

  .footer-container {
    margin: 0 50px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #05592414;
    border: none;
    box-shadow: none;
    margin-top: 0.5rem;
  }

  .dropdown-toggle {
    width: fit-content;
    margin: 0 auto;
  }

  .dropdown-toggle::after {
    margin-left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
  }

  /* .hero-image-placeholder {
    height: 350px;
  } */

  .service-nav {
    justify-content: center;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bookkeeping-section {
    padding: 4rem 0;
  }

  .block-inner {
    padding: 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-header {
    margin-bottom: 3rem;
  }

  .book-service-icon {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
  }

  .service-title {
    font-size: 2.2rem;
  }

  .service-subtitle {
    font-size: 1.1rem;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-left {
    order: 1;
  }

  .content-right {
    order: 2;
  }

  .who-section {
    padding: 2rem 1.5rem;
  }

  .who-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .who-title::before {
    width: 35px;
    height: 35px;
  }

  .who-item {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  .what-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .what-title::after {
    width: 50px;
    height: 4px;
    left: calc(50% - 100px);
  }

  .service-item {
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .service-item-icon {
    width: 50px;
    height: 50px;
    font-size: 0.7rem;
    align-self: center;
  }

  .service-item-title {
    font-size: 1.2rem;
  }

  .service-item-description {
    font-size: 0.95rem;
  }

  .service-image {
    height: 300px;
    font-size: 1rem;
  }

  .service-cta {
    padding: 2.5rem 1.5rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  .tax-section {
    padding: 4rem 0;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
  }

  .who-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .who-title::before {
    width: 35px;
    height: 35px;
  }

  .who-item {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  .what-title {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  .corporate-section {
    padding: 4rem 0;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
  }

  .who-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .who-title::before {
    width: 35px;
    height: 35px;
  }

  .who-item {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  .what-title {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  .final-cta-section {
    padding: 4rem 0;
  }

  .main-cta-container {
    padding: 3rem 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button-primary,
  .cta-button-secondary {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 320px;
  }

  .service-quick-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quick-link-card {
    padding: 1.5rem 1rem;
  }

  .quick-link-icon {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
  }

  .contact-details {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .logo-text {
    display: none;
  }

  .contact-btn .text-label {
    display: none;
  }

  .contact-btn .icon-label {
    display: flex;
    font-size: 1.2rem;
    color: white;
  }

  .services-hero {
    display: block !important;
    padding-top: 60px;
  }

  .services-hero>.hero-container {
    display: block !important;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-content {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-image-placeholder {
    height: 350px;
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }

  footer ul {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  /* .hero-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
  } */

  .hero-image-placeholder {
    height: 280px;
    font-size: 1rem;
  }

  .service-nav-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .bookkeeping-section {
    padding: 3rem 0;
  }

  .service-title {
    font-size: 1.8rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .who-section {
    padding: 1.5rem 1rem;
  }

  .who-title {
    font-size: 1.3rem;
  }

  .who-item {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .service-item {
    padding: 1.2rem;
  }

  .service-item-icon {
    width: 45px;
    height: 45px;
    font-size: 0.6rem;
  }

  .service-item-title {
    font-size: 1.1rem;
  }

  .service-item-description {
    font-size: 0.9rem;
  }

  .service-image {
    height: 250px;
    font-size: 0.9rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .tax-section {
    padding: 3rem 0;
  }

  .who-title {
    font-size: 1.3rem;
  }

  .who-item {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .corporate-section {
    padding: 3rem 0;
  }

  .who-title {
    font-size: 1.3rem;
  }

  .who-item {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .final-cta-section {
    padding: 3rem 0;
  }

  .main-cta-container {
    padding: 2.5rem 1.5rem;
  }

  .cta-button-primary,
  .cta-button-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .quick-link-card {
    padding: 1.2rem 0.8rem;
  }

  .quick-link-icon {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }

  .contact-footer {
    padding: 2rem 1.5rem;
  }

  .contact-title {
    font-size: 1.3rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  footer ul {
    margin-top: 24px;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .service-title {
    font-size: 1.6rem;
  }

  .who-section {
    padding: 1.2rem 0.8rem;
  }

  .service-item {
    padding: 1rem;
  }

  .service-cta {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .main-cta-container {
    padding: 2rem 1rem;
  }

  .contact-footer {
    padding: 1.5rem 1rem;
  }
}