* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Garamond', serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* === NAVBAR === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0000e5;
}

/* === HEADER === */
header {
  text-align: center;
  padding: 6rem 2rem 3rem;
  background: linear-gradient(to right, #0000e5, #001155);
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
}

/* === SERVICES === */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.service {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.service h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.service p {
  font-size: 1rem;
}

.price {
  font-weight: bold;
  margin-top: 1rem;
  color: #0000e5;
}

/* === CONTACT FORM === */
.contact-container {
  max-width: 800px;
  margin: 5rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-container iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* === FOOTER === */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #f2f2f5;
  text-decoration: none;
}
/* === VIDEO BACKGROUND === */
    .video-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      z-index: -1;
    }

    .video-foreground iframe {
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      object-fit: cover;
    }