/* ============================================
   TGC Services Website - Main Stylesheet
   Professional Tax Advisory & Business Setup
   ============================================ */

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

:root {
  --primary-color: #1e3a8a;
  --primary-light: #3b82f6;
  --secondary-color: #0f172a;
  --accent-color: #2563eb;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
}

html {
  scroll-behavior: smooth;
  /* Prevent white flash at top of page on mobile — hero is dark so background should match */
  background-color: var(--secondary-color);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  /* Transparent so the hero image shows through — merged header/hero look */
  background: transparent;
  color: white;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}

/* When scrolled past hero, header becomes solid navy */
header.scrolled {
  position: fixed;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-top {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-content {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

.header-top-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-top-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-top-item a:hover {
  color: var(--primary-light);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 85px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--primary-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
  left: 0;
  border-radius: 0 0 8px 8px;
}

.dropdown-content a {
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--accent-color);
  padding-left: 2rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.cta-button {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-left: 1rem;
}

.cta-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  /* Dubai skyline — header sits on top (transparent), creating one seamless merged section */
  background:
    linear-gradient(
      160deg,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(30, 58, 138, 0.78) 100%
    ),
    url('/assets/images/dubai-skyline.jpg') center center / cover no-repeat;
  color: white;
  padding: 10rem 2rem 6rem; /* extra top padding so content clears the transparent header */
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pages subfolder — same absolute path works everywhere */
.hero-page {
  background:
    linear-gradient(
      160deg,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(30, 58, 138, 0.78) 100%
    ),
    url('/assets/images/dubai-skyline.jpg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
}

/* ============================================
   SETUP TYPE CARDS (Offshore / Mainland / Freezone)
   ============================================ */

.setup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}

.setup-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}

.setup-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.setup-card:hover .setup-card-bg {
  transform: scale(1.08);
}

.setup-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.35) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.setup-card:hover .setup-card-overlay {
  background: linear-gradient(to top, rgba(30,58,138,0.92) 0%, rgba(30,58,138,0.65) 100%);
}

.setup-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
}

.setup-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.setup-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease 0.1s, max-height 0.4s ease;
  color: rgba(255,255,255,0.92);
}

.setup-card:hover .setup-card-desc {
  opacity: 1;
  max-height: 200px;
}

.setup-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

@media (max-width: 768px) {
  .setup-cards {
    grid-template-columns: 1fr;
  }
  .setup-card {
    height: 260px;
  }
  /* On mobile, touching/focusing a card reveals the description */
  .setup-card.touched .setup-card-desc,
  .setup-card:focus-within .setup-card-desc {
    opacity: 1;
    max-height: 200px;
  }
  .setup-card.touched .setup-card-overlay,
  .setup-card:focus-within .setup-card-overlay {
    background: linear-gradient(to top, rgba(30,58,138,0.92) 0%, rgba(30,58,138,0.65) 100%);
  }
  .setup-card.touched .setup-card-bg,
  .setup-card:focus-within .setup-card-bg {
    transform: scale(1.08);
  }
}

/* ============================================
   SECTIONS & CONTENT
   ============================================ */

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

section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

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

.card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */

.features-section {
  background-color: var(--bg-light);
}

/* Slightly darker blue background for Our Services section */
.services-section {
  background-color: #cfe0f5;
  padding: 4rem 2rem;
}

/* Why UAE section — slightly lighter blue, same sizing as services section */
.why-uae-section {
  background-color: #eef4fd;
  padding: 4rem 2rem;
}

/* CTA section with image background */
.cta-image-section {
  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.80) 0%,
      rgba(30, 58, 138, 0.72) 100%
    ),
    url('/assets/images/dubai-marina.jpg') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-image-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-image-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-content p {
  color: var(--text-light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  padding: 3rem;
  border-radius: 10px;
  margin-top: 3rem;
  text-align: center;
}

.founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.founder-info p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-section {
  background-color: var(--bg-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-item label {
  margin: 0;
  cursor: pointer;
}

.form-submit {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   MOBILE HEADER — HAMBURGER & HIDE ON SCROLL
   ============================================ */

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: background 0.3s ease;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Animate hamburger → X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header hide-on-scroll — applied only on mobile via JS class */
header.header-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  /* Header floats transparently over the hero — fully integrated look on mobile */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, background;
  }

  /* Solid background on mobile once scrolled past hero */
  header.scrolled {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
  }

  /* No body padding — hero pulls up behind the transparent fixed header */
  body {
    padding-top: 0;
  }

  /* Hero stretches to the very top of the screen.
     Negative margin-top pulls it up behind the fixed header.
     Extra top padding keeps text below the header. */
  .hero, .hero-page {
    margin-top: -64px;
    padding-top: calc(64px + 3rem);
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    min-height: 100svh;
    min-height: 100vh;
  }

  /* Show hamburger, hide full nav by default */
  .hamburger {
    display: flex;
  }

  /* Hide the top info bar on mobile to save space */
  .header-top {
    display: none;
  }

  /* Compact header row: logo left, hamburger right */
  .header-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    gap: 0;
  }

  /* Mobile nav drawer — slides down from header */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
    z-index: 999;
  }

  nav.nav-open {
    max-height: 600px;
    opacity: 1;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1rem;
  }

  nav li {
    width: 100%;
  }

  nav a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  nav a:hover {
    background-color: rgba(255, 255, 255, 0.12);
    padding-left: 2rem;
  }

  /* Dropdown inside mobile nav */
  .dropdown-content {
    position: static;
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border-radius: 0;
    min-width: 100%;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding-left: 2.5rem;
    font-size: 0.95rem;
  }

  /* CTA button in mobile nav */
  .cta-button {
    margin: 0.75rem 1.25rem;
    display: block;
    text-align: center;
    border-radius: 6px;
  }

  /* Content layout adjustments */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card {
    padding: 1.5rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-light {
  color: var(--text-light);
}

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

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.p-2 {
  padding: 2rem;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

/* ============================================
   BUSINESS SETUP PAGE SPECIFIC
   ============================================ */

.package-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.package-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  transform: translateY(-5px);
}

.package-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.package-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.package-features li {
  padding: 0.75rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.package-features li:before {
  content: '✓';
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: white;
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.benefit-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   SITEMAP PAGE SPECIFIC
   ============================================ */

.sitemap-list {
  max-width: 800px;
  margin: 2rem auto;
}

.sitemap-section {
  margin-bottom: 2rem;
}

.sitemap-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.sitemap-section ul {
  list-style: none;
  padding-left: 1rem;
}

.sitemap-section li {
  margin-bottom: 0.75rem;
}

.sitemap-section a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sitemap-section a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  background-color: var(--bg-light);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
  margin: 0 0.5rem;
}
