/*
Theme Name: Gemini Media
Description: A modern WordPress theme for digital solutions and content monetization company
Version: 2.1
Author: Gemini Media
*/

/* Gemini Media Design System - Dark gradients with vibrant accents */

:root {
  /* Core backgrounds - Deep purple/blue gradients */
  --background: 250 25% 8%;
  --foreground: 0 0% 100%;

  /* Card backgrounds */
  --card: 250 20% 12%;
  --card-foreground: 0 0% 100%;

  /* Popover backgrounds */
  --popover: 250 20% 12%;
  --popover-foreground: 0 0% 100%;

  /* Primary - Vibrant cyan accent */
  --primary: 180 100% 50%;
  --primary-foreground: 250 25% 8%;

  /* Secondary - Warm purple */
  --secondary: 260 60% 65%;
  --secondary-foreground: 0 0% 100%;

  /* Muted elements */
  --muted: 250 15% 20%;
  --muted-foreground: 0 0% 70%;

  /* Accent - Bright orange */
  --accent: 15 100% 60%;
  --accent-foreground: 0 0% 100%;

  /* Destructive */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;

  /* Borders and inputs */
  --border: 250 15% 25%;
  --input: 250 15% 25%;
  --ring: 180 100% 50%;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(250 30% 15%), hsl(260 40% 25%));
  --gradient-hero: linear-gradient(135deg, hsl(250 25% 8%), hsl(260 35% 20%), hsl(280 40% 15%));
  --gradient-card: linear-gradient(135deg, hsl(250 20% 12%), hsl(260 25% 18%));
  --gradient-accent: linear-gradient(135deg, hsl(180 100% 50%), hsl(200 100% 60%));
  --gradient-secondary: linear-gradient(135deg, hsl(260 60% 65%), hsl(280 70% 75%));

  /* Shadows */
  --shadow-glow: 0 0 40px hsl(180 100% 50% / 0.3);
  --shadow-card: 0 10px 40px hsl(250 25% 8% / 0.4);
  --shadow-elegant: 0 20px 60px hsl(250 25% 8% / 0.6);

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --radius: 1rem;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--gradient-hero);
  color: hsl(var(--foreground));
  min-height: 100vh;
  line-height: 1.6;
}

/* Utility Classes */
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-card { background: var(--gradient-card); }
.bg-gradient-accent { background: var(--gradient-accent); }
.bg-gradient-secondary { background: var(--gradient-secondary); }

.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }

.transition-smooth { transition: var(--transition-smooth); }
.transition-bounce { transition: var(--transition-bounce); }

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

.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

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

@keyframes glow {
  from { box-shadow: 0 0 20px hsl(180 100% 50% / 0.2); }
  to { box-shadow: 0 0 40px hsl(180 100% 50% / 0.6); }
}

/* 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; }
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(250, 20%, 12%, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.site-title {
  font-size: 1.25rem;
  font-weight: bold;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.main-navigation {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.btn-hero {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px hsl(180 100% 50% / 0.4);
}

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

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

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

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Cards */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.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 {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.hero-title .gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 24rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-stats { margin: 0; }
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
}

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

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

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

.section-title .gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: var(--transition-smooth);
}

.service-item:hover {
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.service-item:hover .service-content h3 {
  color: hsl(var(--primary));
}

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

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.project-card {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.project-card:hover {
  box-shadow: var(--shadow-glow);
}

.project-logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.project-card:hover .project-logo {
  transform: scale(1.1);
}

.project-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.project-card:hover .project-title {
  color: hsl(var(--primary));
}

.project-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.project-category {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: hsl(var(--primary));
  transition: var(--transition-smooth);
}

.project-card:hover .project-category {
  color: hsl(var(--accent));
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-box {
  transition: var(--transition-smooth);
}

.stat-box:hover {
  color: hsl(var(--accent));
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: hsl(var(--muted-foreground));
}

/* Footer */
.site-footer {
  background: var(--gradient-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
}

.footer-content {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

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

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

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.footer-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.contact-item:hover {
  color: hsl(var(--primary));
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  border-radius: 0.25rem;
}

.footer-links a:hover {
  color: hsl(var(--primary));
  transform: translateX(0.25rem);
}

.footer-links a svg {
  transition: var(--transition-smooth);
}

.footer-links a:hover svg {
  transform: translateX(0.25rem);
}

/* Newsletter Form */
.newsletter-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 2rem;
}

.newsletter-input-group {
  display: flex;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group:focus-within {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px rgba(180, 100%, 50%, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: hsl(var(--muted-foreground));
}

.newsletter-input-group button {
  padding: 0.875rem 1rem;
  background: var(--gradient-accent);
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
}

.newsletter-input-group button:hover {
  background: linear-gradient(135deg, hsl(200 100% 60%), hsl(180 100% 50%));
  transform: scale(1.05);
}

.newsletter-input-group button:active {
  transform: scale(0.95);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.hero-stats {
  margin-bottom: 37px;
}
.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition-smooth);
  z-index: 1;
}

.social-link:hover::before {
  left: 0;
}

.social-link svg {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: white;
  border-color: hsl(var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 100%, 50%, 0.3);
}

.social-link:hover svg {
  transform: scale(1.1);
}

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

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 1px;
  background: var(--gradient-accent);
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

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

.footer-bottom-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: hsl(var(--primary));
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.mobile-menu-toggle:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--gradient-card);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.mobile-menu-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 1.5rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  color: hsl(var(--foreground));
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}



.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 2rem 0;
}

.mobile-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
  left: 100%;
}

.mobile-nav a:hover {
  color: hsl(var(--foreground));
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2.5rem;
}

.mobile-nav a:active {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-cta {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mobile-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition-smooth);
  z-index: 1;
}

.mobile-social-link:hover::before {
  left: 0;
}

.mobile-social-link svg {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.mobile-social-link:hover {
  color: white;
  border-color: hsl(var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 100%, 50%, 0.3);
}

.mobile-social-link:hover svg {
  transform: scale(1.1);
}

/* Apply platform-specific colors to mobile social links */
.mobile-social-link.social-facebook:hover {
  background: linear-gradient(135deg, #1877f2, #42a5f5) !important;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3) !important;
}

.mobile-social-link.social-twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #42a5f5) !important;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3) !important;
}

.mobile-social-link.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3) !important;
}

.mobile-social-link.social-linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc) !important;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3) !important;
}

.mobile-social-link.social-youtube:hover {
  background: linear-gradient(135deg, #ff0000, #ff4444) !important;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3) !important;
}

.mobile-social-link.social-tiktok:hover {
  background: linear-gradient(135deg, #000000, #333333) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.mobile-social-link.social-whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #4caf50) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

.mobile-social-link.social-telegram:hover {
  background: linear-gradient(135deg, #0088cc, #42a5f5) !important;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3) !important;
}

/* Mobile menu touch improvements */
@media (max-width: 767px) {
  .mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
  }
  
  .mobile-menu {
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-menu-content {
    width: 100%;
    max-width: 320px;
  }
  
  .mobile-menu-header {
    padding: 1rem 1.5rem;
  }
  
  .mobile-cta {
    padding: 1.5rem;
  }
  
  .mobile-social-links {
    padding: 1.5rem;
  }
}

/* Mobile menu animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.mobile-menu-content {
  animation: slideInRight 0.3s ease-out;
}

.mobile-menu.closing .mobile-menu-content {
  animation: slideOutRight 0.3s ease-in;
}

/* Mobile menu scrollbar styling */
.mobile-menu-content::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.mobile-menu-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* WordPress Specific Styles */
.wp-block-image {
  margin: 0;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 0.5rem;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-section .container {
  margin-top: 92px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-social-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.header-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition-smooth);
  z-index: 1;
}

.header-social-link:hover::before {
  left: 0;
}

.header-social-link svg {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  width: 14px;
  height: 14px;
}

.header-social-link:hover {
  color: white;
  border-color: hsl(var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(180, 100%, 50%, 0.2);
}

.header-social-link:hover svg {
  transform: scale(1.1);
}

/* Apply platform-specific colors to header social links */
.header-social-link.social-facebook:hover {
  background: linear-gradient(135deg, #1877f2, #42a5f5) !important;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3) !important;
}

.header-social-link.social-twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #42a5f5) !important;
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3) !important;
}

.header-social-link.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3) !important;
}

.header-social-link.social-linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc) !important;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3) !important;
}

.header-social-link.social-youtube:hover {
  background: linear-gradient(135deg, #ff0000, #ff4444) !important;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3) !important;
}

.header-social-link.social-whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #4caf50) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.header-social-link.social-telegram:hover {
  background: linear-gradient(135deg, #0088cc, #42a5f5) !important;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3) !important;
}

/* Hide header social links on mobile */
@media (max-width: 767px) {
  .header-social-links {
    display: none;
  }
}

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-toggle:hover {
  background: hsl(var(--muted));
  color: hsl(var(--primary));
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Cart Popup */
.cart-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: var(--gradient-card);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-popup.active {
  right: 0;
}

.cart-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cart-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(var(--muted));
  border-radius: 0.5rem;
  transform: scale(0);
  transition: var(--transition-smooth);
  z-index: 1;
}

.cart-close:hover::before {
  transform: scale(1);
}

.cart-close:hover {
  color: hsl(var(--foreground));
  transform: rotate(90deg);
}

.cart-close svg {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.cart-close:active {
  transform: rotate(90deg) scale(0.95);
}

.cart-content {
  padding: 1.5rem;
  flex: 1;
}

.cart-items {
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--muted));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-details {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-weight: 600;
  color: hsl(var(--primary));
}

.cart-item-remove {
  background: none;
  border: none;
  color: hsl(var(--destructive));
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: var(--transition-smooth);
}

.cart-item-remove:hover {
  background: hsl(var(--destructive));
  color: white;
}

.cart-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.cart-total-label {
  color: hsl(var(--muted-foreground));
}

.cart-total-amount {
  color: hsl(var(--primary));
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: hsl(var(--muted-foreground));
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cart-empty-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.cart-empty-subtext {
  font-size: 0.875rem;
}

/* Order Form */
.order-form {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.order-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-item.animate-in {
  margin-bottom: 14px;
}

.hero-image , .services-image {
  border-radius: 25px 60px 25px 60px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px rgba(180, 100%, 50%, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group .required {
  color: hsl(var(--destructive));
}

.submit-order-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}

.submit-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.submit-order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid hsl(var(--primary));
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success Message */
.order-success {
  text-align: center;
  padding: 2rem;
  color: hsl(var(--accent));
}

.order-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.order-success-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.order-success-message {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Footer Responsive Design */
@media (max-width: 767px) {
  .footer-content {
    padding: 3rem 0;
    gap: 2.5rem;
  }
  .nav-menu {
    display: flex;
        list-style: none;
        gap: 2rem;
        margin: 0;
        padding: 0;
        flex-direction: column;
  }
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    font-size: 0.8rem;
  }
  
  .contact-item {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .contact-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 0.5rem;
  }
  
  .newsletter-input-group input {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid hsl(var(--border));
  }
  
  .newsletter-input-group button {
    padding: 0.75rem 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  
  .social-links {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Footer Animations */
@keyframes footerSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: footerSlideUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Footer Hover Effects */
.footer-section:hover h4::after {
  width: 3rem;
}

/* Newsletter Form Success State */
.newsletter-form.success .newsletter-input-group {
  border-color: hsl(var(--accent));
  background: rgba(15, 100%, 60%, 0.1);
}

.newsletter-form.success .newsletter-input-group input {
  color: hsl(var(--accent));
}

/* Social Link Platform-Specific Colors */
.social-facebook:hover {
  background: linear-gradient(135deg, #1877f2, #42a5f5) !important;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3) !important;
}

.social-twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #42a5f5) !important;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3) !important;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3) !important;
}

.social-linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc) !important;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3) !important;
}

.social-youtube:hover {
  background: linear-gradient(135deg, #ff0000, #ff4444) !important;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3) !important;
}

.social-tiktok:hover {
  background: linear-gradient(135deg, #000000, #333333) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.social-whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #4caf50) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

.social-telegram:hover {
  background: linear-gradient(135deg, #0088cc, #42a5f5) !important;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3) !important;
}

/* Gallery Styles */
.gemini-gallery {
  margin: 2rem 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}

.filter-group label {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.gallery-filter {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.gallery-filter:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px rgba(180, 100%, 50%, 0.1);
}

.gallery-container {
  position: relative;
}

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

.gallery-grid[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid[data-columns="4"] {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  background: var(--gradient-card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-actions {
  display: flex;
  gap: 1rem;
}

.gallery-link,
.gallery-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  color: hsl(var(--foreground));
  border: none;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallery-link:hover,
.gallery-view:hover {
  background: hsl(var(--primary));
  color: white;
  transform: scale(1.1);
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: hsl(var(--foreground));
}

.gallery-client {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.gallery-type {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
}

.gallery-views {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.gallery-pagination {
  text-align: center;
  margin-top: 2rem;
}

.no-gallery-items {
  text-align: center;
  padding: 3rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

/* Featured Gallery */
.featured-gallery {
  margin: 2rem 0;
}

.featured-gallery .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  background: var(--gradient-card);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.gallery-modal-info {
  padding: 1.5rem;
  text-align: center;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-grid[data-columns="4"] {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid[data-columns="3"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-filters {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .filter-group {
    min-width: auto;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-grid[data-columns="2"],
  .gallery-grid[data-columns="3"],
  .gallery-grid[data-columns="4"] {
    grid-template-columns: 1fr;
  }
  
  .gallery-modal {
    padding: 1rem;
  }
  
  .gallery-modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .header-actions {
    gap: 0.5rem;
  }
  
  .cart-popup {
    width: 100%;
    max-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .cart-item-remove {
    align-self: flex-end;
  }
}

/* Loading and Error Messages */
.loading-message,
.no-packages,
.error-message {
  text-align: center;
  padding: 3rem 1.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

.loading-message {
  color: hsl(var(--primary));
}

.error-message {
  color: hsl(var(--destructive));
}

.no-packages {
  color: hsl(var(--muted-foreground));
}

/* Platform URL Styling */
.link-url {
  font-weight: 500;
  transition: var(--transition-smooth);
}

.link-url:hover {
  color: hsl(var(--accent));
}

/* No Platforms Message */
.no-platforms-message {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  margin: 2rem 0;
}

.no-platforms-message p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  margin: 0;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.gallery-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

.no-gallery-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.no-gallery-items p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    margin: 0;
}

.no-gallery-items a {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
}

.no-gallery-items a:hover {
    text-decoration: underline;
}

/* Custom Theme Colors - Will be overridden by dynamic CSS */