/* Platform Partnership Section - EXACT React Match */
.platform-partnership-section {
  padding: 5rem 0;
  background-color: #1f2937; /* bg-gray-800 */
  position: relative;
}

.platform-content {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.8s ease-out forwards;
}

.platform-ref-image {
  width: 8rem;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}

.platform-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

@media (min-width: 1024px) {
  .platform-title {
    font-size: 3rem;
  }
}

.platform-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.platform-learn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  gap: 0.75rem;
}

.platform-learn-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.platform-learn-btn svg {
  transition: transform 1.5s ease;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.platform-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.8s 0.2s ease-out forwards;
}

.platform-images-left {
  space-y: 1.5rem;
}

.platform-images-right {
  space-y: 1.5rem;
  margin-top: 2rem;
}

.platform-image-card {
  background: linear-gradient(to bottom right, rgba(15, 20, 25, 0.8), rgba(30, 41, 59, 0.6));
  border-radius: 1rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.platform-image-card:hover {
  background: linear-gradient(to bottom right, rgba(15, 20, 25, 0.9), rgba(30, 41, 59, 0.8));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.platform-card-img {
  width: 100%;
  height: 6rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.platform-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.platform-card-desc {
  color: #d1d5db;
  font-size: 0.875rem;
}

.platform-glance-section {
  margin-top: 5rem;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.3), rgba(67, 56, 202, 0.3));
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.glance-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
  font-family: var(--font-heading);
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.glance-item {
  text-align: center;
}

.glance-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, #3b82f6, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.glance-icon svg {
  color: white;
}

.glance-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.glance-item-desc {
  color: #d1d5db;
}

/* Strategic Agenda Section - EXACT React Match */
.strategic-agenda-section {
  padding: 5rem 0;
  background-color: #111827; /* bg-gray-900 */
  position: relative;
  overflow: hidden;
}

.strategic-bg-overlay {
  position: absolute;
  inset: 0;
}

.strategic-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.strategic-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111827, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7));
}

.strategic-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.strategic-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.strategic-logo-img {
  height: 4rem;
  width: auto;
}

.strategic-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

@media (min-width: 1024px) {
  .strategic-title {
    font-size: 3rem;
  }
}

.strategic-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

.strategic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .strategic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .strategic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strategic-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.strategic-item:nth-child(1) { animation-delay: 0s; }
.strategic-item:nth-child(2) { animation-delay: 0.1s; }
.strategic-item:nth-child(3) { animation-delay: 0.2s; }
.strategic-item:nth-child(4) { animation-delay: 0.3s; }
.strategic-item:nth-child(5) { animation-delay: 0.4s; }
.strategic-item:nth-child(6) { animation-delay: 0.5s; }

.strategic-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.strategic-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.strategic-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.strategic-image-container {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.strategic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.strategic-card:hover .strategic-img {
  transform: scale(1.1);
}

.strategic-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.strategic-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.strategic-icon svg {
  color: #2563eb;
}

.strategic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.strategic-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.strategic-card:hover .strategic-card-title {
  color: #bfdbfe;
}

.strategic-discover {
  display: flex;
  align-items: center;
  color: #93c5fd;
  transition: color 0.3s ease;
  gap: 0.5rem;
}

.strategic-card:hover .strategic-discover {
  color: #bfdbfe;
}

.strategic-discover span {
  font-size: 0.875rem;
  font-weight: 600;
}

.strategic-discover svg {
  transition: transform 0.3s ease;
}

.strategic-card:hover .strategic-discover svg {
  transform: translateX(4px);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Utility Classes for React-style layout */
.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gap-16 {
  gap: 4rem;
}

.items-center {
  align-items: center;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

/* Ease with Chamber Section - EXACT React Match */
.ease-with-chamber-section {
  padding: 5rem 0;
  background-color: #1f2937; /* bg-gray-800 */
}

.ease-main-content {
  margin-bottom: 5rem;
}

.ease-image-side {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.8s ease-out forwards;
}

.ease-image-container {
  position: relative;
  background: linear-gradient(to bottom right, rgba(30, 64, 175, 0.2), rgba(109, 40, 217, 0.2));
  border-radius: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ease-building-img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ease-image-container:hover .ease-building-img {
  transform: scale(1.08);
}

.ease-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.ease-content-side {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.8s 0.2s ease-out forwards;
}

.ease-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

@media (min-width: 1024px) {
  .ease-title {
    font-size: 3rem;
  }
}

.ease-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ease-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ease-buttons {
    flex-direction: row;
  }
}

.ease-join-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #2563eb, #3b82f6, #4f46e5);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  gap: 0.75rem;
}

.ease-join-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.ease-join-btn svg {
  transition: transform 1.5s ease;
  animation: arrowMove 1.5s infinite;
}

.ease-discover-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ease-discover-btn:hover {
  transform: scale(1.05) translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
}

.ease-values-section {
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.ease-values-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
  font-family: var(--font-heading);
}

.ease-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ease-value-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ease-value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.ease-value-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, #3b82f6, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ease-value-icon svg {
  color: white;
}

.ease-value-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.ease-value-desc {
  color: #d1d5db;
}

.ease-focus-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.2s ease-out forwards;
}

.ease-focus-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
  font-family: var(--font-heading);
}

.ease-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ease-focus-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ease-focus-item:hover {
  transform: scale(1.05);
}

.ease-focus-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ease-focus-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ease-focus-item:hover .ease-focus-img {
  transform: scale(1.1);
}

.ease-focus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.ease-focus-name {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

/* IChamber Gallery Section - EXACT React Match */
.ichamber-gallery-section {
  padding: 5rem 0;
  background-color: #111827; /* bg-gray-900 */
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

@media (min-width: 1024px) {
  .gallery-title {
    font-size: 3rem;
  }
}

.gallery-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

.gallery-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }

.gallery-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.gallery-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
  padding: 1.5rem;
}

.gallery-item-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.gallery-item-desc {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Media Room Section - EXACT React Match */
.media-room-section {
  padding: 5rem 0;
  background-color: #1f2937; /* bg-gray-800 */
}

.media-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.media-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

@media (min-width: 1024px) {
  .media-title {
    font-size: 3rem;
  }
}

.media-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

.media-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .media-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .media-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.media-video-item {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.media-video-item:nth-child(1) { animation-delay: 0s; }
.media-video-item:nth-child(2) { animation-delay: 0.1s; }
.media-video-item:nth-child(3) { animation-delay: 0.2s; }

.media-video-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.media-video-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.media-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-video-item:hover .media-video-thumbnail {
  transform: scale(1.05);
}

.media-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.media-video-item:hover .media-video-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.media-play-button-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-play-button {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626; /* bg-red-600 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.media-play-button:hover {
  background-color: #b91c1c; /* bg-red-700 */
  transform: scale(1.1);
}

.media-video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.media-video-content {
  padding: 1.5rem;
}

.media-video-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Minimal Newsletter Section - EXACT React Match */
.minimal-newsletter-section {
  padding: 4rem 0;
  background-color: #111827; /* bg-gray-900 */
}

.max-w-4xl {
  max-width: 56rem;
}

.text-center {
  text-align: center;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #dbeafe; /* bg-blue-50 */
  border: 1px solid #bfdbfe; /* border-blue-200 */
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.newsletter-badge svg {
  color: #2563eb; /* text-blue-600 */
}

.newsletter-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb; /* text-blue-600 */
}

.newsletter-main-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .newsletter-main-heading {
    font-size: 1.875rem;
  }
}

.newsletter-main-desc {
  color: #d1d5db; /* text-gray-300 */
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-main-form {
  max-width: 28rem;
  margin: 0 auto;
}

.newsletter-main-input-group {
  display: flex;
  gap: 0.75rem;
}

.newsletter-main-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: #1f2937; /* bg-gray-800 */
  border: 1px solid #4b5563; /* border-gray-600 */
  color: white;
  transition: all 0.2s ease;
}

.newsletter-main-input::placeholder {
  color: #9ca3af; /* placeholder-gray-400 */
}

.newsletter-main-input:focus {
  outline: none;
  ring: 2px;
  ring-color: #3b82f6; /* focus:ring-blue-500 */
  border-color: transparent;
  transform: scale(1.01);
}

.newsletter-main-button {
  padding: 0.75rem 1.5rem;
  background-color: #2563eb; /* bg-blue-600 */
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.newsletter-main-button:hover {
  background-color: #1d4ed8; /* hover:bg-blue-700 */
  transform: scale(1.02);
}

.newsletter-main-button:active {
  transform: scale(0.98);
}

.newsletter-community-text {
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Gallery Call to Action */
.gallery-cta {
  text-align: center;
  margin-top: 4rem;
}

.gallery-view-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #2563eb, #3b82f6, #4f46e5);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.75rem;
}

.gallery-view-all-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.gallery-view-all-btn svg {
  transition: transform 0.3s ease;
}

.gallery-view-all-btn:hover svg {
  transform: translateX(4px);
}

/* Media Channel Link */
.media-channel-link {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.media-channel-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #dc2626; /* bg-red-600 */
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.75rem;
}

.media-channel-btn.media-room-btn {
  background: linear-gradient(to right, #1e40af, #3b82f6, #60a5fa); /* Professional blue gradient */
}

.media-channel-btn:hover {
  transform: scale(1.05) translateY(-2px);
}

.media-channel-btn:hover:not(.media-room-btn) {
  background-color: #b91c1c; /* bg-red-700 */
}

.media-channel-btn.media-room-btn:hover {
  background: linear-gradient(to right, #1e3a8a, #2563eb, #3b82f6);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.media-channel-btn svg:last-child {
  transition: transform 0.3s ease;
}

.media-channel-btn:hover svg:last-child {
  transform: translateX(4px);
}