/*
Theme Name: Lionscape Marketing Pro
Description: Professional digital marketing agency WordPress theme with modern design, SEO optimization, and responsive layout.
Version: 1.0
Author: Lionscape Marketing
*/

/* CSS Variables for Design System */
:root {
  --primary: 217, 91%, 23%;
  --primary-foreground: 0, 0%, 98%;
  --secondary: 217, 33%, 97%;
  --secondary-foreground: 217, 25%, 15%;
  --accent: 43, 96%, 56%;
  --accent-foreground: 217, 25%, 15%;
  --background: 0, 0%, 100%;
  --foreground: 217, 25%, 15%;
  --muted: 217, 12%, 96%;
  --muted-foreground: 217, 10%, 45%;
  --border: 217, 12%, 89%;
  --success: 142, 71%, 45%;
  --destructive: 0, 84%, 60%;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

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

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  background: hsl(var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: hsl(var(--accent-foreground));
  font-size: 0.875rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: hsl(var(--primary));
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 30px -10px hsl(var(--primary) / 0.3);
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.btn-secondary {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 8px 25px -8px hsl(var(--accent) / 0.3);
}

.btn-secondary:hover {
  background: hsl(var(--accent) / 0.9);
  transform: translateY(-1px);
}

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

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, hsl(217 91% 23%) 0%, hsl(230 83% 34%) 50%, hsl(250 84% 54%) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  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='0.03'%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");
  opacity: 0.2;
}

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

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-accent {
  color: hsl(var(--accent));
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: hsla(var(--primary-foreground), 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item .number {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--accent));
  margin-bottom: 0.25rem;
}

.trust-item .label {
  font-size: 0.875rem;
  color: hsla(var(--primary-foreground), 0.8);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -3px hsla(217, 25%, 15%, 0.1);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: hsla(var(--secondary), 0.3);
}

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

.section-badge {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.section-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

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

.service-card {
  background: hsl(var(--background));
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px hsl(var(--primary) / 0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: hsla(var(--primary), 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: hsla(var(--primary), 0.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.service-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

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

.service-features li::before {
  content: '✓';
  color: hsl(var(--success));
  font-weight: bold;
}

.service-result {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--success));
  margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

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

.stat-card {
  background: hsl(var(--background));
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px hsl(var(--primary) / 0.3);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: hsla(var(--primary), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

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

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

.testimonial-card {
  background: hsl(var(--background));
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px -8px hsl(var(--accent) / 0.3);
}

.testimonial-metric {
  background: hsla(var(--success), 0.1);
  color: hsl(var(--success));
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.testimonial-author {
  font-weight: 600;
  color: hsl(var(--foreground));
}

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

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(217 91% 23%) 0%, hsl(230 83% 34%) 50%, hsl(250 84% 54%) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  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='0.03'%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");
  opacity: 0.2;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: hsla(var(--primary-foreground), 0.9);
  margin-bottom: 3rem;
}

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

.cta-card {
  background: hsla(var(--primary-foreground), 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--primary-foreground), 0.2);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.cta-card-icon {
  width: 48px;
  height: 48px;
  color: hsl(var(--accent));
  margin: 0 auto 1rem;
}

.cta-card-title {
  font-weight: bold;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.5rem;
}

.cta-card-description {
  font-size: 0.875rem;
  color: hsla(var(--primary-foreground), 0.8);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: hsla(var(--primary-foreground), 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid hsla(var(--primary-foreground), 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: hsla(var(--primary-foreground), 0.8);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    gap: 0.5rem;
  }
  
  .trust-item .number {
    font-size: 1.25rem;
  }
}