/*
Theme Name: Tell Well
Theme URI: https://tellwell.in
Author: Tell Well Digital Agency
Author URI: https://tellwell.in
Description: A premium, high-converting WordPress theme for Tell Well Digital Marketing Agency. Features gradient accents, animated counters, custom post types for case studies and testimonials, contact form with DB storage, and full SEO optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tellwell
Tags: marketing, agency, portfolio, custom-colors, custom-logo, featured-images, full-width-template, theme-options

Tell Well - Digital Marketing Agency Theme
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary-purple: #5B2D8B;
  --violet: #7A4DA3;
  --magenta: #D9468D;
  --hot-pink: #F0548A;
  --coral: #F15A4A;
  --dark-accent: #4A1F6D;
  --text-dark: #2E2E2E;
  --text-light: #64748b;
  --bg-light: #FFFFFF;
  --section-grey: #F7F7F9;
  --border-color: #e2e8f0;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 12px 50px rgba(91,45,139,0.12);
  --gradient: linear-gradient(135deg, var(--primary-purple), var(--magenta), var(--coral));
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
}

/* Subtle diagonal texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(91, 45, 139, 0.015) 35px,
    rgba(91, 45, 139, 0.015) 36px
  );
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: rgba(217, 70, 141, 0.2);
  color: var(--dark-accent);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-purple), var(--magenta));
  border-radius: 4px;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.section {
  position: relative;
  padding: 96px 0;
}

@media (min-width: 1024px) {
  .section { padding: 128px 0; }
}

.section-grey { background: var(--section-grey); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.75rem; }
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .section-desc { font-size: 1.125rem; }
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91, 45, 139, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 45, 139, 0.15);
}

/* ============================================
   GRADIENT ICON CIRCLE
   ============================================ */
.gradient-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.gradient-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-2 { gap: 96px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  transition: all 0.5s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(91, 45, 139, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.current::after {
  width: 100%;
}

.header-nav a:hover,
.header-nav a.current {
  color: var(--primary-purple);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta { display: inline-flex; }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border-color);
  padding: 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding-top: 160px; padding-bottom: 128px; }
}

.hero-bg-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,45,139,0.04) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241,90,74,0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.hero-heading {
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .hero-heading { font-size: 3.25rem; }
}

@media (min-width: 1280px) {
  .hero-heading { font-size: 3.75rem; }
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

@media (min-width: 1024px) {
  .hero-sub { font-size: 1.125rem; }
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, rgba(91,45,139,0.08), rgba(217,70,141,0.08), rgba(241,90,74,0.08));
  border-radius: 24px;
  filter: blur(20px);
}

.hero-image-wrap img {
  position: relative;
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 20px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.bottom-left {
  bottom: -24px;
  left: -24px;
}

.hero-float-card.top-right {
  top: -16px;
  right: -16px;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.float-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--text-dark);
}

.float-card-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.social-proof {
  padding: 64px 0;
  background: var(--section-grey);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  padding: 28px;
}

.service-card h3 {
  font-size: 1.125rem;
  margin: 20px 0 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-purple);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-purple);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.service-card:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.result-card {
  padding: 32px;
}

.result-category {
  font-size: 1.25rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin: 24px 0;
}

.result-metric {
  margin-bottom: 20px;
}

.result-metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-metric-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-card-img {
  height: 208px;
  overflow: hidden;
  position: relative;
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .case-card-img img {
  transform: scale(1.05);
}

.case-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.case-card-img .label {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.case-card-img .label span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-card-img .label h3 {
  font-size: 1.25rem;
  color: white;
  margin-top: 2px;
}

.case-card-body {
  padding: 24px;
}

.case-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.case-card-tag.challenge { color: var(--magenta); }
.case-card-tag.strategy { color: var(--primary-purple); }

.case-card-text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.case-card-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.case-result-value {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-result-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.3;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
  padding: 28px;
  position: relative;
}

.pricing-card.highlighted {
  border-color: rgba(91, 45, 139, 0.2);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.125rem;
  font-family: 'Syne', sans-serif;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 1.875rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-price .currency {
  font-size: 1.125rem;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-scroll {
  overflow: hidden;
  position: relative;
}

.testimonials-scroll::before,
.testimonials-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.testimonials-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--section-grey), transparent);
}

.testimonials-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--section-grey), transparent);
}

.testimonials-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 400px;
  flex-shrink: 0;
  margin: 0 12px;
  padding: 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section { padding: 128px 0; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 35px,
    rgba(255,255,255,0.1) 35px, rgba(255,255,255,0.1) 36px
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .cta-content h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3rem; }
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0F0A1A;
  color: white;
}

.footer-gradient-line {
  height: 4px;
  background: var(--gradient);
}

.footer-inner {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; }
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 15px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--magenta);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 15px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  font-size: 14px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: #64748b;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: white; }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(91, 45, 139, 0.35);
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(91, 45, 139, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(91, 45, 139, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(91, 45, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 45, 139, 0); }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .contact-form-wrap { padding: 40px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--section-grey);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(91, 45, 139, 0.1);
}

.form-group textarea { resize: none; }

.form-submit {
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 48px 0;
}

.form-success h3 {
  font-size: 1.5rem;
  margin: 24px 0 12px;
}

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

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: 3fr 1fr; }
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

.blog-card-img {
  height: 192px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-purple);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card:hover .blog-card-body h3 {
  color: var(--primary-purple);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.card:hover .blog-read-more {
  gap: 10px;
}

.blog-sidebar .card {
  padding: 24px;
  margin-bottom: 24px;
}

.blog-sidebar h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.blog-sidebar-cta {
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(135deg, var(--primary-purple), var(--magenta));
  color: white;
}

.blog-sidebar-cta h3 {
  color: white;
  margin-bottom: 12px;
}

.blog-sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.blog-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.blog-cat-filter button,
.blog-cat-filter a {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f1f5f9;
  color: #475569;
}

.blog-cat-filter button.active,
.blog-cat-filter a.active {
  background: var(--gradient);
  color: white;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  padding: 28px;
  text-align: center;
}

.value-card .gradient-icon {
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img {
  border-radius: var(--radius-sm);
}

.entry-content {
  max-width: 720px;
  margin: 0 auto;
}

.entry-content h2 {
  font-size: 1.75rem;
  margin: 48px 0 16px;
}

.entry-content h3 {
  font-size: 1.375rem;
  margin: 32px 0 12px;
}

.entry-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 24px 24px;
  color: var(--text-light);
}

.entry-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.entry-content blockquote {
  border-left: 4px solid var(--primary-purple);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--section-grey);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content blockquote p {
  font-style: italic;
  color: var(--text-dark);
}

/* WP Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination a {
  background: var(--section-grey);
  color: var(--text-dark);
}

.pagination a:hover {
  background: var(--primary-purple);
  color: white;
}

.pagination .current {
  background: var(--gradient);
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .hero-float-card { display: none; }
  .testimonial-card { width: 320px; }
}
