@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
:root {
  --primary: #4f8cff;
  --secondary: #ff6f61;
  --accent: #00e6d0;
  --bg-gradient: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
  --bg-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80');
  --text: #1a2233;
  --section-bg: rgba(255,255,255,0.92);
  --shadow: 0 8px 32px rgba(79,140,255,0.10);
  --radius: 20px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg-gradient), var(--bg-image) no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #4f8cff33 0%, #00e6d033 100%);
  pointer-events: none;
  animation: bgfade 8s ease-in-out infinite alternate;
}
@keyframes bgfade {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
.floating-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
  animation: float 8s ease-in-out infinite alternate;
}
.floating-shape.shape1 {
  top: 8vh; left: 5vw;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 30% 30%, var(--primary) 60%, transparent 100%);
  border-radius: 50%;
  animation-delay: 0s;
}
.floating-shape.shape2 {
  bottom: 10vh; right: 8vw;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 70% 70%, var(--secondary) 60%, transparent 100%);
  border-radius: 50%;
  animation-delay: 2s;
}
.floating-shape.shape3 {
  top: 50vh; left: 80vw;
  width: 60px; height: 60px;
  background: radial-gradient(circle at 50% 50%, var(--accent) 60%, transparent 100%);
  border-radius: 50%;
  animation-delay: 4s;
}
@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.08); }
}
header {
  background: var(--section-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.3s;
  backdrop-filter: blur(6px);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #4f8cff33);
}
.logo span {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
nav a:hover, nav a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem 1.5rem;
  position: relative;
  z-index: 2;
}
section {
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  padding: 2.5rem 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
section.visible {
  opacity: 1;
  transform: none;
}
section h2 {
  color: var(--primary);
  margin-top: 0;
  font-size: 2.1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #4f8cff11;
}
.about-img, .services-img, .contact-img {
  width: 100%;
  max-width: 340px;
  margin: 1.5rem auto 0 auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(79,140,255,0.13);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.about-img:hover, .services-img:hover, .contact-img:hover {
  transform: scale(1.04) rotate(-2deg);
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.service {
  flex: 1 1 220px;
  background: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 1px 12px rgba(79,140,255,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-8px) scale(1.04) rotate(1deg);
  box-shadow: 0 8px 32px rgba(255,111,97,0.13);
}
.service-icon {
  font-size: 2.7rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  animation: bounce 1.5s infinite alternate;
}
@keyframes bounce {
  to { transform: translateY(-10px); }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  padding: 0.7rem;
  border: 1.5px solid #b3d1ff;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  background: #f8fafc;
  transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover {
  background: var(--secondary);
  transform: scale(1.04);
}
.privacy {
  font-size: 1.01rem;
  color: #444;
  line-height: 1.7;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(79,140,255,0.10);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  transition: transform 0.4s;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 1rem;
  transition: background 0.2s;
}
.cookie-banner button:hover {
  background: var(--secondary);
}
@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1.2rem;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 1.5rem;
    min-width: 160px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1rem 0.5rem;
    display: none;
  }
  nav ul.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  main {
    padding: 1rem 0.3rem 4rem 0.3rem;
  }
  section {
    padding: 1.2rem 0.5rem;
  }
  .logo img {
    height: 40px;
    width: 40px;
  }
  .logo span {
    font-size: 1.1rem;
  }
  .floating-shape {
    width: 60px !important;
    height: 60px !important;
  }
} 