/*
Theme Name: AM-X Studio
Theme URI: https://amxstudio.ca
Author: AM-X Studio
Author URI: https://amxstudio.ca
Description: Thème premium pour AM-X Studio - Agence de marketing digital à Montréal. Design moderne avec animations avancées et effets visuels.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amx-studio
Tags: one-page, custom-colors, custom-logo, featured-images, full-width-template, responsive-layout
*/

/* ==========================================================================
   CSS Variables - Design System
   ========================================================================== */

/* Dark Mode (Default) */
:root,
.dark {
  /* Colors - HSL Format */
  --primary: 193, 60%, 57%;
  --primary-glow: 193, 75%, 70%;
  --background: 222, 47%, 11%;
  --foreground: 210, 40%, 98%;
  --card: 222, 47%, 15%;
  --card-foreground: 210, 40%, 98%;
  --muted: 217, 33%, 18%;
  --muted-foreground: 215, 20%, 65%;
  --accent: 193, 60%, 57%;
  --border: 217, 33%, 18%;
  --secondary: 217, 33%, 18%;
  --secondary-foreground: 210, 40%, 98%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(193, 60%, 57%), hsl(210, 100%, 50%));
  --gradient-hero: linear-gradient(135deg, hsla(193, 60%, 57%, 0.1), hsla(210, 100%, 50%, 0.05));
  
  /* Shadows */
  --shadow-glow: 0 0 40px hsla(193, 60%, 57%, 0.3);
  --shadow-elegant: 0 10px 30px -10px hsla(193, 60%, 57%, 0.2);
  
  /* Transitions - More fluid */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  
  /* Border Radius */
  --radius: 0.75rem;
}

/* Light Mode */
.light {
  --background: 210, 40%, 98%;
  --foreground: 222, 47%, 11%;
  --card: 0, 0%, 100%;
  --card-foreground: 222, 47%, 11%;
  --muted: 210, 40%, 96%;
  --muted-foreground: 215, 16%, 47%;
  --border: 214, 32%, 91%;
  --secondary: 210, 40%, 96%;
  --secondary-foreground: 222, 47%, 11%;
  --primary-glow: 193, 70%, 65%;
}

/* Glass effect adjustments for light mode */
.light .glass-effect {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  overflow-x: hidden;
  animation: page-reveal 0.8s ease-out;
}

@keyframes page-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

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

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Glass Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text Shadow Glow */
.text-shadow-glow {
  text-shadow: 0 0 20px hsla(var(--primary), 0.5);
}

/* Hover Lift Effect - More fluid */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elegant);
}

/* Background Grid Pattern */
.bg-grid-pattern {
  background-image: 
    linear-gradient(to right, hsla(var(--border), 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(var(--border), 0.3) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

/* ==========================================================================
   Gradient Classes - Harmonized Cyan/Blue Palette
   ========================================================================== */
.gradient-cyan-blue { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.gradient-sky-cyan { background: linear-gradient(135deg, #38bdf8, #06b6d4); }
.gradient-teal-cyan { background: linear-gradient(135deg, #2dd4bf, #06b6d4); }
.gradient-blue-indigo { background: linear-gradient(135deg, #3b82f6, #6366f1); }

/* Legacy gradients for compatibility */
.gradient-purple-pink { background: linear-gradient(135deg, #a855f7, #ec4899); }
.gradient-orange-red { background: linear-gradient(135deg, #f97316, #ef4444); }
.gradient-green-teal { background: linear-gradient(135deg, #22c55e, #14b8a6); }
.gradient-pink-rose { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.gradient-amber-orange { background: linear-gradient(135deg, #f59e0b, #f97316); }
.gradient-emerald-green { background: linear-gradient(135deg, #10b981, #22c55e); }
.gradient-slate-gray { background: linear-gradient(135deg, #64748b, #6b7280); }

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-2deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 20px hsla(var(--primary), 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 40px hsla(var(--primary), 0.6);
  }
}

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

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Animation Classes - Slower/More Fluid
   ========================================================================== */
.animate-fade-in {
  animation: fade-in 0.7s ease-out forwards;
}

.animate-fade-in-up {
  animation: fade-in-up 0.9s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.6s ease-out forwards;
}

.animate-float {
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
  will-change: transform;
}

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

.animate-bounce-slow {
  animation: bounce-slow 2s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

.animate-shimmer {
  animation: shimmer 2s infinite;
}

.animate-slide-in-left {
  animation: slide-in-left 0.7s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.7s ease-out forwards;
}

/* Animation with scroll trigger - initial state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays - Increased */
.delay-100 { animation-delay: 0.15s; }
.delay-200 { animation-delay: 0.3s; }
.delay-300 { animation-delay: 0.45s; }
.delay-400 { animation-delay: 0.6s; }
.delay-500 { animation-delay: 0.75s; }
.delay-600 { animation-delay: 0.9s; }
.delay-800 { animation-delay: 1.2s; }

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px) rotate(360deg);
  transition: transform 0.6s ease;
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   Theme Toggle Styles
   ========================================================================== */
.theme-toggle,
.theme-toggle-mobile {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  background: transparent;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.theme-toggle:hover,
.theme-toggle-mobile:hover {
  background: hsla(var(--foreground), 0.1);
}

.theme-toggle svg,
.theme-toggle-mobile svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  color: hsl(var(--foreground));
}

/* Dark mode (default): show sun, hide moon */
.theme-icon-sun {
  display: block;
}

.theme-icon-moon {
  display: none;
}

/* Light mode: hide sun, show moon */
.light .theme-icon-sun {
  display: none;
}

.light .theme-icon-moon {
  display: block;
}

.navbar-mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Active navbar link */
.navbar-link.active {
  color: hsl(var(--primary));
}

.navbar-link.active::after {
  width: 100%;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(var(--primary-glow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 0.2;
}

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

.btn-outline:hover {
  background: hsla(var(--primary), 0.1);
  border-color: hsla(var(--primary), 0.5);
}

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

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

.btn-ghost:hover {
  background: hsla(var(--foreground), 0.1);
}

/* ==========================================================================
   Card Styles
   ========================================================================== */
.card {
  background: hsla(var(--card), 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--border), 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.card:hover {
  border-color: hsla(var(--primary), 0.3);
}

.card-header {
  padding: 1.5rem;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-description {
  color: hsl(var(--muted-foreground));
}

/* Shine effect on card hover */
.card .shine-effect {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  overflow: hidden;
}

.card:hover .shine-effect {
  opacity: 1;
}

.card .shine-effect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 2s infinite;
}

/* ==========================================================================
   Badge Styles
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  color: white;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--primary), 0.2);
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.light .form-input,
.light .form-textarea {
  background: rgba(0, 0, 0, 0.03);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsla(var(--primary), 0.4);
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

/* ==========================================================================
   Navbar Styles
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: hsla(var(--background), 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(var(--border), 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar hidden state - slide up */
.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

/* Logo positioning - push to left */
.navbar-logo,
.custom-logo-link {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.navbar-logo img,
.custom-logo-link img,
.custom-logo {
  height: 5rem;
  width: auto;
  max-width: 200px;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.navbar-link {
  position: relative;
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.navbar-link:hover {
  color: hsl(var(--primary));
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.5s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

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

.navbar-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: hsl(var(--foreground));
  margin: 3px 0;
  transition: var(--transition-smooth);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.navbar-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem;
}

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

.navbar-mobile-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.navbar-mobile-link {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.navbar-mobile-link:hover {
  color: hsl(var(--primary));
  transform: translateX(8px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: hsl(var(--background));
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: hsla(var(--primary), 0.3);
}

.hero-orb-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsla(var(--accent), 0.3);
}

.hero-gradient-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(var(--primary), 0.05), transparent, hsl(var(--background)));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid hsla(var(--primary), 0.2);
}

.hero-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.hero-stat {
  text-align: center;
  transition: transform 0.5s ease;
}

.hero-stat:hover {
  transform: scale(1.1);
}

.hero-stat-number {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

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

.hero-cta {
  padding-top: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(var(--primary), 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.375rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: hsl(var(--primary));
  border-radius: 9999px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  padding: 8rem 0;
  background: hsla(var(--muted), 0.3);
  position: relative;
  overflow: hidden;
}

.services-bg-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.services-bg-orb-1 {
  top: 5rem;
  right: 0;
  background: hsla(var(--primary), 0.1);
}

.services-bg-orb-2 {
  bottom: 5rem;
  left: 0;
  background: hsla(var(--accent), 0.1);
}

.services-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid hsla(var(--primary), 0.2);
}

.section-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.section-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.services-grid {
  display: grid;
  gap: 2rem;
}

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

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

.service-card {
  height: 100%;
}

.service-card .card-gradient-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.service-card:hover .card-gradient-overlay {
  opacity: 0.05;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(3deg);
  box-shadow: var(--shadow-glow);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.service-features {
  list-style: none;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  padding: 0.375rem 0;
  transition: color 0.5s ease;
}

.service-card:hover .service-feature {
  color: hsl(var(--foreground));
}

.service-feature-dot {
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio {
  padding: 8rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
}

.portfolio-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.portfolio-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: hsla(var(--primary), 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.portfolio-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.filter-btn:not(.active) {
  background: transparent;
  border: 1px solid hsla(var(--primary), 0.2);
  color: hsl(var(--foreground));
}

.filter-btn:not(.active):hover {
  border-color: hsla(var(--primary), 0.4);
  background: hsla(var(--primary), 0.05);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: var(--shadow-glow);
}

.portfolio-grid {
  display: grid;
  gap: 2rem;
}

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

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

.portfolio-item {
  cursor: pointer;
  height: 100%;
}

.portfolio-thumbnail {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--muted)), hsla(var(--muted), 0.5));
}

.portfolio-thumbnail-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity 0.7s ease;
}

.portfolio-item:hover .portfolio-thumbnail-gradient {
  opacity: 0.4;
}

.portfolio-thumbnail-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.portfolio-item:hover .portfolio-icon-wrapper {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.portfolio-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.portfolio-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.portfolio-content {
  padding: 1.5rem;
  position: relative;
}

.portfolio-glow {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-glow {
  opacity: 0.2;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-description {
  color: hsl(var(--muted-foreground));
  transition: color 0.5s ease;
}

.portfolio-item:hover .portfolio-description {
  color: hsl(var(--foreground));
}

.portfolio-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--primary));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-cta {
  opacity: 1;
}

.portfolio-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-cta svg {
  transform: translateX(4px);
}

/* Portfolio Media Styles */
.portfolio-thumbnail {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-video,
.portfolio-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-video {
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-video {
  opacity: 1;
}

.portfolio-image {
  z-index: 1;
  transition: transform 0.7s ease;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    hsla(var(--background), 0.8) 0%,
    hsla(var(--background), 0.2) 50%,
    transparent 100%
  );
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 0.4;
}

/* Ensure icons stay above media */
.portfolio-thumbnail-icon {
  z-index: 5;
}

.portfolio-badge {
  z-index: 5;
}

.shine-effect {
  z-index: 4;
}

/* GLightbox Customization */
.glightbox-clean .gslide-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.glightbox-clean .gslide-desc {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: hsla(var(--primary), 0.2);
  border: 1px solid hsla(var(--primary), 0.3);
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: hsla(var(--primary), 0.4);
}

.glightbox-clean .gclose {
  background: hsla(var(--background), 0.8);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  padding: 8rem 0;
  background: hsla(var(--muted), 0.3);
  position: relative;
  overflow: hidden;
}

.contact-bg-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contact-bg-orb-1 {
  top: 0;
  left: 0;
  background: hsla(var(--primary), 0.2);
}

.contact-bg-orb-2 {
  bottom: 0;
  right: 0;
  background: hsla(var(--accent), 0.2);
}

.contact-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

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

.contact-form-card {
  transition: box-shadow 0.5s ease;
}

.contact-form-card:hover {
  box-shadow: var(--shadow-elegant);
}

.contact-form-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.contact-form-row {
  display: grid;
  gap: 1.5rem;
}

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

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: hsla(var(--primary), 0.3);
}

.contact-info-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(3deg);
}

.contact-info-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.contact-info-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  transition: var(--transition-smooth);
}

.contact-info-card:hover .contact-info-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-value {
  color: hsl(var(--muted-foreground));
  transition: color 0.5s ease;
}

.contact-info-value a:hover {
  color: hsl(var(--primary));
  text-decoration: underline;
}

/* Consultation Card */
.consultation-card {
  border-color: hsla(var(--primary), 0.2);
  background: linear-gradient(135deg, hsla(var(--primary), 0.05), hsla(var(--accent), 0.05));
  text-align: center;
  padding: 1.5rem;
}

.consultation-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.consultation-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.consultation-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: hsla(var(--secondary), 0.5);
  backdrop-filter: blur(10px);
  color: hsl(var(--secondary-foreground));
  padding: 4rem 0;
  border-top: 1px solid hsla(var(--border), 0.5);
  position: relative;
  overflow: hidden;
}

.footer-bg-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.footer-bg-orb-1 {
  top: 0;
  left: 0;
  background: hsla(var(--primary), 0.05);
}

.footer-bg-orb-2 {
  bottom: 0;
  right: 0;
  background: hsla(var(--accent), 0.05);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand {
  max-width: 24rem;
}

.footer-logo {
  height: 3.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsla(var(--secondary-foreground), 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(var(--primary), 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.footer-social-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
  border-color: hsla(var(--primary), 0.3);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

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

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.footer-social-link:hover::before {
  opacity: 0.1;
}

.footer-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.footer-link {
  display: flex;
  align-items: center;
  padding: 0.375rem 0;
  color: hsla(var(--secondary-foreground), 0.7);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: hsl(var(--primary));
}

.footer-link-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: hsla(var(--primary), 0.5);
  margin-right: 0.5rem;
  transition: width 0.5s ease;
}

.footer-link:hover .footer-link-dot {
  width: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
  color: hsla(var(--secondary-foreground), 0.7);
}

.footer-contact-item span:first-child {
  color: hsl(var(--primary));
  margin-top: 2px;
}

.footer-contact-item a {
  transition: color 0.5s ease;
}

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

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

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

.footer-copyright {
  font-size: 0.875rem;
  color: hsla(var(--secondary-foreground), 0.6);
  text-align: center;
}

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

.footer-legal a {
  color: hsla(var(--secondary-foreground), 0.6);
  transition: color 0.5s ease;
}

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

/* ==========================================================================
   Contact Form 7 Styles
   ========================================================================== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--primary), 0.2);
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: hsla(var(--primary), 0.4);
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.wpcf7 input[type="submit"]:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.wpcf7-mail-sent-ok {
  background: hsla(142, 76%, 36%, 0.1);
  border: 1px solid hsla(142, 76%, 36%, 0.3);
  color: hsl(142, 76%, 36%);
}

.wpcf7-validation-errors {
  background: hsla(0, 84%, 60%, 0.1);
  border: 1px solid hsla(0, 84%, 60%, 0.3);
  color: hsl(0, 84%, 60%);
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */
.elementor-section {
  position: relative;
}

.elementor-widget-container {
  width: 100%;
}

/* Preserve styles when editing with Elementor */
.elementor-editor-active .animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Scroll Progress Indicator
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px hsla(var(--primary), 0.5);
}

/* ==========================================================================
   Notification Styles
   ========================================================================== */
.notification {
  position: fixed;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  animation: slide-in-notification 0.3s ease-out;
  max-width: 90%;
}

@keyframes slide-in-notification {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.notification-success {
  background: hsla(142, 76%, 36%, 0.15);
  border: 1px solid hsla(142, 76%, 36%, 0.3);
  color: hsl(142, 76%, 50%);
}

.notification-error {
  background: hsla(0, 84%, 60%, 0.15);
  border: 1px solid hsla(0, 84%, 60%, 0.3);
  color: hsl(0, 84%, 65%);
}

.notification button {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.notification button:hover {
  opacity: 1;
}

/* ==========================================================================
   Skeleton Loader
   ========================================================================== */
.skeleton-loader {
  position: absolute;
  inset: 0;
  background: hsla(var(--muted), 0.5);
  z-index: 1;
  overflow: hidden;
}

.skeleton-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(var(--foreground), 0.05),
    transparent
  );
  animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ==========================================================================
   Sound Indicator (Portfolio)
   ========================================================================== */
.sound-indicator {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-indicator svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners {
  padding: 4rem 0;
  background: hsla(var(--muted), 0.2);
  border-top: 1px solid hsla(var(--border), 0.3);
  border-bottom: 1px solid hsla(var(--border), 0.3);
}

.partners-header {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.partner-logo {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo img {
  max-height: 3rem;
  max-width: 8rem;
  object-fit: contain;
}

.light .partner-logo {
  filter: grayscale(100%) brightness(0.3);
}

.light .partner-logo:hover {
  filter: grayscale(0%) brightness(1);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  background: hsl(var(--background));
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: hsl(var(--foreground));
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-decoration-color: hsla(var(--primary), 0.3);
  transition: text-decoration-color 0.2s;
}

.legal-content a:hover {
  text-decoration-color: hsl(var(--primary));
}

.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(var(--border), 0.3);
  text-align: center;
}

.legal-intro {
  font-size: 1.1rem;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-note {
  background: hsla(var(--primary), 0.1);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 3px solid hsl(var(--primary));
}

.legal-update {
  margin-top: 2rem;
  color: hsl(var(--muted-foreground));
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: hsl(var(--foreground));
}

.legal-content ol {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* ==========================================================================
   Logo Fix - Adaptive visibility
   ========================================================================== */
.navbar-logo img,
.navbar-logo .custom-logo,
.footer-brand img,
.footer-logo {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  max-width: 180px;
}

/* Fix for SVG logos - ensure visibility in both themes */
.dark .navbar-logo img,
.dark .footer-brand img {
  filter: brightness(1.1);
}

.light .navbar-logo img,
.light .footer-brand img {
  filter: brightness(0.9);
}

/* Custom logo from WordPress */
.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo-link img {
  height: 3.5rem;
  width: auto;
}

/* ==========================================================================
   Form Select Dropdown
   ========================================================================== */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 767px) {
  .hero-orb-1 {
    width: 12rem;
    height: 12rem;
  }
  
  .hero-orb-2 {
    width: 16rem;
    height: 16rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .services-bg-orb,
  .contact-bg-orb,
  .footer-bg-orb {
    width: 16rem;
    height: 16rem;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  .navbar,
  .hero-scroll-indicator,
  .animate-float,
  .animate-float-slow,
  .back-to-top {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .services,
  .portfolio,
  .contact {
    min-height: auto;
    padding: 2rem 0;
  }
}
