/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  line-height: 1.6;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.section-title h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 15px #fff;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 350px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px) rotateZ(-0.5deg);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.contact-card h2 {
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

.contact-card p {
  margin: 0.7rem 0;
  font-size: 1rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-card i {
  color: #fff;
}

.map-container {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px #111;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: inset 0 0 5px #333;
  transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 12px #fff;
  background-color: #000;
  transform: scale(1.02);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Button */
.contact-btn {
  background: linear-gradient(to right, #fff, #999);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 5px #fff;
}

.contact-btn:hover {
  background: linear-gradient(to right, #aaa, #fff);
  transform: scale(1.03);
  animation: pulse 0.6s infinite;
  box-shadow: 0 0 12px #fff;
}

@keyframes pulse {
  0%, 100% { transform: scale(1.03); }
  50% { transform: scale(1.06); }
}

/* Social Icons */
.footer-social-icons a,
.social-icons a {
  transition: all 0.3s ease, text-shadow 0.3s;
}

.footer-social-icons a:hover,
.social-icons a:hover {
  color: #fff;
  text-shadow: 0 0 5px #fff;
  transform: scale(1.2);
}

/* Navigation Bar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 2rem;
  height: 70px;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards 0.2s;
}

.logo img {
  height: 45px;
  filter: drop-shadow(0 0 10px #fff);
  animation: glow 2s infinite alternate;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.5s; }
nav ul li:nth-child(2) { animation-delay: 0.6s; }
nav ul li:nth-child(3) { animation-delay: 0.7s; }
nav ul li:nth-child(4) { animation-delay: 0.8s; }
nav ul li:nth-child(5) { animation-delay: 0.9s; }

nav ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 5px;
  transition: color 0.5s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: width 0.5s ease;
}

nav ul li a:hover {
  color: #fff;
}

nav ul li a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards 1.0s;
}

.social-icons a {
  color: #aaa;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin: 0;
    display: none;
    transition: all 0.3s;
    z-index: 15;
  }

  nav ul.active {
    display: flex;
  }

  nav .social-icons {
    display: none;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-card, .contact-form {
    width: 100%;
    max-width: 600px;
  }

  .contact-card {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}

/* Small Devices */
@media (max-width: 480px) {
  .section-title h1 {
    font-size: 2rem;
  }

  .contact-card h2 {
    font-size: 1.4rem;
  }

  .contact-card p,
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-btn {
    font-size: 0.95rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px #fff);
  }
  to {
    filter: drop-shadow(0 0 15px #fff);
  }
}