/*
Theme Name: RocketSocial WordPress Theme
Description: A beautiful, responsive WordPress theme converted from React components with Calendly integration
Version: 2.0
Author: RocketSocial
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
*/

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core Brand Colors - Exact match from React app */
  --background: 0 0% 100%;
  --foreground: 225 25% 15%;
  --primary: 240 100% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 25 100% 60%;
  --secondary-foreground: 0 0% 100%;
  --muted: 240 10% 96%;
  --muted-foreground: 225 15% 45%;
  --accent: 280 100% 65%;
  --accent-foreground: 0 0% 100%;
  --border: 240 10% 90%;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, hsl(240 100% 60%) 0%, hsl(280 100% 65%) 50%, hsl(25 100% 60%) 100%);
  --rocket-gradient: linear-gradient(135deg, hsl(240 100% 60%), hsl(280 100% 65%));
  
  /* Shadows */
  --shadow-primary: 0 10px 40px -10px hsl(240 100% 60% / 0.3);
  --shadow-rocket: 0 20px 60px -10px hsl(240 100% 60% / 0.4);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  margin: 0;
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.logo img {
  height: 2rem;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav a:hover {
  color: hsl(var(--primary));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  font-size: 0.875rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-rocket);
}

.btn-hero {
  background: var(--rocket-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-primary);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-rocket);
}

.btn-hero .arrow {
  transition: var(--transition-smooth);
}

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

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

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 2rem 0;
  background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-text {
  space-y: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  background: var(--rocket-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.hero-cta {
  margin-bottom: 3rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.proof-icon {
  font-size: 1rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-rocket);
}

.floating-icon {
  position: absolute;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.floating-icon-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-icon-2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 1.5s;
}

/* Utility Classes */
.text-gradient {
  background: var(--rocket-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Sections */
section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}


.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-rocket);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--rocket-gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-bounce);
}

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

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.service-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: hsl(var(--primary));
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.about-story {
  max-width: 4xl;
  margin: 0 auto 4rem;
}

.story-card {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
  text-align: center;
}

.story-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.story-card p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.125rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--rocket-gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--rocket-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.values {
  text-align: center;
}

.values-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

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

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.value-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid hsl(var(--border));
  position: relative;
  transition: var(--transition-smooth);
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.pricing-card.popular {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-rocket);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rocket-gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--rocket-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-period {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  position: relative;
  padding-left: 2rem;
  display: flex;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
  font-weight: bold;
  font-size: 1.125rem;
  top: 0.75rem;
}

.guarantee {
  text-align: center;
  margin-top: 4rem;
}

.guarantee-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.guarantee-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 1.125rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: var(--hero-gradient);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 4xl;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-bottom: 3rem;
}

.btn-cta {
  background: white;
  color: hsl(var(--primary));
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
}

.guarantee-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
}

/* Footer */
.footer {
  background: hsl(var(--muted));
  padding: 3rem 0;
  text-align: center;
}

.footer p {
  color: hsl(var(--muted-foreground));
}

/* Modal Styles for Calendly */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.modal-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: hsl(var(--muted));
}

.modal-body {
  height: 600px;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .modal-content {
    margin: 1rem;
    max-height: 80vh;
  }
  
  .modal-body {
    height: 500px;
  }
}