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

/* Updated color palette for a softer, more professional look */
:root {
  --color-bg: #FAFAFA;
  --color-bg-secondary: #F5F5F5;
  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-accent: #1BB51C;
  --color-accent-hover: #16a116;
  --color-border: #e5e5e5;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(250, 250, 250, 0.8);
  border-bottom: 1px solid var(--color-border);
}

.logo img {
  height: 36px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(27, 181, 28, 0.08);
  border: 1px solid rgba(27, 181, 28, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--color-text);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Main Content */
.main-content {
  padding-top: 90px;
}

/* Redesigned hero section with elegant layout */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.accent-text {
  color: var(--color-accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 50px;
  font-weight: 400;
}

/* Added CTA button instead of countdown */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(27, 181, 28, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 181, 28, 0.3);
  background: var(--color-accent-hover);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* Added floating cards for visual interest */
.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 181, 28, 0.05) 0%, rgba(27, 181, 28, 0.02) 100%);
  border: 1px solid rgba(27, 181, 28, 0.1);
  backdrop-filter: blur(10px);
}

.card-1 {
  width: 300px;
  height: 400px;
  top: 15%;
  left: 10%;
  animation: float 20s ease-in-out infinite;
}

.card-2 {
  width: 250px;
  height: 300px;
  top: 50%;
  right: 8%;
  animation: float 25s ease-in-out infinite reverse;
}

.card-3 {
  width: 200px;
  height: 250px;
  bottom: 15%;
  left: 15%;
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

/* Contact Section */
.contact-section {
  padding: 120px 60px;
  background: white;
  border-top: 1px solid var(--color-border);
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-description {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Simplified form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(27, 181, 28, 0.08);
}

.form-group label {
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--color-text-secondary);
  font-size: 15px;
  pointer-events: none;
  transition: all 0.25s ease;
  background: var(--color-bg);
  padding: 0 6px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -10px;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
}

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

/* Cleaner button design */
.submit-btn {
  padding: 18px 40px;
  background: var(--color-text);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
  background: #000;
}

/* Footer */
.footer {
  padding: 60px 60px 40px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-separator {
  color: var(--color-text-secondary);
}

.footer-copy {
  color: var(--color-text-secondary);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 20px 30px;
  }

  .logo img {
    height: 30px;
  }

  .status-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hero-section {
    padding: 80px 30px;
    min-height: 75vh;
  }

  .hero-title {
    font-size: 42px;
  }

  .cta-button {
    padding: 16px 30px;
    font-size: 15px;
  }

  .floating-card {
    opacity: 0.3;
  }

  .card-1 {
    width: 200px;
    height: 280px;
  }

  .card-2 {
    width: 180px;
    height: 220px;
  }

  .card-3 {
    display: none;
  }

  .contact-section {
    padding: 80px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
  }

  .footer {
    padding: 40px 30px 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-separator {
    display: none;
  }
}
