/* Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, rgba(51,194,198,0.95) 0%, rgba(90,230,230,0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(51,194,198,0.3);
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
}

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

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

nav a:hover,
nav a.active {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Main Content */
main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  margin-top: -20px;
  position: relative;
  z-index: 100;
}

/* Typography */
h1 {
  font-size: 2.5em;
  color: #2c5f5f;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 2em;
  color: #33c2c6;
  margin: 30px 0 20px 0;
  text-align: center;
  font-weight: 600;
}

h3 {
  font-size: 1.3em;
  color: #2c5f5f;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
  text-align: center;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.service-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,252,253,0.9) 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(51,194,198,0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #33c2c6, #5ae6e6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(51,194,198,0.15);
}

.service-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #2c5f5f;
}

.service-card p {
  color: #666;
  font-size: 1em;
  text-align: left;
}

/* Call to Action */
.cta-section {
  margin-top: 40px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(51,194,198,0.1) 0%, rgba(90,230,230,0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgba(51,194,198,0.1);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #33c2c6 0%, #5ae6e6 100%);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(51,194,198,0.3);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(51,194,198,0.4);
}

/* Forms */
form {
  max-width: 600px;
  margin: 30px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,252,253,0.95) 100%);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 15px 20px;
  margin: 10px 0 20px 0;
  border: 2px solid rgba(51,194,198,0.2);
  border-radius: 15px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #33c2c6;
  box-shadow: 0 0 20px rgba(51,194,198,0.2);
  background: rgba(255,255,255,0.95);
}

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

form button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #33c2c6 0%, #5ae6e6 100%);
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(51,194,198,0.3);
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(51,194,198,0.4);
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 30px auto;
}

ul li {
  background: rgba(255,255,255,0.8);
  margin: 15px 0;
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #33c2c6;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(51,194,198,0.15);
}

ul li::before {
  content: '✨';
  margin-right: 10px;
  font-size: 1.2em;
}

/* Footer */
footer {
  background: linear-gradient(135deg, rgba(44,95,95,0.9) 0%, rgba(51,194,198,0.8) 100%);
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  backdrop-filter: blur(10px);
}

footer p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95em;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  main {
    margin: 10px;
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .logo {
    width: 80px;
    height: 80px;
  }
  
  nav {
    gap: 5px;
  }
  
  nav a {
    padding: 10px 16px;
    font-size: 0.9em;
  }
  
  h1 {
    font-size: 2em;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 1em;
  }
  
  form {
    padding: 30px 20px;
    margin: 20px 10px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 0;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  main {
    margin: 5px;
    padding: 25px 15px;
  }
  
  h1 {
    font-size: 1.8em;
  }
  
  nav a {
    padding: 8px 12px;
    font-size: 0.85em;
  }
}

/* Smooth Animations */
* {
  transition: all 0.3s ease;
}

/* Loading Animation */
body {
  animation: fadeIn 0.8s ease-in;
}

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

/* Floating Elements Animation */
.service-card {
  animation: float 6s ease-in-out infinite;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}