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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #FFD700, #FFA500);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #FFA500, #FFD700);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Typography */
h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Background Animation Container */
.background-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  top: 80px;
  left: 40px;
  background: rgba(255, 215, 0, 0.1);
  animation-delay: 0s;
}

.orb-2 {
  bottom: 80px;
  right: 40px;
  background: rgba(0, 212, 255, 0.1);
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

/* Floating particles */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.btn-primary {
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #000000;
  box-shadow: 0 0 0 rgba(255, 215, 0, 0);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #00D4FF;
  color: #00D4FF;
}

.btn-secondary:hover {
  background: #00D4FF;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  transform: scale(1.05);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  animation: slideDown 0.6s ease;
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}

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

.logo {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  background: linear-gradient(to right, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.desktop-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

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

.nav-link {
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
  font-size: 1rem;
  font-weight: 400;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #FFD700, #00D4FF);
  transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
  width: 100%;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

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

.menu-icon {
  display: block;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  animation: fadeIn 0.3s ease;
}

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

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

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.mobile-nav-link:hover {
  color: #ffffff;
}

.mobile-cta {
  width: 100%;
  margin-top: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  padding: 2rem 0;
}

.fade-in {
  animation: fadeInUp 0.8s ease;
}

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

.hero-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

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

.gradient-text {
  background: linear-gradient(to right, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

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

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

.hero-buttons .btn {
  padding: 1.25rem 2rem;
  min-width: 200px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

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

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #FFD700;
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

/* Section Styles */
section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}

@media (min-width: 640px) {
  section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.section-header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-divider {
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, #FFD700, #00D4FF);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.section-description {
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* About Section */
.about-section {
  background: transparent;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.feature-icon svg {
  color: #000000;
}

.feature-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #9ca3af;
}

/* Services Section */
.services-section {
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 39, 0.3) 50%, transparent 100%);
}

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

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

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0a0e27, #000000);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

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

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.service-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-glow {
  opacity: 1;
}

.service-content {
  position: relative;
  z-index: 10;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
}

.service-icon svg {
  color: #000000;
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #9ca3af;
  line-height: 1.6;
}

.service-line {
  height: 4px;
  width: 0;
  background: linear-gradient(to right, #FFD700, #00D4FF);
  margin-top: 1rem;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.service-card:hover .service-line {
  width: 100%;
}

/* Portfolio Section */
.portfolio-section {
  background: transparent;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.portfolio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
}

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

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

.portfolio-card picture {
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  padding: 1.5rem;
  width: 100%;
  animation: slideUp 0.3s ease;
}

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

.portfolio-category {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.portfolio-content h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #000000;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.portfolio-btn:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.portfolio-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-border {
  border-color: rgba(255, 215, 0, 0.5);
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 39, 0.3) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0a0e27, #000000);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.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:nth-child(4) { animation-delay: 0.4s; }

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #0a0e27, #1a1f3a, #0a0e27);
  border: 2px solid #FFD700;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.pricing-card.featured:hover {
  border-color: #FFD700;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #000000;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-card h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: #9ca3af;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.pricing-price {
  font-size: 1.875rem;
  color: #00D4FF;
  text-align: center;
  margin-bottom: 1.5rem;
}

.featured-price {
  color: #FFD700;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  color: #d1d5db;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.pricing-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card:not(.featured) .pricing-features svg {
  color: #00D4FF;
}

.pricing-card.featured .pricing-features svg {
  color: #FFD700;
}

.pricing-btn {
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-primary.pricing-btn {
  color: #000000;
}

.btn-primary.pricing-btn:hover {
  color: #000000;
}

.btn-secondary.pricing-btn {
  color: #00D4FF;
}

.btn-secondary.pricing-btn:hover {
  color: #ffffff;
}

/* Add-Ons Section */
.addons-section {
  background: transparent;
}

.addons-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

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

.addon-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
}

.addon-card:nth-child(1) { animation-delay: 0.05s; }
.addon-card:nth-child(2) { animation-delay: 0.1s; }
.addon-card:nth-child(3) { animation-delay: 0.15s; }
.addon-card:nth-child(4) { animation-delay: 0.2s; }
.addon-card:nth-child(5) { animation-delay: 0.25s; }
.addon-card:nth-child(6) { animation-delay: 0.3s; }

.addon-card:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.addon-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #00D4FF, #0066FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-icon svg {
  color: #ffffff;
}

.addon-content {
  flex: 1;
}

.addon-content h4 {
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.addon-price {
  color: #00D4FF;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 39, 0.5) 50%, #000000 100%);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 80rem;
  margin: 0 auto;
}

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

.contact-form-container {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0a0e27, #000000);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

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

.submit-btn {
  padding: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: slideInRight 0.6s ease forwards;
}

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

.contact-info-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-icon.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.contact-info-icon.gold svg {
  color: #000000;
}

.contact-info-icon.blue {
  background: linear-gradient(135deg, #00D4FF, #0066FF);
}

.contact-info-icon.blue svg {
  color: #ffffff;
}

.contact-info-card h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: #9ca3af;
}

.contact-link {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #00D4FF;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #E1306C, #FD1D1D);
}

.social-icon.linkedin {
  background: linear-gradient(135deg, #0077B5, #00A0DC);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-icon svg {
  color: #ffffff;
}

/* Footer */
.footer {
  position: relative;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

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

.footer-link {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 0.875rem;
  padding: 0;
}

.footer-link:hover {
  color: #ffffff;
}

/* Responsive utilities */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}
