/* Modern Desk Pages Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Page Container */
.modern-desk-container {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* Hero Banner */
.desk-hero-banner {
  background: linear-gradient(135deg, #17365d 0%, #1a4275 25%, #2c5aa0 50%, #4a90e2 75%, #6bb6ff 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(23, 54, 93, 0.3);
}

.desk-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.desk-hero-content {
  position: relative;
  z-index: 2;
}

.desk-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.desk-hero-icon i {
  font-size: 3.5rem;
  color: white;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.desk-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Image */
.desk-header-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 3rem;
  border: 12px solid #17365D;
  box-shadow: 0 12px 40px rgba(23,54,93,0.25);
  transition: all 0.4s ease;
}

.desk-header-image:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(23,54,93,0.35);
}

/* Content Section */
.desk-content-section {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(23, 54, 93, 0.1);
  border: 2px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.desk-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #17365d 0%, #4a90e2 50%, #17365d 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Profile Section */
.desk-profile-section {
  flex: 0 0 350px;
  position: relative;
}

.desk-profile-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 12px solid #17365D;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(23,54,93,0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.desk-profile-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 30px rgba(23,54,93,0.1);
  pointer-events: none;
}

.desk-profile-image:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 16px 50px rgba(23,54,93,0.35);
  border-color: #4a90e2;
}

/* Message Content */
.desk-message-content {
  flex: 1;
  position: relative;
}

.desk-message-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #17365d;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #17365d 0%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1rem;
}

.desk-message-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4a90e2, transparent);
  border-radius: 2px;
}

.desk-message-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #475569;
  text-align: justify;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.desk-message-text strong {
  color: #17365d;
  font-weight: 700;
}

/* Quote Box */
.desk-quote-box {
  background: linear-gradient(135deg, #17365d 0%, #1a4275 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(23, 54, 93, 0.3);
}

.desk-quote-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.desk-quote-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(74,144,226,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.desk-quote {
  font-size: 1.4rem;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 2;
  line-height: 1.8;
  font-weight: 500;
}

.desk-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -20px;
  color: rgba(255,255,255,0.2);
  font-family: Georgia, serif;
}

.desk-quote::after {
  content: '"';
  font-size: 4rem;
  position: absolute;
  bottom: -40px;
  right: -20px;
  color: rgba(255,255,255,0.2);
  font-family: Georgia, serif;
}

/* Signature */
.desk-signature {
  text-align: right;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
  position: relative;
}

.desk-signature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #17365d, transparent);
}

.desk-signature-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #17365d;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.desk-signature-title {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .desk-content-section {
    gap: 2rem;
    padding: 2.5rem;
  }
  
  .desk-profile-section {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .desk-hero-title {
    font-size: 2rem;
  }
  
  .desk-hero-icon {
    width: 80px;
    height: 80px;
  }
  
  .desk-hero-icon i {
    font-size: 2.5rem;
  }
  
  .desk-content-section {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  
  .desk-profile-section {
    flex: none;
    width: 100%;
  }
  
  .desk-profile-image {
    height: 350px;
    border: 8px solid #17365D;
  }
  
  .desk-header-image {
    height: 300px;
    border: 8px solid #17365D;
  }
  
  .desk-message-title {
    font-size: 2rem;
  }
  
  .desk-message-text {
    font-size: 1rem;
  }
  
  .desk-quote {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .modern-desk-container {
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .desk-hero-banner {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .desk-hero-title {
    font-size: 1.6rem;
  }
  
  .desk-content-section {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .desk-profile-image {
    height: 300px;
    border: 6px solid #17365D;
    border-radius: 12px;
  }
  
  .desk-header-image {
    height: 250px;
    border: 6px solid #17365D;
    border-radius: 12px;
  }
  
  .desk-message-title {
    font-size: 1.6rem;
  }
  
  .desk-quote-box {
    padding: 2rem 1.5rem;
  }
  
  .desk-quote {
    font-size: 1.1rem;
  }
}
