/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

header .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffb347;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #ffb347;
}

/* Contact Hero */
.contact-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
}

.contact-text {
  max-width: 600px;
  animation: fadeInLeft 1.5s ease forwards;
}

.contact-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  animation: fadeInText 2s ease forwards;
}

.contact-image img {
  max-width: 500px;
  border-radius: 12px;
  animation: fadeInRight 1.5s ease forwards;
}

/* Contact Form */
.contact-form-section {
  text-align: center;
  padding: 80px 50px;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease forwards;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInUp 1.2s ease forwards;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #ff6b6b;
  box-shadow: 0 0 10px rgba(255,107,107,0.5);
  transition: 0.3s;
}

.contact-form .btn {
  background: linear-gradient(45deg, #ff6b6b, #ffb347);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s;
}

.contact-form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,107,107,0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 50px;
  background: rgba(0,0,0,0.7);
}

footer a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ffb347;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
  from { opacity: 0; }
  to { opacity: 1; }
}
