:root {
  --strawberry-red: #e63946;
  --bg-white: #ffffff;
  --bg-offset: #f8fafc;
  --text-main: #1d3557;
  --text-muted: #457b9d;
  --accent-blue: #a8dadc;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.5);
  --frosted-blue: #a8dadc;
  --steel-blue: #457b9d;
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  min-height: 100vh;
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Floating Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
  z-index: 1;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--strawberry-red);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--frosted-blue);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--steel-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Main Container */
.container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Glass Card Base */
.glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.logo-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--frosted-blue);
  box-shadow: 0 0 30px rgba(168, 218, 220, 0.3);
  transition: all 0.4s ease;
  animation: gentlePulse 3s infinite ease-in-out;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.4);
}

@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(168, 218, 220, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 218, 220, 0.5);
  }
}

.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  max-width: 300px;
  line-height: 1.4;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--strawberry-red);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

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

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--strawberry-red) 0%, #c1121f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background: white;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-offset);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* What We Offer Section */
.offerings {
  padding: 2.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.section-title {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-main);
}

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

.offering-item {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.offering-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.offering-icon {
  color: var(--strawberry-red);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.offering-icon svg {
  width: 32px;
  height: 32px;
}

.offering-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.offering-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact/Social Section */
.connect {
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.connect-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-offset);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.social-btn:hover {
  background: var(--strawberry-red);
  border-color: var(--strawberry-red);
  color: white;
  transform: translateY(-3px);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.heart {
  color: var(--strawberry-red);
  display: inline-block;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }
}

.copyright {
  color: rgba(69, 123, 157, 0.6);
  font-size: 0.8rem;
}

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

/* Loading Animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--frosted-blue);
  animation: loaderPulse 1.5s infinite ease-in-out;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .offerings {
    padding: 1.5rem;
  }

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

  .brand-text {
    font-size: 2rem;
  }
}
