@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --background: 222 47% 6%;
  --foreground: 210 40% 98%;
  --card: 222 47% 9%;
  --card-foreground: 210 40% 98%;
  --popover: 222 47% 9%;
  --popover-foreground: 210 40% 98%;
  --primary: 45 93% 58%;
  --primary-foreground: 222 47% 6%;
  --secondary: 222 47% 14%;
  --secondary-foreground: 210 40% 98%;
  --muted: 222 47% 12%;
  --muted-foreground: 215 20% 55%;
  --accent: 222 47% 16%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;
  --border: 222 30% 18%;
  --input: 222 30% 18%;
  --ring: 45 93% 58%;
  --radius: 0.75rem;

  /* Custom gradients */
  --gradient-gold: linear-gradient(135deg, hsl(45 93% 58%) 0%, hsl(35 93% 48%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(222 47% 11%) 0%, hsl(222 47% 8%) 100%);
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(45 93% 58% / 0.15) 0%, transparent 60%);
  --shadow-card: 0 4px 24px -4px hsl(0 0% 0% / 0.3);
  --shadow-glow: 0 0 60px -12px hsl(45 93% 58% / 0.25);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

::selection {
  background-color: hsl(var(--primary) / 0.3);
  color: hsl(var(--foreground));
}

/* Utility Classes */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.bg-alt {
  background-color: hsl(var(--secondary) / 0.3);
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--gradient-gold);
  color: transparent;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav {
    height: 5rem;
  }
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-decoration: none;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-text {
  display: none;
}

@media (min-width: 1280px) {
  .phone-text {
    display: inline;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
  animation: fadeIn 0.6s ease-out forwards;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .btn-primary {
  margin-top: 0.5rem;
  text-align: center;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.5);
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary));
  border-color: hsl(var(--muted-foreground) / 0.3);
}

.btn-full {
  width: 100%;
}

/* Icons */
.icon {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--gradient-hero);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(hsl(var(--foreground)) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--foreground)) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease-out forwards;
}

.hero-badge .icon {
  color: hsl(var(--primary));
}

.hero-badge span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-cta .btn-primary {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.hero-cta .btn-secondary {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.hero-trust {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid hsl(var(--border));
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.trust-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.trust-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .trust-brands {
    gap: 3rem;
  }
}

.trust-brands span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .trust-brands span {
    font-size: 1rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid hsl(var(--muted-foreground) / 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background-color: hsl(var(--muted-foreground) / 0.5);
  border-radius: 9999px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.card-premium {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .card-premium {
    padding: 2rem;
  }
}

.card-premium:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s;
}

.card-premium:hover .service-icon {
  background-color: hsl(var(--primary) / 0.2);
}

.service-icon .icon {
  color: hsl(var(--primary));
}

.card-premium h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.card-premium p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Process Section */
.process-container {
  position: relative;
}

.process-line {
  display: none;
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: hsl(var(--border));
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.process-item {
  position: relative;
  text-align: center;
}

@media (min-width: 1024px) {
  .process-item {
    text-align: left;
  }
}

.process-number {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: hsl(var(--background));
  border: 2px solid hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--primary));
}

@media (min-width: 1024px) {
  .process-number {
    margin: 0 0 1.5rem;
  }
}

.process-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.process-item p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Technologies Section */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.tech-item {
  padding: 1rem 1.5rem;
  background-color: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.tech-item:hover {
  border-color: hsl(var(--primary) / 0.3);
  background-color: hsl(var(--secondary));
}

.tech-name {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.tech-category {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.expertise-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.expertise-item {
  text-align: center;
}

.expertise-value {
  font-size: 2.25rem;
  font-weight: 700;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--gradient-gold);
  color: transparent;
  margin-bottom: 0.5rem;
}

.expertise-item p {
  color: hsl(var(--muted-foreground));
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@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 {
  text-decoration: none;
  display: block;
}

.portfolio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.portfolio-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.3s;
}

.portfolio-item:hover h3 {
  color: hsl(var(--primary));
}

.portfolio-header .icon {
  color: hsl(var(--muted-foreground));
  transition: color 0.3s;
}

.portfolio-item:hover .portfolio-header .icon {
  color: hsl(var(--primary));
}

.portfolio-item p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.blog-item {
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.blog-category {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: 500;
}

.blog-time {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  transition: color 0.3s;
}

.blog-item:hover h3 {
  color: hsl(var(--primary));
}

.blog-item p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
  text-decoration: none;
  transition: gap 0.3s;
}

.blog-link:hover {
  gap: 0.75rem;
}

/* FAQ Section */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: hsl(var(--foreground));
  font-size: 1rem;
}

.faq-question span {
  padding-right: 1rem;
}

.faq-icon {
  color: hsl(var(--primary));
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 24rem;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.contact-info > div > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  text-decoration: none;
  transition: border-color 0.3s;
}

.contact-method:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.contact-method:hover .contact-icon {
  background-color: hsl(var(--primary) / 0.2);
}

.contact-icon .icon {
  color: hsl(var(--primary));
}

.contact-icon-green {
  background-color: hsl(142 71% 45% / 0.1);
}

.contact-icon-green .icon {
  color: hsl(142 71% 45%);
}

.contact-method:hover .contact-icon-green {
  background-color: hsl(142 71% 45% / 0.2);
}

.contact-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-value {
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* Contact Form */
.contact-form {
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.2s;
}

.input-field::placeholder {
  color: hsl(var(--muted-foreground));
}

.input-field:focus {
  outline: none;
  ring: 2px;
  ring-color: hsl(var(--primary) / 0.5);
  border-color: hsl(var(--primary) / 0.5);
}

.input-field:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea.input-field {
  resize: none;
}

#submitBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-text {
  display: inline;
}

#submitBtn.submitting .btn-text::after {
  content: '...';
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--card) / 0.5);
}

.footer .section-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: hsl(var(--muted-foreground));
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: hsl(var(--primary) / 0.2);
}

.footer-social a:first-child {
  background-color: hsl(142 71% 45% / 0.1);
}

.footer-social a:first-child:hover {
  background-color: hsl(142 71% 45% / 0.2);
}

.footer-social a:first-child .icon {
  color: hsl(142 71% 45%);
}

.footer-social .icon {
  color: hsl(var(--primary));
}

.footer-grid h4 {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: hsl(var(--foreground));
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.scroll-top-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s;
}

.scroll-top-btn:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.scroll-top-btn .icon {
  color: hsl(var(--muted-foreground));
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
}
