/* Techies Geeks - Premium Design System */

/* ===== VARIABLES ===== */
:root {
  /* Logo-based Color Palette */
  --primary-blue: #022d62;
  --secondary-blue: #013456;
  --accent-blue: #024078;
  --accent-red: #ef3139;
  --accent-red-light: #f5475e;
  --accent-red-dark: #d92930;
  --success-green: #10B981;
  --warning-orange: #F59E0B;
  --error-red: #EF4444;
  --dark-gray: #1F2937;
  --medium-gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #022d62 0%, #013456 100%);
  --gradient-accent: linear-gradient(135deg, #ef3139 0%, #d92930 100%);
  --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  --shadow-light: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-medium: 0 4px 6px rgba(0,0,0,0.15);
  --shadow-strong: 0 10px 25px rgba(0,0,0,0.2);
  --shadow-cta: 0 4px 14px 0 rgba(2, 45, 98, 0.39);
  --shadow-accent: 0 4px 14px 0 rgba(239, 49, 57, 0.39);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
}

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-blue);
  transform: translateY(-1px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 45, 98, 0.5);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background: var(--accent-red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 49, 57, 0.5);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

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

.btn-success {
  background: var(--success-green);
  color: var(--white);
}

.btn-success:hover {
  background: #059669;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
  min-height: 56px;
}

.btn-round {
  border-radius: 8px;
}

/* ===== NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  margin: 0 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.nav-link.active {
  color: var(--primary-blue) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-medium);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
}

.dropdown-item {
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.tg-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tg-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.tg-hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 27px;
}

.tg-hero-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.tg-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.tg-hero-subtitle {
  font-size: 20px;
  color: var(--medium-gray);
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out;
}

.tg-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1.2s ease-out;
}

.tg-hero-trust {
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--medium-gray);
  animation: fadeInUp 1.4s ease-out;
}

@media (max-width: 768px) {
  .tg-hero {
    padding: 100px 0 40px;
  }
  
  .tg-hero-title {
    font-size: 36px;
  }
  
  .tg-hero-subtitle {
    font-size: 18px;
  }
  
  .tg-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .tg-hero-trust {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== CLIENT LOGOS ===== */
.tg-clients-bar {
  background: var(--dark-gray);
  padding: 24px 0;
}

.tg-client-logo {
  max-height: 40px;
  max-width: 120px;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: none;
}

.tg-client-logo:hover {
  filter: grayscale(80%);
  opacity: 0.7;
}

/* ===== STATS SECTION ===== */
.tg-stats-section {
  padding: 60px 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.tg-stat-item {
  padding: 20px;
}

.tg-stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.tg-stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

/* ===== SERVICES ===== */
.tg-service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tg-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tg-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-blue);
}

.tg-service-card:hover::before {
  transform: scaleX(1);
}

.tg-service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--white);
  transition: transform 0.3s ease;
}

.tg-service-card:hover .tg-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.tg-service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.tg-service-link {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.tg-service-link:hover {
  color: var(--secondary-blue);
  transform: translateX(4px);
}

/* ===== TRUST LIST ===== */
.tg-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tg-trust-item:hover {
  background: var(--light-gray);
  transform: translateX(8px);
}

.tg-trust-item i {
  font-size: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}

.tg-trust-item strong {
  color: var(--dark-gray);
  margin-bottom: 4px;
  display: block;
}

.tg-trust-item p {
  margin: 0;
  font-size: 14px;
  color: var(--medium-gray);
}

/* ===== PROCESS ===== */
.tg-process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.tg-process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-blue);
}

.tg-process-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
}

.tg-process-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.tg-process-step:hover .tg-process-number {
  transform: scale(1.1);
}

.tg-process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-process-step p {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* ===== RESULT NUMBERS ===== */
.tg-result-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 8px;
  line-height: 1;
}

.tg-result-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* ===== PROCESS CARDS ===== */
.tg-process-timeline {
  position: relative;
}

.tg-process-card {
  display: flex;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tg-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tg-process-icon {
  position: relative;
  margin-right: 20px;
  min-width: 80px;
  text-align: center;
}

.tg-process-icon i {
  font-size: 24px;
  color: var(--primary-blue);
  background: rgba(74, 144, 226, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.tg-process-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.tg-process-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.tg-process-content p {
  font-size: 15px;
  color: var(--medium-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.tg-process-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-process-features li {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.tg-process-features li i {
  color: var(--success-green);
  margin-right: 8px;
  font-size: 12px;
}

.tg-process-cta {
  background: linear-gradient(135deg, var(--primary-blue), #2563eb);
  color: var(--white);
  padding: 32px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.tg-process-cta h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tg-process-cta p {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* ===== CLIENT LOGOS ENHANCEMENTS ===== */
.tg-clients-header h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tg-clients-slider {
  overflow: hidden;
  position: relative;
}

.tg-clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  animation: slideLogos 20s linear infinite;
}

@keyframes slideLogos {
  0% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
  100% { transform: translateX(0); }
}

.tg-client-logo {
  max-height: 40px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: none !important; /* Remove grayscale filter */
}

.tg-client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== STATS ENHANCEMENTS ===== */
.tg-stat-icon {
  margin-bottom: 12px;
}

.tg-stat-icon i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.tg-stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ===== SECTION BADGES ===== */
.tg-section-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===== SERVICES ENHANCEMENTS ===== */
.tg-service-content {
  flex: 1;
}

.tg-service-features {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.tg-service-features li {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.tg-service-features li i {
  color: var(--success-green);
  margin-right: 8px;
  font-size: 12px;
}

.tg-services-cta {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 32px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.tg-services-cta h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-services-cta p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

/* ===== TRUST CARDS ===== */
.tg-trust-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tg-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tg-trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tg-trust-icon i {
  font-size: 24px;
  color: var(--white);
}

.tg-trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-trust-card p {
  font-size: 15px;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== COMPARISON CARDS ===== */
.tg-comparison-section {
  margin-top: 48px;
}

.tg-comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tg-comparison-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.tg-comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tg-comparison-card--featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.tg-comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tg-comparison-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-gray);
  margin: 0;
}

.tg-comparison-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tg-comparison-badge {
  background: var(--success-green);
  color: var(--white);
}

.tg-comparison-badge--risk {
  background: #dc3545;
  color: var(--white);
}

.tg-comparison-badge--expensive {
  background: #ffc107;
  color: var(--dark-gray);
}

.tg-comparison-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tg-comparison-features li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.tg-comparison-features li i {
  margin-right: 8px;
  font-size: 12px;
}

.tg-comparison-features li i.fa-check {
  color: var(--success-green);
}

.tg-comparison-features li i.fa-times {
  color: #dc3545;
}

.tg-comparison-price {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.tg-price-label {
  display: block;
  font-size: 12px;
  color: var(--medium-gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tg-price-amount {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
}

/* ===== FAQ TABS ===== */
.tg-faq-tabs {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tg-faq-tabs .faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}

.tg-faq-tabs .faq-category-btn {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  min-width: auto;
}

.tg-faq-tabs .faq-category-btn:hover {
  background: var(--accent-red);
  color: var(--white);
  border-color: var(--accent-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 49, 57, 0.2);
}

.tg-faq-tabs .faq-category-btn.active {
  background: var(--accent-red);
  color: var(--white);
  border-color: var(--accent-red);
  box-shadow: 0 2px 8px rgba(239, 49, 57, 0.3);
}

.tg-faq-tabs .faq-category-btn i {
  font-size: 12px;
  opacity: 0.8;
}

.tg-faq-tabs .faq-category-btn:hover i,
.tg-faq-tabs .faq-category-btn.active i {
  opacity: 1;
}

/* Hide the original nav pills */
.tg-faq-tabs .nav-pills {
  display: none;
}

.tg-faq-tabs .faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px !important;
  margin-bottom: 12px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.tg-faq-tabs .faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tg-faq-tabs .faq-question {
  background: var(--white);
  color: #495057;
  font-weight: 600;
  border: none;
  padding: 16px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  cursor: default;
}

.tg-faq-tabs .faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  background: var(--white);
  border-top: 1px solid #e9ecef;
}

.tg-faq-tabs .faq-answer strong {
  color: #495057;
  font-weight: 700;
}

/* ===== CONTACT CARDS ===== */
.tg-contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tg-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tg-contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tg-contact-icon i {
  font-size: 32px;
  color: var(--white);
}

.tg-contact-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-contact-card p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.tg-contact-card .btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
}

/* ===== LOCATIONS ===== */
.tg-locations-section {
  background: var(--gradient-dark);
  color: var(--white);
}

.tg-city-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.tg-city-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  color: var(--white);
}

.tg-city-card-highlight {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.tg-city-card i {
  font-size: 16px;
  opacity: 0.8;
}

.tg-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.tg-flag-link {
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.tg-flag-link:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* ===== PORTFOLIO ===== */
.tg-portfolio-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

.tg-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.tg-portfolio-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tg-portfolio-placeholder {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.tg-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tg-portfolio-card:hover .tg-portfolio-overlay {
  opacity: 1;
}

.tg-portfolio-info {
  padding: 24px;
}

.tg-portfolio-tag {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.tg-portfolio-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-portfolio-result {
  font-size: 14px;
  color: var(--success-green);
  font-weight: 600;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.tg-testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.tg-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.tg-testimonial-stars {
  color: #FFB800;
  font-size: 20px;
  margin-bottom: 16px;
}

.tg-testimonial-card p {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.tg-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.tg-testimonial-author strong {
  color: var(--dark-gray);
  display: block;
  font-size: 16px;
}

.tg-testimonial-author small {
  color: var(--medium-gray);
  font-size: 14px;
}

.tg-google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: 12px;
  margin-top: 24px;
}

/* ===== COMPARISON TABLE ===== */
.tg-comparison-table {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-light);
}

.tg-comparison-table h4 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--dark-gray);
}

.table {
  margin-bottom: 0;
}

.table th {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 16px;
}

.table td {
  padding: 16px;
  vertical-align: middle;
  border-color: var(--light-gray);
}

/* ===== UTILITIES ===== */
.space-ptb {
  padding: 80px 0;
}

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

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

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

.text-success {
  color: var(--success-green) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.8) !important;
}

.min-vh-70 {
  min-height: 70vh;
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-strong);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== PRICING CARDS ===== */
.tg-pricing-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.tg-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-blue);
}

.tg-pricing-card.tg-popular {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.tg-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tg-pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.tg-price {
  margin-bottom: 8px;
}

.tg-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  vertical-align: super;
}

.tg-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-gray);
  line-height: 1;
}

.tg-period {
  font-size: 16px;
  color: var(--medium-gray);
  font-weight: 500;
}

.tg-price-desc {
  color: var(--medium-gray);
  margin-bottom: 24px;
  font-size: 14px;
}

.tg-pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.tg-pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.tg-pricing-features li:last-child {
  border-bottom: none;
}

.tg-pricing-features i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.tg-pricing-footer {
  margin-top: 24px;
}

/* ===== LEAD FORM SECTION ===== */
.tg-lead-section {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 80px 0;
}

.tg-contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.tg-contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tg-contact-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  color: var(--white);
}

.tg-contact-option i {
  font-size: 24px;
  opacity: 0.9;
}

.tg-contact-option strong {
  color: var(--white);
  display: block;
  font-size: 16px;
}

.tg-contact-option small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.tg-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
}

.tg-form-card h4 {
  color: var(--dark-gray);
  margin-bottom: 24px;
  font-weight: 700;
}

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

.tg-footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tg-footer-heading {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 16px;
}

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

.tg-footer-links li {
  margin-bottom: 8px;
}

.tg-footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease; 
}

.tg-footer-links a:hover {
  color: var(--white);
}

.tg-footer-contact {
  margin-bottom: 16px;
}

.tg-footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  font-size: 14px;
}

.tg-footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tg-footer-contact a:hover {
  color: var(--primary-blue);
}

.social-icon {
  display: flex;
  gap: 12px;
}

.social-icon li a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icon li a:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

.tg-footer-bottom {
  background: #111827;
}

.tg-footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.tg-footer-bottom a {
  color: var(--primary-blue);
  text-decoration: none;
}

.tg-footer-bottom a:hover {
  color: var(--accent-blue);
}

/* ===== JOB CARDS ===== */
.tg-job-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.tg-job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-blue);
}

.tg-job-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tg-job-type,
.tg-job-location,
.tg-job-experience {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tg-job-type {
  background: var(--success-green);
  color: var(--white);
}

.tg-job-location {
  background: var(--light-gray);
  color: var(--medium-gray);
}

.tg-job-experience {
  background: var(--primary-blue);
  color: var(--white);
}

.tg-job-description p {
  margin-bottom: 20px;
  color: var(--medium-gray);
}

.tg-job-requirements,
.tg-job-benefits {
  margin-bottom: 20px;
}

.tg-job-requirements h4,
.tg-job-benefits h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-job-requirements ul,
.tg-job-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-job-requirements li,
.tg-job-benefits li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--medium-gray);
  position: relative;
  padding-left: 20px;
}

.tg-job-requirements li::before,
.tg-job-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.tg-job-footer {
  margin-top: 24px;
}

/* ===== CULTURE SECTION ===== */
.tg-culture-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.tg-culture-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-blue);
}

.tg-culture-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tg-culture-item:hover .tg-culture-icon {
  transform: scale(1.1);
}

.tg-culture-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-culture-content p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
}

/* ===== FEATURED TESTIMONIALS ===== */
.tg-featured-testimonial {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.tg-featured-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-blue);
}

.tg-featured-header {
  margin-bottom: 24px;
}

.tg-featured-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tg-featured-rating i {
  color: #FFB800;
  font-size: 18px;
}

.tg-featured-rating span {
  font-weight: 700;
  color: var(--dark-gray);
}

.tg-featured-header h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.tg-featured-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-client-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.tg-featured-client strong {
  color: var(--dark-gray);
  display: block;
  font-size: 16px;
}

.tg-featured-client small {
  color: var(--medium-gray);
  font-size: 14px;
}

.tg-featured-content p {
  margin-bottom: 20px;
  color: var(--medium-gray);
  line-height: 1.6;
}

.tg-featured-results {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.tg-featured-results h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-featured-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-featured-results li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tg-featured-results i {
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.tg-service-tag {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}

/* ===== GOOGLE REVIEWS WIDGET ===== */
.tg-google-reviews-widget {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-light);
}

.tg-google-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.tg-google-rating-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-google-rating {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-gray);
}

.tg-google-stars {
  color: #FFB800;
  font-size: 20px;
}

.tg-google-count {
  color: var(--medium-gray);
  font-size: 14px;
}

.tg-google-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tg-google-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-stat-number {
  width: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--medium-gray);
}

.tg-star-bar {
  flex: 1;
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.tg-star-fill {
  height: 100%;
  background: #FFB800;
  border-radius: 4px;
}

.tg-stat-count {
  width: 30px;
  text-align: right;
  font-size: 12px;
  color: var(--medium-gray);
}

/* ===== RATING STARS ===== */
.rating-stars {
  display: flex;
  gap: 4px;
  font-size: 24px;
}

.rating-stars input[type="radio"] {
  display: none;
}

.rating-stars .star {
  cursor: pointer;
  color: #ddd;
  transition: color 0.3s ease;
}

.rating-stars .star:hover,
.rating-stars input[type="radio"]:checked ~ .star {
  color: #FFB800;
}

.rating-stars input[type="radio"]:checked ~ .star {
  color: #FFB800;
}

.rating-stars .star:hover ~ .star {
  color: #ddd;
}

/* ===== CONSULTATION CARDS ===== */
.tg-consultation-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.tg-consultation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-blue);
}

.tg-consultation-header {
  margin-bottom: 24px;
  text-align: center;
}

.tg-consultation-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.tg-consultation-card:hover .tg-consultation-icon {
  transform: scale(1.1);
}

.tg-consultation-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-consultation-header p {
  color: var(--medium-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.tg-consultation-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.tg-consultation-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tg-consultation-content li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--medium-gray);
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.tg-consultation-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.tg-consultation-ideal {
  background: var(--light-gray);
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
}

.tg-consultation-ideal h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-consultation-ideal p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.5;
}

.tg-consultation-footer {
  margin-top: 24px;
  text-align: center;
}

.tg-consultation-benefits {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tg-consultation-benefits h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.tg-consultation-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-consultation-benefits li {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== BENEFIT ITEMS ===== */
.tg-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.tg-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-blue);
}

.tg-benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tg-benefit-item:hover .tg-benefit-icon {
  transform: scale(1.1);
}

.tg-benefit-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-benefit-content p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
}

/* ===== AUDIT SAMPLE ===== */
.tg-audit-sample {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-light);
}

.tg-audit-header {
  text-align: center;
  margin-bottom: 32px;
}

.tg-audit-header h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-audit-header p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

.tg-audit-section {
  margin-bottom: 32px;
}

.tg-audit-section:last-child {
  margin-bottom: 0;
}

.tg-audit-section h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.tg-score-display {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.tg-score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-blue) 0deg 259deg, var(--light-gray) 259deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tg-score-circle::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
}

.tg-score {
  position: relative;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-gray);
}

.tg-score-details {
  flex: 1;
}

.tg-score-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tg-score-item span:first-child {
  width: 80px;
  font-size: 14px;
  color: var(--medium-gray);
}

.tg-score-bar {
  flex: 1;
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.tg-score-fill {
  height: 100%;
  background: var(--primary-blue);
  border-radius: 4px;
}

.tg-score-item span:last-child {
  width: 40px;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-gray);
}

.tg-issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-issue-list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.tg-issue-high {
  background: rgba(220, 38, 38, 0.1);
  border-left: 4px solid #dc2626;
}

.tg-issue-medium {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
}

.tg-issue-low {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid #22c55e;
}

.tg-recommendations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tg-recommendation {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
}

.tg-recommendation h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.tg-recommendation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-recommendation li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--medium-gray);
  position: relative;
  padding-left: 20px;
}

.tg-recommendation li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.tg-audit-benefits {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tg-audit-benefits h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.tg-audit-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tg-audit-benefits li {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== QUICK CONTACT ===== */
.tg-quick-contact {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-light);
}

.tg-quick-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}

.tg-quick-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-blue);
  color: inherit;
}

.tg-quick-contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tg-quick-contact-item:hover .tg-quick-contact-icon {
  transform: scale(1.1);
}

.tg-quick-contact-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark-gray);
}

.tg-quick-contact-content p {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 4px;
}

.tg-quick-contact-content strong {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 600;
}

/* ===== PRIVACY POLICY ===== */
.tg-privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.tg-privacy-header {
  text-align: center;
  margin-bottom: 48px;
}

.tg-privacy-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.tg-privacy-header p {
  color: var(--medium-gray);
  font-size: 16px;
  margin-bottom: 0;
}

.tg-privacy-section {
  margin-bottom: 48px;
}

.tg-privacy-section:last-child {
  margin-bottom: 0;
}

.tg-privacy-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-gray);
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 8px;
}

.tg-privacy-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px 0;
  color: var(--dark-gray);
}

.tg-privacy-section p {
  margin-bottom: 16px;
  color: var(--medium-gray);
  font-size: 16px;
}

.tg-privacy-section ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.tg-privacy-section li {
  margin-bottom: 8px;
  color: var(--medium-gray);
  font-size: 16px;
}

.tg-contact-details {
  background: var(--light-gray);
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
}

.contact-item {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  color: var(--dark-gray);
  font-weight: 600;
}

.contact-item a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .space-ptb {
    padding: 60px 0;
  }
  
  .tg-service-card,
  .tg-process-step,
  .tg-portfolio-card,
  .tg-testimonial-card,
  .tg-pricing-card,
  .tg-job-card {
    padding: 24px;
  }
  
  .tg-stat-number {
    font-size: 36px;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
    min-height: 48px;
  }
  
  .tg-amount {
    font-size: 36px;
  }
  
  .tg-pricing-card.tg-popular {
    transform: scale(1);
  }
  
  .tg-contact-options {
    flex-direction: column;
  }
  
  .tg-form-card {
    padding: 24px;
  }
  
  .tg-job-meta {
    flex-direction: column;
    gap: 4px;
  }
  
  .tg-culture-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .tg-culture-icon {
    margin: 0 auto;
  }
}
