/* JANNAT Contact Page - Tropical Paradise Theme */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Playfair Display', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #00e6b8, #00aadd);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(0, 212, 170, 0.3);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.2), transparent);
  transition: left 0.5s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.1);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  animation: paradiseFloat 15s ease-in-out infinite;
}

@keyframes paradiseFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-15px) translateY(-15px); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #00d4aa, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: paradiseGlow 3s ease-in-out infinite alternate;
}

@keyframes paradiseGlow {
  0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
  100% { filter: drop-shadow(0 0 30px rgba(0, 212, 170, 0.8)); }
}

.hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #00d4aa;
  font-weight: 700;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.2);
}

.info-item .icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  min-width: 50px;
  text-align: center;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.social-links {
  margin-top: 2rem;
  text-align: center;
}

.social-links h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  font-weight: 700;
  text-align: center;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(0, 212, 170, 0.2);
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4aa;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  accent-color: #00d4aa;
}

.checkbox-item label {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2c3e50;
}

.checkbox-item a {
  color: #00d4aa;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-item a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  color: white;
  padding: 1.3rem 2rem;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: inline;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

/* Office Section */
.office-section {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.office-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
  font-weight: 700;
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.office-container {
  max-width: 800px;
  margin: 0 auto;
}

.office-placeholder {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 153, 204, 0.1));
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid rgba(0, 212, 170, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.office-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  animation: paradiseFloat 15s ease-in-out infinite;
}

.office-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.office-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 600;
}

.office-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.office-details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.office-details p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.office-details p:last-child {
  margin-bottom: 0;
}

.office-details strong {
  color: #00d4aa;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.2);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 2rem;
  max-height: 200px;
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(0, 212, 170, 0.3);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #00d4aa;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #00d4aa;
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 212, 170, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(30, 60, 114, 0.7);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 400px;
  margin: auto;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  text-align: center;
  animation: fadeIn 0.4s;
}

.modal-header h3 {
  color: #00d4aa;
  margin-bottom: 1rem;
}

.modal-body p {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.modal-footer {
  margin-top: 1.5rem;
}

.modal .btn-primary {
  background: linear-gradient(45deg, #00d4aa, #0099cc);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.modal .btn-primary:hover {
  background: linear-gradient(45deg, #0099cc, #00d4aa);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .contact-section,
  .services-section,
  .faq-section {
    padding: 80px 0;
  }
  
  .office-section {
    padding: 80px 0;
  }
  
  .office-placeholder {
    padding: 2rem;
  }
  
  .office-content h3 {
    font-size: 1.5rem;
  }
  
  .office-details {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .contact-section,
  .services-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-info h2,
  .contact-form h2 {
    font-size: 1.8rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
  
  .info-item {
    padding: 1rem;
  }
  
  .info-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .office-section {
    padding: 60px 0;
  }
  
  .office-placeholder {
    padding: 1.5rem;
  }
  
  .office-content h3 {
    font-size: 1.3rem;
  }
  
  .office-details {
    padding: 1rem;
  }
  
  .office-details p {
    font-size: 0.9rem;
  }
} 