/*
Theme Name: ToolsKit
Theme URI: https://www.toolskit.co.in/
Author: ToolsKit
Description: Premium WordPress theme for social media marketing agencies. Features complete pages for social media marketing services, social media management, location-specific pages for Hyderabad and Bengaluru, blog, contact, about, and more.
Version: 1.0.0
License: GNU General Public License v2
Text Domain: ToolsKit
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ========================================
   TOOLSKIT THEME - MAIN STYLESHEET
   Social Media Marketing Agency Theme
   Primary: Blue (#0066FF) | Secondary: White
   ======================================== */

/* === CSS VARIABLES === */
:root {
  --tk-blue-primary: #0066FF;
  --tk-blue-dark: #004ECC;
  --tk-blue-light: #3385FF;
  --tk-blue-glow: #4D94FF;
  --tk-white: #FFFFFF;
  --tk-gray-50: #F8FAFF;
  --tk-gray-100: #EDF2FF;
  --tk-gray-200: #D6E3FF;
  --tk-gray-400: #8A9BBF;
  --tk-gray-600: #4A5568;
  --tk-gray-900: #1A202C;
  --tk-success: #00C853;
  --tk-gradient: linear-gradient(135deg, #0066FF 0%, #3385FF 50%, #4D94FF 100%);
  --tk-gradient-radial: radial-gradient(ellipse at center, #3385FF 0%, #0066FF 100%);
  --tk-shadow-sm: 0 2px 8px rgba(0,102,255,0.08);
  --tk-shadow: 0 8px 30px rgba(0,102,255,0.10);
  --tk-shadow-lg: 0 12px 40px rgba(0,102,255,0.15);
  --tk-shadow-hover: 0 20px 50px rgba(0,102,255,0.20);
  --tk-radius-sm: 8px;
  --tk-radius: 16px;
  --tk-radius-lg: 24px;
  --tk-radius-pill: 50px;
  --tk-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tk-font-display: 'Poppins', sans-serif;
  --tk-font-body: 'Inter', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--tk-font-body);
  color: var(--tk-gray-900);
  line-height: 1.7;
  background: var(--tk-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--tk-blue-primary); transition: var(--tk-transition); }
a:hover { color: var(--tk-blue-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--tk-font-display); }
input, textarea, select { font-family: var(--tk-font-body); outline: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--tk-font-display); line-height: 1.2; font-weight: 700; }

/* === LAYOUT === */
.tk-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.tk-section {
  padding: 80px 0;
  position: relative;
}
.tk-section-alt { background: var(--tk-gray-50); }
.tk-section-gradient {
  background: var(--tk-gradient);
  color: var(--tk-white);
}
.tk-section-gradient h1,
.tk-section-gradient h2,
.tk-section-gradient h3,
.tk-section-gradient p { color: var(--tk-white); }

/* === BUTTONS === */
.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--tk-font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--tk-radius-pill);
  transition: var(--tk-transition);
  cursor: pointer;
  border: none;
}
.tk-btn-primary {
  background: var(--tk-gradient);
  color: var(--tk-white);
  box-shadow: 0 4px 15px rgba(0,102,255,0.25);
}
.tk-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,102,255,0.35);
  color: var(--tk-white);
}
.tk-btn-white {
  background: var(--tk-white);
  color: var(--tk-blue-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.tk-btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: var(--tk-blue-dark);
}
.tk-btn-outline {
  background: transparent;
  color: var(--tk-white);
  border: 2px solid var(--tk-white);
}
.tk-btn-outline:hover {
  background: var(--tk-white);
  color: var(--tk-blue-primary);
}
.tk-btn-outline-dark {
  background: transparent;
  color: var(--tk-blue-primary);
  border: 2px solid var(--tk-blue-primary);
}
.tk-btn-outline-dark:hover {
  background: var(--tk-blue-primary);
  color: var(--tk-white);
}

/* === TYPOGRAPHY HELPERS === */
.tk-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--tk-gray-900);
  margin-bottom: 16px;
  text-align: center;
}
.tk-section-subtitle {
  font-size: 1.125rem;
  color: var(--tk-gray-600);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.tk-gradient-text {
  background: var(--tk-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HEADER === */
.tk-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--tk-transition);
}
.tk-header.scrolled {
  border-bottom-color: var(--tk-gray-200);
  box-shadow: 0 4px 30px rgba(0,102,255,0.1);
}
.tk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.tk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tk-logo img { height: 50px; width: auto; }

/* === NAVIGATION === */
.tk-nav { display: flex; align-items: center; gap: 4px; }
.tk-nav a {
  font-family: var(--tk-font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tk-gray-900);
  padding: 8px 16px;
  border-radius: var(--tk-radius-sm);
  position: relative;
}
.tk-nav a:hover { color: var(--tk-blue-primary); background: var(--tk-gray-50); }
.tk-nav a.tk-nav-cta {
  background: var(--tk-gradient);
  color: var(--tk-white);
  padding: 10px 24px;
  border-radius: var(--tk-radius-pill);
  margin-left: 8px;
}
.tk-nav a.tk-nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,102,255,0.3);
  color: var(--tk-white);
}

/* Dropdown */
.tk-dropdown { position: relative; }
.tk-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--tk-white);
  border-radius: var(--tk-radius);
  box-shadow: var(--tk-shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--tk-transition);
  z-index: 100;
}
.tk-dropdown:hover .tk-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tk-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--tk-gray-600);
  border-radius: var(--tk-radius-sm);
}
.tk-dropdown-menu a:hover {
  background: var(--tk-gray-50);
  color: var(--tk-blue-primary);
}
.tk-dropdown-toggle::after {
  content: '\25BC';
  font-size: 0.6rem;
  margin-left: 6px;
  opacity: 0.5;
}

/* Mobile Menu Toggle */
.tk-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.tk-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tk-gray-900);
  border-radius: 2px;
  transition: var(--tk-transition);
}

/* === MOBILE MENU === */
.tk-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--tk-transition);
}
.tk-mobile-overlay.active { opacity: 1; visibility: visible; }
.tk-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--tk-white);
  z-index: 9999;
  padding: 80px 24px 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.tk-mobile-menu.active { right: 0; }
.tk-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--tk-font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tk-gray-900);
  border-bottom: 1px solid var(--tk-gray-100);
}
.tk-mobile-menu a:hover { color: var(--tk-blue-primary); padding-left: 8px; }
.tk-mobile-menu .tk-mobile-cta {
  margin-top: 16px;
  background: var(--tk-gradient);
  color: var(--tk-white);
  text-align: center;
  border-radius: var(--tk-radius-pill);
  padding: 14px;
  border: none;
}

/* === CARDS === */
.tk-card {
  background: var(--tk-white);
  border-radius: var(--tk-radius);
  padding: 32px;
  box-shadow: var(--tk-shadow);
  transition: var(--tk-transition);
  border: 1px solid var(--tk-gray-100);
  height: 100%;
}
.tk-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tk-shadow-hover);
  border-color: var(--tk-blue-light);
}
.tk-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tk-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--tk-white);
  font-size: 1.5rem;
}
.tk-card-title {
  font-family: var(--tk-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tk-gray-900);
  margin-bottom: 10px;
}
.tk-card-text {
  font-size: 0.95rem;
  color: var(--tk-gray-600);
  line-height: 1.7;
}
.tk-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--tk-font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tk-blue-primary);
}
.tk-card-link:hover { gap: 10px; }

/* === GRID SYSTEM === */
.tk-grid { display: grid; gap: 24px; }
.tk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.tk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tk-grid-4 { grid-template-columns: repeat(4, 1fr); }
.tk-grid-6 { grid-template-columns: repeat(6, 1fr); }

/* === STATS === */
.tk-stat-number {
  font-family: var(--tk-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--tk-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.tk-section-gradient .tk-stat-number {
  -webkit-text-fill-color: var(--tk-white);
  background: none;
}
.tk-stat-label {
  font-size: 0.875rem;
  color: var(--tk-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.tk-section-gradient .tk-stat-label { color: rgba(255,255,255,0.8); }

/* === PROCESS STEPS === */
.tk-step { display: flex; gap: 24px; position: relative; }
.tk-step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--tk-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-white);
  font-family: var(--tk-font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.tk-step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--tk-gray-900);
}
.tk-step-content p { color: var(--tk-gray-600); font-size: 0.95rem; }

/* === TESTIMONIAL === */
.tk-testimonial {
  background: var(--tk-white);
  border-radius: var(--tk-radius);
  padding: 32px;
  box-shadow: var(--tk-shadow);
}
.tk-testimonial-stars { color: #FFB800; font-size: 1.125rem; margin-bottom: 16px; }
.tk-testimonial-text {
  font-size: 1rem;
  color: var(--tk-gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.tk-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tk-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tk-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-white);
  font-family: var(--tk-font-display);
  font-weight: 600;
  font-size: 1.125rem;
}
.tk-testimonial-name {
  font-family: var(--tk-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tk-gray-900);
}
.tk-testimonial-location {
  font-size: 0.8rem;
  color: var(--tk-gray-400);
}

/* === CHECKLIST === */
.tk-checklist { display: flex; flex-direction: column; gap: 16px; }
.tk-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tk-checklist-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--tk-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-white);
  font-size: 0.75rem;
  margin-top: 2px;
}
.tk-checklist-text {
  font-size: 1rem;
  color: var(--tk-gray-600);
  line-height: 1.6;
}

/* === PRICING CARD === */
.tk-pricing {
  background: var(--tk-white);
  border-radius: var(--tk-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--tk-shadow);
  border: 2px solid var(--tk-gray-100);
  text-align: center;
  position: relative;
  transition: var(--tk-transition);
}
.tk-pricing:hover {
  transform: translateY(-8px);
  box-shadow: var(--tk-shadow-hover);
  border-color: var(--tk-blue-light);
}
.tk-pricing-featured {
  border-color: var(--tk-blue-primary);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
}
.tk-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tk-gradient);
  color: var(--tk-white);
  padding: 6px 20px;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-display);
  font-size: 0.75rem;
  font-weight: 600;
}
.tk-pricing-name {
  font-family: var(--tk-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tk-pricing-price {
  font-family: var(--tk-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tk-blue-primary);
  margin-bottom: 4px;
}
.tk-pricing-price span {
  font-size: 1rem;
  color: var(--tk-gray-400);
  font-weight: 400;
}
.tk-pricing-desc {
  font-size: 0.875rem;
  color: var(--tk-gray-400);
  margin-bottom: 24px;
}
.tk-pricing-features { text-align: left; margin-bottom: 32px; }
.tk-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--tk-gray-600);
  border-bottom: 1px solid var(--tk-gray-100);
}
.tk-pricing-features li::before {
  content: '\2713';
  color: var(--tk-success);
  font-weight: 700;
}

/* === FAQ === */
.tk-faq-item {
  border-bottom: 1px solid var(--tk-gray-200);
  padding: 20px 0;
}
.tk-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--tk-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tk-gray-900);
}
.tk-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--tk-blue-primary);
  transition: var(--tk-transition);
}
.tk-faq-item.active .tk-faq-question::after { content: '\2212'; }
.tk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.tk-faq-item.active .tk-faq-answer {
  max-height: 300px;
  padding-top: 12px;
}
.tk-faq-answer p {
  font-size: 0.95rem;
  color: var(--tk-gray-600);
  line-height: 1.7;
}

/* === BLOG CARD === */
.tk-blog-card {
  background: var(--tk-white);
  border-radius: var(--tk-radius);
  overflow: hidden;
  box-shadow: var(--tk-shadow);
  transition: var(--tk-transition);
  border: 1px solid var(--tk-gray-100);
}
.tk-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tk-shadow-hover);
}
.tk-blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.tk-blog-card-body { padding: 24px; }
.tk-blog-card-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--tk-gray-100);
  color: var(--tk-blue-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--tk-radius-pill);
  margin-bottom: 12px;
  font-family: var(--tk-font-display);
}
.tk-blog-card-title {
  font-family: var(--tk-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--tk-gray-900);
  margin-bottom: 10px;
  line-height: 1.4;
}
.tk-blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--tk-gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tk-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--tk-gray-400);
}

/* === LOCATION CARD === */
.tk-location-card {
  position: relative;
  border-radius: var(--tk-radius-lg);
  overflow: hidden;
  box-shadow: var(--tk-shadow-lg);
}
.tk-location-card-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.tk-location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.tk-location-card-overlay h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tk-white);
  margin-bottom: 10px;
}
.tk-location-card-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 400px;
}

/* === BREADCRUMB === */
.tk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}
.tk-breadcrumb a { color: rgba(255,255,255,0.8); }
.tk-breadcrumb a:hover { color: var(--tk-white); }
.tk-breadcrumb span { opacity: 0.5; }

/* === FORMS === */
.tk-form-group { margin-bottom: 20px; }
.tk-form-label {
  display: block;
  font-family: var(--tk-font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tk-gray-900);
  margin-bottom: 8px;
}
.tk-form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--tk-gray-200);
  border-radius: var(--tk-radius-sm);
  font-size: 1rem;
  transition: var(--tk-transition);
  background: var(--tk-white);
  color: var(--tk-gray-900);
}
.tk-form-input:focus {
  border-color: var(--tk-blue-primary);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
}
textarea.tk-form-input { resize: vertical; min-height: 120px; }

/* === INDUSTRY CARD === */
.tk-industry {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--tk-radius);
  background: var(--tk-white);
  box-shadow: var(--tk-shadow-sm);
  transition: var(--tk-transition);
  border: 1px solid var(--tk-gray-100);
}
.tk-industry:hover {
  transform: translateY(-4px);
  box-shadow: var(--tk-shadow);
  border-color: var(--tk-blue-light);
}
.tk-industry-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--tk-radius);
  background: var(--tk-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--tk-white);
  font-size: 1.5rem;
}
.tk-industry-name {
  font-family: var(--tk-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--tk-gray-900);
}

/* === PLATFORM CARD === */
.tk-platform {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--tk-radius);
  background: var(--tk-white);
  box-shadow: var(--tk-shadow-sm);
  border: 1px solid var(--tk-gray-100);
  transition: var(--tk-transition);
}
.tk-platform:hover {
  box-shadow: var(--tk-shadow);
  border-color: var(--tk-blue-light);
}
.tk-platform-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--tk-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.tk-platform-info h4 {
  font-family: var(--tk-font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.tk-platform-info p {
  font-size: 0.875rem;
  color: var(--tk-gray-600);
}

/* === TIMELINE === */
.tk-timeline { position: relative; padding-left: 40px; }
.tk-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--tk-gradient);
}
.tk-timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.tk-timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tk-gradient);
  border: 3px solid var(--tk-white);
  box-shadow: 0 0 0 3px var(--tk-blue-light);
}
.tk-timeline-year {
  font-family: var(--tk-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tk-blue-primary);
}
.tk-timeline-text { font-size: 0.95rem; color: var(--tk-gray-600); margin-top: 4px; }

/* === VALUE CARD === */
.tk-value {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--tk-radius);
  background: var(--tk-white);
  box-shadow: var(--tk-shadow-sm);
  border: 1px solid var(--tk-gray-100);
  transition: var(--tk-transition);
}
.tk-value:hover {
  transform: translateY(-6px);
  box-shadow: var(--tk-shadow);
}
.tk-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tk-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--tk-blue-primary);
  font-size: 1.5rem;
}
.tk-value h4 {
  font-family: var(--tk-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.tk-value p { font-size: 0.875rem; color: var(--tk-gray-600); line-height: 1.6; }

/* === TEAM CARD === */
.tk-team {
  text-align: center;
  padding: 32px;
  border-radius: var(--tk-radius);
  background: var(--tk-white);
  box-shadow: var(--tk-shadow);
  transition: var(--tk-transition);
}
.tk-team:hover { transform: translateY(-6px); box-shadow: var(--tk-shadow-hover); }
.tk-team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--tk-gray-100);
}
.tk-team h4 {
  font-family: var(--tk-font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.tk-team-role {
  font-size: 0.875rem;
  color: var(--tk-blue-primary);
  font-weight: 500;
  margin-bottom: 12px;
}
.tk-team-social { display: flex; justify-content: center; gap: 12px; }
.tk-team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tk-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-gray-400);
  font-size: 0.875rem;
}
.tk-team-social a:hover { background: var(--tk-blue-primary); color: var(--tk-white); }

/* === FOOTER === */
.tk-footer {
  background: var(--tk-gray-900);
  color: var(--tk-gray-400);
  padding: 80px 0 0;
}
.tk-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.tk-footer-col h4 {
  color: var(--tk-white);
  font-family: var(--tk-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.tk-footer-logo img { height: 50px; margin-bottom: 16px; }
.tk-footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.tk-footer-social { display: flex; gap: 12px; }
.tk-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-white);
  transition: var(--tk-transition);
}
.tk-footer-social a:hover { background: var(--tk-blue-primary); }
.tk-footer-links a {
  display: block;
  color: var(--tk-gray-400);
  padding: 6px 0;
  font-size: 0.9rem;
}
.tk-footer-links a:hover { color: var(--tk-white); padding-left: 4px; }
.tk-footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.tk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.tk-footer-bottom a { color: var(--tk-gray-400); }
.tk-footer-bottom a:hover { color: var(--tk-white); }

/* === NEWSLETTER === */
.tk-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.tk-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--tk-radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--tk-white);
  font-size: 0.875rem;
}
.tk-newsletter input::placeholder { color: var(--tk-gray-400); }
.tk-newsletter button {
  padding: 12px 24px;
  border-radius: var(--tk-radius-pill);
  background: var(--tk-gradient);
  color: var(--tk-white);
  font-family: var(--tk-font-display);
  font-weight: 600;
  font-size: 0.875rem;
}

/* === SCROLL ANIMATIONS === */
.tk-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tk-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === FLOATING ANIMATION === */
@keyframes tk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.tk-float { animation: tk-float 3s ease-in-out infinite; }
.tk-float-delay { animation-delay: 0.5s; }
.tk-float-delay-2 { animation-delay: 1s; }

/* === PULSE ANIMATION === */
@keyframes tk-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,102,255,0.3); }
  50% { box-shadow: 0 0 0 15px rgba(0,102,255,0); }
}
.tk-pulse { animation: tk-pulse 2s infinite; }

/* === SHIMMER/GRADIENT ANIMATION === */
@keyframes tk-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* === HERO SECTIONS === */
.tk-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--tk-gradient);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.tk-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tk-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tk-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--tk-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.tk-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}
.tk-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.tk-hero-img {
  position: relative;
  border-radius: var(--tk-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.tk-hero-floating {
  position: absolute;
  background: var(--tk-white);
  border-radius: var(--tk-radius);
  padding: 12px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  font-family: var(--tk-font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--tk-gray-900);
}

/* === PAGE HERO (smaller) === */
.tk-page-hero {
  padding: 140px 0 80px;
  background: var(--tk-gradient);
  position: relative;
  text-align: center;
}
.tk-page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--tk-white);
  margin-bottom: 12px;
}
.tk-page-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto;
}

/* === SCROLL INDICATOR === */
.tk-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  animation: tk-float 2s ease-in-out infinite;
}

/* === 404 PAGE === */
.tk-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.tk-404-img {
  max-width: 350px;
  margin-bottom: 32px;
}
.tk-404-title {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  background: var(--tk-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tk-404 h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--tk-gray-900);
  margin-bottom: 12px;
}
.tk-404 p { color: var(--tk-gray-600); margin-bottom: 32px; }
.tk-404-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* === CONTENT STYLES (for blog/single) === */
.tk-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--tk-gray-900);
}
.tk-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--tk-gray-900);
}
.tk-content p {
  margin-bottom: 20px;
  color: var(--tk-gray-600);
  line-height: 1.8;
}
.tk-content ul, .tk-content ol {
  margin: 0 0 20px 24px;
  color: var(--tk-gray-600);
}
.tk-content ul { list-style: disc; }
.tk-content ol { list-style: decimal; }
.tk-content li { margin-bottom: 8px; line-height: 1.7; }
.tk-content blockquote {
  border-left: 4px solid var(--tk-blue-primary);
  padding: 16px 24px;
  background: var(--tk-gray-50);
  border-radius: 0 var(--tk-radius-sm) var(--tk-radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--tk-gray-600);
}
.tk-content img {
  border-radius: var(--tk-radius);
  margin: 24px 0;
  box-shadow: var(--tk-shadow);
}

/* === SHARE BUTTONS === */
.tk-share { display: flex; gap: 8px; margin-top: 24px; }
.tk-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: var(--tk-transition);
}

/* === AUTHOR BOX === */
.tk-author {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--tk-gray-50);
  border-radius: var(--tk-radius);
  margin-top: 48px;
}
.tk-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--tk-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tk-white);
  font-family: var(--tk-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tk-author-info h4 {
  font-family: var(--tk-font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.tk-author-info p { font-size: 0.875rem; color: var(--tk-gray-600); margin-top: 6px; }

/* === NEWSLETTER BOX === */
.tk-newsletter-box {
  background: var(--tk-gradient);
  border-radius: var(--tk-radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--tk-white);
  margin-top: 48px;
}
.tk-newsletter-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tk-white);
}
.tk-newsletter-box p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.tk-newsletter-box .tk-newsletter { max-width: 500px; margin: 0 auto; }

/* === RELATED POSTS === */
.tk-related { margin-top: 48px; }

/* === SCROLL TO TOP === */
.tk-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tk-gradient);
  color: var(--tk-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,102,255,0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--tk-transition);
  z-index: 999;
  cursor: pointer;
}
.tk-scroll-top.visible { opacity: 1; visibility: visible; }
.tk-scroll-top:hover { transform: scale(1.1); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .tk-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tk-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .tk-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .tk-section { padding: 48px 0; }
  .tk-grid-2, .tk-grid-3, .tk-grid-4 { grid-template-columns: 1fr; }
  .tk-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .tk-nav { display: none; }
  .tk-menu-toggle { display: flex; }
  .tk-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .tk-hero-sub { margin: 0 auto 32px; }
  .tk-hero-btns { justify-content: center; }
  .tk-hero-img { order: -1; }
  .tk-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .tk-footer-bottom { flex-direction: column; text-align: center; }
  .tk-hero-floating { display: none; }
  .tk-pricing { padding: 32px 20px; }
  .tk-author { flex-direction: column; text-align: center; }
  .tk-author-avatar { margin: 0 auto; }
  .tk-page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .tk-container { padding: 0 16px; }
  .tk-card { padding: 24px; }
  .tk-btn { padding: 12px 28px; font-size: 0.9rem; }
  .tk-newsletter-box { padding: 32px 20px; }
  .tk-location-card-img { height: 300px; }
  .tk-location-card-overlay { padding: 24px; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === PRINT === */
@media print {
  .tk-header, .tk-footer, .tk-scroll-top, .tk-mobile-menu, .tk-mobile-overlay { display: none !important; }
  body { font-size: 12pt; line-height: 1.5; color: #000; }
  a { text-decoration: underline; color: #000; }
}
