/* styles.css */
:root {
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-hover: rgba(255, 255, 255, 0.15);
  --glass-border: 1px solid rgba(255, 255, 255, 0.15);
  --glass-border-light: 1px solid rgba(255, 255, 255, 0.3);
  --glass-blur: blur(16px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  --glass-radius: 20px;
  
  --text-color: #ffffff;
  --text-color-muted: rgba(255, 255, 255, 0.7);
  
  --primary-color: #6366f1; /* Indigo */
  --secondary-color: #ec4899; /* Pink */
  --tertiary-color: #8b5cf6; /* Purple */
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1.125rem;
  background-color: #0f172a;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Dynamic Gradient Background */
.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #020617;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  animation: moveBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--primary-color);
  animation-delay: 0s;
}

.blob-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: var(--secondary-color);
  animation-delay: -5s;
}

.blob-3 {
  top: 30%;
  left: 20%;
  width: 45vw;
  height: 45vw;
  background: var(--tertiary-color);
  animation-delay: -10s;
}

@keyframes moveBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15vw, 15vh) scale(1.1); }
  100% { transform: translate(-10vw, 20vh) scale(0.9); }
}

a {
  text-decoration: none;
  color: inherit;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
}

.glass-panel-inner {
  background: rgba(0, 0, 0, 0.2);
  border: var(--glass-border);
  border-radius: 12px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: sticky;
  top: 1rem;
  z-index: 1000;
  margin: 1rem auto 4rem;
  max-width: 1400px;
  width: calc(100% - 4rem);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-img {
  height: 3rem;
  width: auto;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover:not(.btn) {
  color: #fca5a5;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.glass-btn {
  background: rgba(255, 255, 255, 0.05);
  border: var(--glass-border);
  color: #fff;
  backdrop-filter: var(--glass-blur);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border: var(--glass-border-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.glass-btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: var(--glass-border-light);
}

/* Layout */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  margin-bottom: 6rem;
  padding-top: 2rem;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  background: linear-gradient(to right, #fff, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  padding: 8rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #fbcfe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 3.5rem;
  color: var(--text-color-muted);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.glass-card {
  padding: 2.5rem;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: var(--glass-bg-hover);
  border: var(--glass-border-light);
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fbcfe8;
}

.glass-card p {
  font-size: 1.1rem;
  color: var(--text-color-muted);
}

/* About Section */
.about-section {
  padding: 5rem 4rem;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.35rem;
  color: var(--text-color-muted);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info, .contact-form {
  padding: 3rem;
}

.contact-info h3, .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-desc {
  color: var(--text-color-muted);
  margin-bottom: 2rem;
}

.address {
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.glass-input {
  width: 100%;
  padding: 1rem;
  border: var(--glass-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  outline: none;
  transition: all 0.3s ease;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.glass-input:focus {
  background: rgba(0, 0, 0, 0.4);
  border: var(--glass-border-light);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  margin: 4rem auto 2rem;
  max-width: 1400px;
  width: calc(100% - 4rem);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }

  .navbar {
    width: calc(100% - 2rem);
    padding: 1rem 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 5rem 2rem;
  }
}
