@layer base {
  :root {
    --border-color: hsl(240, 3.7%, 15.9%);
    --border-width: 1px;
    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;
    --card: 240 10% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 240 10% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 240 5.9% 10%;
    --secondary: 240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 240 3.7% 15.9%;
    --muted-foreground: 240 5% 64.9%;
    --accent: 240 3.7% 15.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 3.7% 15.9%;
    --input: 240 3.7% 15.9%;
    --ring: 240 4.9% 83.9%;
    --radius: 0.5rem;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }

  .dark {
    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;
    --card: 240 10% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 240 10% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 240 5.9% 10%;
    --secondary: 240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 240 3.7% 15.9%;
    --muted-foreground: 240 5% 64.9%;
    --accent: 240 3.7% 15.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 3.7% 15.9%;
    --input: 240 3.7% 15.9%;
    --ring: 240 4.9% 83.9%;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Reset and base styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* 70px for desktop, 60px for mobile */
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px; /* Mobile header height */
  }
}

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

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

/* Add this new rule to handle fixed header spacing */
main {
  padding-top: 70px; /* Match header height */
  min-height: calc(100vh - 70px); /* Ensure content fills viewport */
}

@media (max-width: 768px) {
  main {
    padding-top: 60px; /* Mobile header height */
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header.top-bar {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: var(--border-width) solid var(--border-color);
    background-color: transparent;
    height: 70px;
}

header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: hsla(var(--background), 0.95);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

header .logo-wrapper,
header nav {
    max-width: none; /* Remove any max-width constraints */
}

header h1 {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid hsl(var(--primary));
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

header h1:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
}

header h1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: hsl(var(--primary) / 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

header h1:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Header Navigation */
header nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: 2rem;
}

header nav a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid hsl(var(--primary));
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

header nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

header nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: hsl(var(--primary) / 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

header nav a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  z-index: 100;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: hsl(var(--primary));
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile menu open state */
.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--primary) / 0.9),
        hsl(var(--secondary) / 0.9)
    );
    animation: gradientShift 12s ease infinite;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    border-radius: var(--radius);
}

.dynamic-headline {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: white;
    min-height: 4.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typing-text {
    border-right: 3px solid white;
    animation: blink 0.75s step-end infinite;
    padding-right: 0.5rem;
}

/* Typing cursor blink animation */
@keyframes blink {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid hsl(var(--primary));
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-cta .cta-button {
    background: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
}

.hero-cta .cta-button:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: hsl(var(--primary) / 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.cta-button.secondary {
    background: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
}

.cta-button.secondary:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* Sections */
section {
  padding: 4rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Remove the section hover effect */
section:hover {
  background-color: transparent;
}

/* Section Headings */
section h3 {
  font-size: 2rem;
  color: hsl(var(--primary));
  margin-bottom: 2.5rem;
  text-align: center;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid hsl(var(--primary));
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

section h3:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
}

section h3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: hsl(var(--primary) / 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

section h3:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Center the headings container */
.services, .portfolio, .why-choose-us {
  text-align: center;
}

/* Reset text alignment for content */
.services ul, .portfolio-items, .why-choose-us ul {
  text-align: left;
}

/* Portfolio */
.portfolio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.portfolio-item {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px hsl(var(--primary) / 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-item h4 {
  padding: 1rem;
  color: hsl(var(--card-foreground));
}

/* Form */
form {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 0;
  padding: 1rem;
}

input, 
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all 0.3s ease;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
  max-width: 100%;
}

.call-to-action form {
  background-color: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  margin-top: 2rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.call-to-action form input,
.call-to-action form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.call-to-action form textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus, textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
  transform: translateY(-2px);
}

/* Form Button */
button {
  color: hsl(var(--primary));
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid hsl(var(--primary));
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  width: auto;
  margin: 0 auto;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: hsl(var(--primary) / 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

button:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Services and Why Choose Us sections */
.services ul, .why-choose-us ul {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
  padding: 0;
  margin-top: 2rem;
}

.services li, .why-choose-us li {
  background-color: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services li:hover, .why-choose-us li:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px hsl(var(--primary) / 0.2);
}

.services li::before, .why-choose-us li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: hsl(var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services li:hover::before, .why-choose-us li:hover::before {
  transform: scaleX(1);
}

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

/* Dark mode toggle */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
  }
}

/* Icon Grid Section */
.icon-grid-section {
    background: hsl(var(--background));
    padding: 4rem 0;
    text-align: center;
}

.icon-grid-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

.icon-grid-section .subtext {
    font-size: 1.1rem;
    color: hsl(var(--foreground));
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.icon-item {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

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

.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.icon-wrapper i {
    font-size: 2rem;
    color: hsl(var(--primary));
    transition: all 0.3s ease;
}

.icon-item:hover .icon-wrapper i {
    transform: scale(1.1);
}

.icon-item h4 {
    font-size: 1.25rem;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.icon-item p {
    color: hsl(var(--foreground));
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--primary) / 0.05);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .icon-grid-section h2 {
        font-size: 2rem;
    }
    
    .icon-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .icon-item {
        padding: 1.5rem;
    }
}

/* Hero Price Highlight */
.hero-price-highlight {
  margin: 1.5rem 0;
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.2));
  border: 1px solid hsl(var(--primary) / 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--radius) * 2);
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(var(--primary));
  animation: pulse 2s ease-in-out infinite;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  z-index: 2;
  background-color: hsl(var(--background));
  padding: 5rem 2rem;
  width: 100%;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.pricing-section .subtext {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background-color: hsl(var(--card));
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px hsl(var(--primary) / 0.15);
  border-color: hsl(var(--primary) / 0.3);
}

.pricing-card.popular {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 30px hsl(var(--primary) / 0.2);
  transform: scale(1.05);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  padding: 0.4rem 1rem;
  border-radius: calc(var(--radius) * 2);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.package-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.package-price .currency {
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.package-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1;
}

.package-price .period {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.3rem;
}

.monthly-option {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
  line-height: 1.5;
}

.package-features li i {
  color: hsl(var(--primary));
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.package-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: transparent;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.package-cta:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px hsl(var(--primary) / 0.3);
}

.pricing-card.popular .package-cta {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.pricing-card.popular .package-cta:hover {
  background-color: hsl(var(--primary) / 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsl(var(--primary) / 0.4);
}

.pricing-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: hsl(var(--card) / 0.5);
  border-radius: var(--radius);
  border: 1px dashed hsl(var(--border));
}

.pricing-note p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin: 0;
}

.pricing-note i {
  color: hsl(var(--primary));
  margin-right: 0.5rem;
}

.pricing-note a {
  color: hsl(var(--primary));
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pricing-note a:hover {
  color: hsl(var(--primary) / 0.8);
}

/* FAQ Section */
.faq-section {
  position: relative;
  z-index: 2;
  background-color: hsl(var(--background));
  padding: 5rem 2rem;
  width: 100%;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.faq-section .subtext {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: hsl(var(--card));
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: transparent;
  border: none;
  color: hsl(var(--foreground));
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: hsl(var(--primary));
}

.faq-question i {
  transition: transform 0.3s ease;
  color: hsl(var(--primary));
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Responsive - Pricing and FAQ */
@media (max-width: 768px) {
  .pricing-section h2,
  .faq-section h2 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .package-price .amount {
    font-size: 2.8rem;
  }

  .price-badge {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Problem Solution Section */
.problem-solution {
  position: relative;
  z-index: 2;
  background-color: hsl(var(--background));
  padding: 4rem 2rem;
  width: 100%;
}

.problem-solution .container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.problem, .solution {
  padding: 2rem;
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  border: var(--border-width) solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Add service-style hover effects to problem and solution boxes */
.problem:hover, .solution:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px hsl(var(--primary) / 0.2);
}

.problem::before, .solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: hsl(var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.problem:hover::before, .solution:hover::before {
  transform: scaleX(1);
}

.problem h3, .solution h3 {
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Problem Solution Animations */
.problem {
  animation: slideInLeft 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.solution {
  animation: slideInRight 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Web Solutions Section */
.web-solutions {
  padding: 4rem 0;
  background: var(--background);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.solution-item {
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.solution-item:hover {
  transform: translateY(-5px);
}

.solution-item span {
  color: var(--foreground);
  font-size: 1.1rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.example-item {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  animation: scaleIn 0.6s ease-out;
  animation-fill-mode: both;
}

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

.example-item:hover {
  transform: translateY(-5px);
}

.example-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.example-item h4 {
  padding: 1.5rem;
  margin: 0;
  color: var(--primary);
  font-size: 1.25rem;
  text-align: center;
}

/* Package Button Updates */
.type-item .cta-button {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.type-item .cta-button:hover {
  background: var(--primary);
  color: var(--card);
}

.type-item.package-card {
  border: 1px solid var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-item {
    margin-bottom: 1rem;
  }
}

/* WhatsApp Popup Styles */
.whatsapp-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  z-index: 1001;
  width: 300px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

.whatsapp-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

.whatsapp-popup-header h4 {
  color: hsl(var(--primary));
  margin: 0;
  font-size: 1.2rem;
}

#closeWhatsappPopup {
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

#closeWhatsappPopup:hover {
  color: hsl(var(--primary));
}

.whatsapp-popup-body {
  text-align: center;
}

.whatsapp-popup-body p {
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.whatsapp-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 100%;
}

#whatsappChat {
  background-color: #25d366;
  color: white;
}

#whatsappCall {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.whatsapp-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-option i {
  font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button-inner {
  background-color: #25d366;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-button:hover .whatsapp-button-inner {
  transform: scale(1.1);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Animate Pulse Class */
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border));
  animation: fadeIn 0.8s ease-out 0.4s both;
}

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

.cta-section p {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

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

.cta-button.primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  animation: pulse 3s ease-in-out infinite;
}

.cta-button.secondary {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
}

.cta-button.secondary:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* WhatsApp Caption */
.whatsapp-caption {
  position: fixed;
  bottom: 100px;
  right: 30px;
  animation: slideInRight 0.6s ease-out;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover + .whatsapp-caption {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-button::before {
    display: none;
  }

  .service-icon {
    font-size: 2rem;
  }
}

/* Service Icons */
.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  display: block;
}

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

.section-icon {
  margin-right: 0.5rem;
  color: var(--primary);
}

/* Call to Action Section */
.call-to-action {
  text-align: center;
  width: 100%;
}

.call-to-action .container {
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action form {
  background-color: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.call-to-action form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px hsl(var(--primary) / 0.2);
}
  
/* Responsive form adjustments */
@media (max-width: 768px) {
  .call-to-action .container {
    padding: 0 1rem;
  }
  
  form {
    padding: 1rem;
  }
  
  input, 
  textarea {
    font-size: 16px; /* Prevent zoom on mobile */
  }
}
  
/* Update Form Button to match header nav */
.call-to-action button[type="submit"] {
  color: hsl(var(--primary));
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid hsl(var(--primary));
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  width: auto;
  margin: 1rem auto 0;
}
  
/* Portfolio Section Enhancements */
.portfolio h3.mt-5 {
  margin-top: 5rem;
}

.marketing-solutions {
  margin-top: 2rem;
}

.marketing-solutions .portfolio-item {
  text-align: center;
}

.marketing-solutions .portfolio-item p {
  padding: 1rem;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
  line-height: 1.6;
}

.marketing-solutions .portfolio-item img {
  height: 250px;
  object-fit: contain;
  padding: 1rem;
  background-color: hsl(var(--background));
}

/* Marketing Solutions Section */
.marketing-solutions {
  background-color: hsl(var(--background));
  padding: 4rem 0;
  margin-top: -2rem;
}

.marketing-solutions .portfolio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.marketing-solutions .portfolio-item {
  text-align: center;
  padding: 2rem;
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.marketing-solutions .portfolio-item img {
  height: 300px;
  width: 100%;
  object-fit: contain;
  padding: 1.5rem;
  background-color: hsl(var(--background));
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.marketing-solutions .portfolio-item h4 {
  font-size: 1.25rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.marketing-solutions .portfolio-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
  opacity: 0.9;
}

/* Services Section New Styles */
.service-category {
  margin-bottom: 6rem;
  width: 100%;
}

.service-category h4 {
  font-size: 1.8rem;
  color: hsl(var(--primary));
  margin-bottom: 2rem;
  text-align: center;
}

/* Website Types Grid */
.website-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.2);
}

/* Website Examples Grid */
.website-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.example-item {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.example-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px hsl(var(--primary) / 0.2);
}

.example-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.example-item h5 {
  padding: 1rem;
  color: hsl(var(--primary));
  font-size: 1.1rem;
  text-align: center;
}

/* Service Questions */
.service-question {
  text-align: center;
  margin: 2rem 0;
}

.service-question h5 {
  font-size: 1.4rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Service Content Layout */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.service-info {
  text-align: left;
}

.benefits-list {
  list-style: none;
  margin-top: 1.5rem;
}

.benefits-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
}

.service-image {
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.2);
}

.image-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-content {
    grid-template-columns: 1fr;
  }
  
  .website-types {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.popup-content {
  background-color: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: popupIn 0.3s ease-out;
}

.popup-content h4 {
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.popup-content button {
  background-color: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-content button:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

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

/* Mobile Backdrop */
.mobile-backdrop {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
}

/* Mobile Responsive Popup */
@media (max-width: 480px) {
  .popup-content {
    width: 85%;
    padding: 1.5rem;
  }
}

/* Special Offer Section */
.special-offer {
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--card)));
}

.offer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  border: 2px solid hsl(var(--primary) / 0.2);
  position: relative;
  overflow: hidden;
}

.offer-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-content h3 {
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
  font-size: 2rem;
}

.price {
  margin-bottom: 2rem;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.price .ex-vat {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.5rem;
}

.offer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--foreground));
}

.offer-item svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
}

/* Mobile Responsive Offer */
@media (max-width: 768px) {
  .special-offer {
    padding: 2rem 0;
  }

  .offer-content {
    margin: 0 1rem;
    padding: 1.5rem;
  }

  .offer-badge {
    font-size: 0.75rem;
    padding: 0.4rem 2.5rem;
  }

  .offer-content h3 {
    font-size: 1.75rem;
  }

  .price .amount {
    font-size: 2.5rem;
  }
}

/* Update Top Bar Styles */
.top-bar {
    background: hsl(var(--background));
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid hsl(var(--border)/0.2);
    backdrop-filter: blur(10px);
    background-color: hsla(var(--background)/0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px; /* Reduced height */
}

.top-bar .container {
    padding: 0 1.5rem; /* Reduced padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Wrapper */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
    cursor: pointer;
}

.logo-icon {
    font-size: 1.25rem; /* Slightly smaller */
    color: hsl(var(--primary));
    transition: transform 0.3s ease;
}

.top-bar h1 {
    font-size: 1.5rem; /* Slightly smaller */
    margin: 0;
    font-weight: 700;
    color: hsl(var(--primary));
    transition: color 0.3s ease;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    gap: 1rem; /* Reduced gap */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Reduced gap */
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    position: relative;
    font-size: 0.9rem; /* Slightly smaller */
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
}

.mobile-menu-btn span {
    display: block;
    width: 24px; /* Slightly smaller */
    height: 2px; /* Thinner */
    background: hsl(var(--foreground));
    margin: 4px 0; /* Tighter spacing */
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        height: 60px; /* Even smaller on mobile */
    }
    
    .top-bar .container {
        padding: 0 1rem;
    }

    .logo-wrapper {
        gap: 0.25rem;
    }

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

    .top-bar h1 {
        font-size: 1.25rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: hsl(var(--background)/0.95);
        padding: 0.5rem;
        border-bottom: 1px solid hsl(var(--border));
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-menu a {
        padding: 0.75rem;
        justify-content: center;
    }
}

/* Modern Hero Section */
.gmb-seo-hero {
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='12' viewBox='0 0 42 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 5H0v2h6zm12 0H8v2h10zm12 0h-10v2h10zm12 0h-10v2h10z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E"), url('images/GMB.JPG'), url('images/SEO.JPG');
    background-size: auto, cover, cover;
    background-position: center, top left, top right;
    background-repeat: repeat, no-repeat, no-repeat;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius);
    margin: 1rem;
    background-blend-mode: overlay;
}

.gmb-seo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-text h1 {
    font-size: 3.2rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.hero-text p {
    font-size: 1.3rem;
    color: hsl(var(--foreground));
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid hsl(var(--primary));
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.cta-button.secondary {
    background: transparent;
    color: hsl(var(--primary));
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-images {
    position: relative;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: hsla(var(--background)/0.8);
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.image-caption {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.image-card:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-images {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gmb-seo-hero {
        padding: 4rem 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

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

    .image-grid {
        grid-template-columns: 1fr;
    }
}


/* Mobile Header Styles */
@media (max-width: 768px) {
  /* Header mobile fixes */
  header {
    height: 70px;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
  }

  header h1 {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    margin: 0;
    z-index: 1001;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    z-index: 1001;
    padding: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-bottom: 1px solid hsl(var(--border));
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  header nav ul {
    flex-direction: column;
    margin: 0;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  header nav a {
    display: block;
    text-align: center;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    margin: 0;
  }

  /* Adjust body padding to account for fixed header */
  body {
    padding-top: 70px;
  }

  /* Adjust scroll padding for smooth scrolling */
  html {
    scroll-padding-top: 70px;
  }

  /* Ensure WhatsApp button stays above nav menu */
  .whatsapp-button {
    z-index: 1002;
  }
}

/* Contact Options Popup */
.contact-options-popup .popup-content {
  max-width: 400px;
  padding: 2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-button svg {
  width: 32px;
  height: 32px;
}

.whatsapp-option {
  background-color: #25D366;
  border-color: #25D366;
  color: white;
}

.whatsapp-option:hover {
  background-color: #22c35e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.email-option {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.email-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.2);
}

.close-button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  background: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: hsl(var(--foreground));
}

@media (max-width: 480px) {
  .contact-buttons {
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: var(--background);
}

.service-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.service-item p {
  color: var(--foreground);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Design for Services */
@media (max-width: 992px) {
  .service-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-content {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    margin-bottom: 1rem;
  }
}

/* Packages Section */
.packages {
  padding: 4rem 0;
}

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

.package-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h3 {
  color: #007bff;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.package-features li {
  padding: 0.5rem 0;
  color: #444;
  position: relative;
  padding-left: 1.5rem;
}

.package-features li:before {
  content: "✓";
  color: #007bff;
  position: absolute;
  left: 0;
}

.package-card.basic {
  border-top: 4px solid #28a745;
}

.package-card.advanced {
  border-top: 4px solid #007bff;
}

.package-card.complete {
  border-top: 4px solid #6610f2;
}

.cta-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .services-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .package-card {
    margin-bottom: 1rem;
  }
}

/* Packages Section */
.packages {
    padding: 4rem 0;
    background: var(--background-alt);
}

.package-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.package-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-item:hover {
    transform: translateY(-5px);
}

.package-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-header h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--foreground);
    font-size: 1rem;
    opacity: 0.8;
}

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

.package-features {
    margin-bottom: 1.5rem;
}

.package-features h5 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--foreground);
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.package-platforms {
    margin-bottom: 1.5rem;
}

.package-platforms h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.package-platforms p {
    color: var(--foreground);
    font-size: 0.9rem;
}

.package-cta {
    text-align: center;
}

/* Package Cards */
.package-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: var(--border-width) solid var(--border-color);
    box-shadow: none;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.2);
}

.package-card.featured {
    border: 1px solid hsl(var(--border)); /* Update border */
    transform: scale(1.02);
}

.package-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.package-description {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-features li {
    color: var(--foreground);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.platform-info {
    font-size: 0.9rem;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* Additional Services */
.additional-services {
    background: var(--background-alt);
    padding: 4rem 0;
}

.additional-services .type-item {
    text-align: left;
    padding: 2rem;
}

.additional-services h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Standalone Services */
.standalone-services {
    padding: 4rem 0;
    background: var(--background-alt);
}

.standalone-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.standalone-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.standalone-item:hover {
    transform: translateY(-5px);
}

.standalone-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.standalone-item p {
    color: var(--foreground);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .package-content,
    .standalone-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-content,
    .standalone-content {
        grid-template-columns: 1fr;
    }
    
    .package-item,
    .standalone-item {
        margin-bottom: 1rem;
    }
}

/* Packages Section */
.packages {
    padding: 4rem 0;
    background: var(--background-alt);
}

.website-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.type-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.type-item:hover {
    transform: translateY(-5px);
}

.type-item h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.type-item p {
    color: var(--foreground);
    line-height: 1.6;
}

.package-subtitle {
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.package-description {
    margin-bottom: 1.5rem;
}

.package-features {
    margin-top: auto;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-features li {
    color: var(--foreground);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.platform-info {
    font-size: 0.9rem;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.type-item.package-card.featured {
    border: 2px solid hsl(var(--primary));
    transform: scale(1.02);
}

.type-item.package-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.3);
}

/* Additional Services */
.additional-services {
    padding: 4rem 0;
    background: var(--background);
}

.additional-services .type-item {
    text-align: left;
}

.additional-services h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .website-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .type-item.package-card.featured {
        transform: none;
    }
    
    .type-item.package-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .website-types {
        grid-template-columns: 1fr;
    }
    
    .type-item {
        margin-bottom: 1rem;
    }
}

.services h3,
.packages h3,
.additional-services h3 {
  text-align: left;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.services .container,
.packages .container,
.additional-services .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .dynamic-headline {
        font-size: 2.5rem;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .dynamic-headline {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
}
