/* ========================================
   VENICS Static Website - styles.css
   ======================================== */

/* CSS Variables */
:root {
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent: #00BFA6;
  --accent-light: #00D4B4;
  --background: #F8FAFC;
  --foreground: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #00BFA6, #00D4B4, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-gradient {
  background: linear-gradient(135deg, #00BFA6, #00D4B4, #8B5CF6);
  color: white;
}

.badge-accent {
  background: rgba(0, 191, 166, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 191, 166, 0.2);
}

.badge-primary {
  background: rgba(15, 23, 42, 0.1);
  color: var(--primary);
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.badge-icon {
  width: 1rem;
  height: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #00BFA6, #00D4B4, #00E5C4);
  color: var(--primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00A88F, #00BFA6, #00D4B4);
  box-shadow: 0 4px 20px rgba(0, 191, 166, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Glow Card */
.glow-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 191, 166, 0.1);
  transition: all 0.3s ease;
}

.glow-card:hover {
  box-shadow: 0 0 20px rgba(0, 191, 166, 0.15),
              0 0 40px rgba(0, 191, 166, 0.1);
}

/* Floating Orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 { width: 24rem; height: 24rem; background: linear-gradient(135deg, rgba(0, 191, 166, 0.3), rgba(34, 211, 238, 0.2)); top: 0; left: 25%; }
.orb-2 { width: 20rem; height: 20rem; background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.15)); top: 33%; right: 25%; animation-delay: 5s; }
.orb-3 { width: 16rem; height: 16rem; background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1)); bottom: 0; left: 33%; animation-delay: 10s; }
.orb-4 { width: 24rem; height: 24rem; background: linear-gradient(135deg, rgba(0, 191, 166, 0.2), rgba(34, 211, 238, 0.15)); top: -10rem; left: -10rem; }
.orb-5 { width: 20rem; height: 20rem; background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1)); top: 33%; right: -10rem; animation-delay: 5s; }
.orb-6 { width: 18rem; height: 18rem; background: rgba(0, 191, 166, 0.2); top: 10%; right: 25%; animation-delay: 2s; }
.orb-7 { width: 24rem; height: 24rem; background: rgba(59, 130, 246, 0.1); bottom: 10%; left: 25%; animation-delay: 7s; }
.orb-8 { width: 24rem; height: 24rem; background: linear-gradient(135deg, rgba(0, 191, 166, 0.2), rgba(34, 211, 238, 0.15)); top: -12rem; left: -12rem; }
.orb-9 { width: 20rem; height: 20rem; background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1)); top: 20%; right: 10%; animation-delay: 3s; }
.orb-10 { width: 24rem; height: 24rem; background: linear-gradient(135deg, rgba(0, 191, 166, 0.2), rgba(34, 211, 238, 0.15)); top: -12rem; right: -12rem; }
.orb-11 { width: 20rem; height: 20rem; background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1)); top: 33%; left: -10rem; animation-delay: 4s; }
.orb-12 { width: 24rem; height: 24rem; background: linear-gradient(135deg, rgba(0, 191, 166, 0.2), rgba(34, 211, 238, 0.15)); top: -12rem; right: -12rem; }
.orb-13 { width: 20rem; height: 20rem; background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1)); top: 50%; left: -10rem; animation-delay: 4s; }
.orb-14 { width: 16rem; height: 16rem; background: rgba(0, 191, 166, 0.3); top: -5rem; right: -5rem; }
.orb-15 { width: 12rem; height: 12rem; background: rgba(59, 130, 246, 0.2); bottom: -2.5rem; left: -2.5rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

/* Gradient Mesh */
.gradient-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(at 20% 30%, rgba(0, 191, 166, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(139, 92, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(59, 130, 246, 0.05) 0px, transparent 50%);
  pointer-events: none;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
  border-color: var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(3deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.navbar:not(.scrolled) .logo-text {
  color: white;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--accent);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.hamburger, .hamburger::before, .hamburger::after {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.navbar:not(.scrolled) .hamburger,
.navbar:not(.scrolled) .hamburger::before,
.navbar:not(.scrolled) .hamburger::after {
  background: white;
}

.hamburger {
  position: relative;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-links.mobile-open .nav-link {
  color: var(--primary);
  font-size: 1.125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
}

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

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

.hero-card {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.4), rgba(34, 211, 238, 0.3), rgba(139, 92, 246, 0.3));
  border-radius: 1.5rem;
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

.hero-card-content {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  animation: heroZoom 8s ease-in-out infinite;
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.3), transparent, rgba(139, 92, 246, 0.3));
}

.hero-stat {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stat-live {
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22C55E;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-stat-uptime {
  bottom: 1rem;
  right: 1rem;
}

.stat-value {
  color: var(--accent);
}

.floating-stat {
  position: absolute;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  animation: floatStat 4s ease-in-out infinite;
}

.stat-projects {
  bottom: -1.5rem;
  left: -1.5rem;
}

.stat-rating {
  top: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, #00BFA6, #22D3EE);
  color: white;
  animation-delay: 1s;
}

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

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-rating .stat-number {
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.stat-rating .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  position: relative;
  padding: 6rem 0;
  background: var(--background);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-image {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.service-image-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, white, transparent);
}

.gradient-teal { background: linear-gradient(135deg, #14B8A6, #22D3EE); }
.gradient-blue { background: linear-gradient(135deg, #3B82F6, #6366F1); }
.gradient-purple { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.gradient-orange { background: linear-gradient(135deg, #F97316, #FBBF24); }
.gradient-emerald { background: linear-gradient(135deg, #10B981, #14B8A6); }
.gradient-violet { background: linear-gradient(135deg, #8B5CF6, #A855F7); }

.service-icon-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.service-icon-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--accent);
}

.service-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--accent);
}

.service-description {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========================================
   CASE STUDIES SECTION
   ======================================== */
.case-studies {
  position: relative;
  padding: 6rem 0;
  background: white;
  overflow: hidden;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.case-card {
  cursor: pointer;
}

.case-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
}

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

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

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.case-link {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-link svg {
  width: 1rem;
  height: 1rem;
}

.case-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.case-card:hover .case-title {
  color: var(--accent);
}

.case-metric {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #1E293B, var(--primary));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 191, 166, 0.3);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 191, 166, 0.3);
}

.author-name {
  font-weight: 600;
  color: white;
}

.author-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background), rgba(0, 191, 166, 0.05), rgba(139, 92, 246, 0.05));
}

.about-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

.about-card-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.about-card-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-list li {
  display: flex;
  gap: 1rem;
}

.value-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00BFA6, #22D3EE);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.values-list strong {
  color: var(--primary);
}

.values-list div {
  color: var(--muted);
}

.team-title {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.team-avatar {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  border-color: rgba(0, 191, 166, 0.5);
  box-shadow: 0 0 20px rgba(0, 191, 166, 0.2);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.team-role {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--muted);
  font-size: 0.875rem;
  max-width: 250px;
  margin: 0 auto;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--background);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

.blog-card {
  position: relative;
  overflow: hidden;
}

.blog-card-bar {
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.blog-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s ease;
}

.blog-link:hover svg {
  transform: translateX(4px);
}

.blog-cta {
  position: relative;
  text-align: center;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.cta-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.cta-title {
  position: relative;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.cta-text {
  position: relative;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.newsletter-form {
  position: relative;
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--accent);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background), rgba(0, 191, 166, 0.05), rgba(139, 92, 246, 0.05));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

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

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
}

.contact-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.contact-card p {
  color: var(--muted);
  font-size: 0.875rem;
}

.text-muted {
  color: var(--muted);
  opacity: 0.8;
}

.contact-form-wrapper {
  position: relative;
  overflow: hidden;
}

.form-gradient-bar {
  height: 4px;
  background: linear-gradient(135deg, #00BFA6, #8B5CF6, #EC4899);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 6rem 0;
  background: white;
}

.cta-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .cta-box { padding: 5rem 4rem; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #1E293B, var(--primary));
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-heading {
  font-size: 1.875rem;
  color: white;
  margin-bottom: 1.5rem;
}

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

.cta-section .cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-brand .logo-text {
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-newsletter h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-form {
  display: flex;
  gap: 0.5rem;
}

.footer-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  outline: none;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form input:focus {
  border-color: var(--accent);
}

.footer-form .btn-icon {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  flex-shrink: 0;
}

.footer-form .btn-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #20BA5C;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  background: white;
  color: var(--primary);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ========================================
   ANIMATIONS (Simple AOS Alternative)
   ======================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
