@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and Base Styles */
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, rgba(26, 84, 80, 0.9), rgba(42, 107, 102, 0.9)), url('5-min.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Header Styles */
.header-container {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 1200px;
  position: absolute;
  top: 20px;
  border-radius: 60px;
  padding: 15px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #1a5450;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: #ffffff;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  scale: 1.2;
}

/* Hero Content */
.hero-content {
  margin-top: 120px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  
  background: rgba(255, 255, 255, 0.15);
}

.contact-card i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-card p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Contact Form Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5450;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form Styles */
.form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #1a5450;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a5450;
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 84, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #1a5450, #2a6b66);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #2a6b66, #1a5450);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 84, 80, 0.3);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card,
.social-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.info-card h3,
.social-card h3 {
  font-size: 1.5rem;
  color: #1a5450;
  margin-bottom: 25px;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 1.3rem;
  color: #1a5450;
  margin-top: 5px;
  min-width: 20px;
}

.info-item h4 {
  font-size: 1.1rem;
  color: #1a5450;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-item p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link.facebook { background: #3b5998; }
.social-link.twitter { background: #1da1f2; }
.social-link.linkedin { background: #0077b5; }
.social-link.instagram { background: #e1306c; }

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: white;
  position: relative;
  z-index: 1;
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a5450;
  margin-bottom: 40px;
  font-weight: 700;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  z-index: 1;
}

.faq-section .section-header h2 {
  color: white;
}

.faq-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: white;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 30px 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
  max-height: 200px;
  padding: 0 30px 25px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1003;
  position: relative;
}

.mobile-nav-toggle:hover {
  color: #1a5450;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1003;
  }
  
  nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 1002;
  }
  
  nav.active {
    max-height: 320px;
    padding: 10px 0;
    opacity: 1;
  }
  
  nav a {
    color: #1a5450 !important;
    padding: 15px 40px;
    border-radius: 0;
    border-bottom: 1px solid rgba(26, 84, 80, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    text-align: left;
  }
  
  nav a:last-child {
    border-bottom: none;
  }
  
  nav a:hover {
    background-color: rgba(26, 84, 80, 0.1);
    transform: translateX(10px);
    color: #1a5450 !important;
  }
  
  .header-container {
    position: relative;
    overflow: visible;
    z-index: 1003;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    width: 95%;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  header {
    padding: 0 20px;
  }
  
  nav a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-card {
    padding: 20px 15px;
  }
  
  .form-container,
  .info-card,
  .social-card {
    padding: 20px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

/* Success message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
  animation: slideInDown 0.3s ease;
}

/* Interactive FAQ styles */
.faq-item {
  cursor: pointer;
  user-select: none;
}

.faq-question {
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

/* Loading state for form submission */
.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Additional button styles for consistency */
a.button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a5450, #2a6b66);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(26, 84, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
}

a.button:hover {
  background: linear-gradient(135deg, #2a6b66, #1a5450);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 84, 80, 0.4);
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}
