/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #2d3748;
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInArrow {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes fadeInOut {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  background-image: url('bkg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4)
  );
  transition: all 0.5s ease;
}
.hero:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 800px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero-logo {
  max-width: 400px;
  margin: 0 auto 2rem;
  animation: fadeIn 1s ease-out;
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.hero-logo:hover img {
  transform: scale(1.05);
}
.hero-content p {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1a365d;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #2c5282;
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: left;
}
.section.visible h2::after {
  transform: scaleX(1);
}

/* Philosophy Section */
.philosophy {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}

/* Clientele Section */
.clientele {
  text-align: center;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-form {
  width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d3748;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5282;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}
.button {
  width: 100%;
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.button:active {
  transform: translateY(0);
}

/* Legal Disclaimer Footer */
.legal-disclaimer {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 30px;
  font-size: 0.9rem;
  color: #4a5568;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  font-style: italic;
  line-height: 1.8;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.scroll-indicator.hidden {
  opacity: 0;
}
.scroll-arrow-container {
  animation: bounce 2s infinite 2.5s;
}
.scroll-arrow {
  width: 40px;
  height: 40px;
  border: solid white;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  display: inline-block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 300px;
  }
  .section {
    padding: 60px 20px;
  }
  .section h2 {
    font-size: 2rem;
  }
  .contact-container {
    gap: 2rem;
  }
  .contact-form,
  .address-info {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .address-info {
    order: -1;
  }
}

/* Additional Contact Section Styles */
.contact {
  text-align: center;
}
.contact h2 {
  margin-bottom: 3rem;
}
.contact h2::after {
  display: none;
}
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.address-info {
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  margin: 0 auto 2rem;
}
.address-info p {
  margin: 0;
  color: #2d3748;
  font-size: 0.95rem;
}
