/* escapella.world - Caribbean Pirate Theme CSS */

:root {
  --ocean-blue: #940000;
  --deep-sea: #660000;
  --treasure-gold: #d4af37;
  --sand-beige: #f4e4c1;
  --wood-brown: #5c4033;
  --coral-red: #ff6b6b;
  --sea-foam: #7fcdcd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(180deg, #e6f3f7 0%, #c7e9f1 100%);
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Pirata One', cursive;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Navigation - using existing structure */
#menu1 {
  background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--treasure-gold);
}

#menu1 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu {
  width: 100%;
  padding: 0;
}

.mobile-menu>.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  flex-wrap: nowrap;
}

.escapella-logo a {
  font-family: 'Pirata One', cursive;
  font-size: 2.5rem;
  color: var(--treasure-gold);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.escapella-logo a:hover {
  color: var(--sand-beige);
  transform: scale(1.05);
}

ul.menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

ul.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}

ul.menu li a:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--treasure-gold);
  color: var(--treasure-gold);
}

/* Hero Banner */
.escapella-inner-page-header {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #660000 0%, #940000 50%, #0088b8 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.escapella-inner-page-header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.escapella-inner-page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path d="M0,50 Q300,10 600,50 T1200,50 L1200,100 L0,100 Z" fill="rgba(127,205,205,0.3)"/></svg>') repeat-x;
  animation: wave 20s linear infinite;
}

@keyframes wave {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 1200px 0;
  }
}

.escapella-banner-text {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--treasure-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 20px;
}

.escapella-banner-text h2 {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.escapella-banner-text p {
  font-size: 1.2rem;
  color: #e6f3f7;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--treasure-gold) 0%, #e8c547 100%);
  color: var(--wood-brown);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Header Bottom Section */
.escapella-header-bottom-section {
  text-align: center;
  padding: 30px 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.escapella-header-bottom-section img {
  height: 60px;
  width: auto;
  opacity: 0.6;
}

/* Trading/Features Area */
.escapella-trnading-area {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4e4c1 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--deep-sea);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #5c6d7a;
}

.escapella-product-section-area {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.escapella-product-section-area:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--treasure-gold);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sea));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--treasure-gold);
}

.escapella-product-section-area h3 {
  font-size: 1.8rem;
  color: var(--deep-sea);
  margin-bottom: 15px;
}

.escapella-product-section-area p {
  font-size: 1rem;
  color: #5c6d7a;
  line-height: 1.7;
}

/* Welcome Area - Game Showcase */
.escapella-welcome-area {
  padding: 100px 0;
  background: linear-gradient(180deg, #f4e4c1 0%, #e6d5b8 100%);
}

.escapella-welcome-area-black {
  background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
  color: #ffffff;
}

.treasure-chest-frame {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--wood-brown), #3d2e25);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 5px solid var(--treasure-gold);
}

.chest-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--treasure-gold) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.escapella-welcome-text {
  padding: 0 40px;
}

.escapella-welcome-text span {
  font-size: 1rem;
  color: var(--treasure-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.escapella-welcome-area-black .escapella-welcome-text span {
  color: var(--treasure-gold);
}

.escapella-welcome-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: var(--deep-sea);
}

.escapella-welcome-area-black .escapella-welcome-text h2 {
  color: #ffffff;
}

.escapella-welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #5c6d7a;
}

.escapella-welcome-area-black .escapella-welcome-text p {
  color: #e6f3f7;
}

.game-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.game-features-list li {
  padding: 12px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.game-features-list i {
  color: var(--treasure-gold);
  font-size: 1.3rem;
}

.game-actions {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.btn-play,
.btn-demo,
.btn-learn {
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.btn-play {
  background: var(--treasure-gold);
  color: var(--wood-brown);
}

.btn-play:hover {
  background: #e8c547;
  transform: translateY(-3px);
  text-decoration: none;
}

.btn-demo {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.btn-learn {
  background: var(--ocean-blue);
  color: #ffffff;
}

.btn-learn:hover {
  background: var(--deep-sea);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 68, 102, 0.4);
  text-decoration: none;
}

.escapella-welcome-area-img {
  position: relative;
}

.escapella-welcome-area-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid var(--treasure-gold);
}

/* Disclaimer/Game Area */
.escapella-disclaimer-area {
  padding: 100px 0;
  background: #ffffff;
}

.game-header {
  text-align: center;
  margin-bottom: 50px;
}

.game-tag {
  font-size: 1rem;
  color: var(--ocean-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.game-header h2 {
  font-size: 3rem;
  color: var(--deep-sea);
  margin-bottom: 20px;
}

.game-header p {
  font-size: 1.1rem;
  color: #5c6d7a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.ifreamcontainer {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid var(--treasure-gold);
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Area */
.escapella-faq-area {
  padding: 100px 0;
  background: linear-gradient(180deg, #f4e4c1 0%, #e6d5b8 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 3rem;
  color: var(--deep-sea);
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #5c6d7a;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 3px solid var(--ocean-blue);
  padding: 25px 30px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-sea);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Raleway', sans-serif;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--ocean-blue);
  transition: transform 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  border-color: var(--treasure-gold);
}

.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.escapella-colleps-text {
  padding: 25px 30px;
  background: #f8f9fa;
  border: 3px solid var(--ocean-blue);
  border-top: none;
  border-radius: 0 0 15px 15px;
  margin-top: -15px;
}

.escapella-colleps-text p {
  font-size: 1rem;
  color: #5c6d7a;
  line-height: 1.7;
  margin: 0;
}

.escapella-colleps-text a {
  color: var(--ocean-blue);
  font-weight: 600;
  text-decoration: none;
}

.escapella-colleps-text a:hover {
  color: var(--deep-sea);
  text-decoration: underline;
}

/* Top Sale Area / Carousel */
.escapella-top-sale-area {
  padding: 100px 0;
  background: linear-gradient(180deg, #e6f3f7 0%, #c7e9f1 100%);
}

.escapella-top-sale-area h2 {
  font-size: 3rem;
  color: var(--deep-sea);
  text-align: center;
  margin-bottom: 60px;
}

.info-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--treasure-gold);
}

.info-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 30px 25px;
}

.card-content h3 {
  font-size: 1.6rem;
  color: var(--deep-sea);
  margin-bottom: 15px;
}

.card-content p {
  font-size: 1rem;
  color: #5c6d7a;
  line-height: 1.7;
}

/* Owl Carousel */
.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--ocean-blue) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 1.5rem !important;
  transition: all 0.3s ease !important;
  border: 2px solid var(--treasure-gold) !important;
}

.owl-carousel .owl-nav button:hover {
  background: var(--deep-sea) !important;
  transform: scale(1.1) !important;
}



.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--treasure-gold) !important;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
  padding: 60px 0 30px;
  border-top: 5px solid var(--treasure-gold);
}

.escapella-footer-logo {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.escapella-footer-logo img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.escapella-footer-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bg {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-menu li:last-child a {
  border-right: none;
}

.footer-menu li a:hover {
  color: var(--treasure-gold);
}

/* Additional Pages Content */
.escapella-about-section {
  padding: 80px 0;
  background: #ffffff;
}

.escapella-about-content {
  max-width: 900px;
  margin: 0 auto;
}

.escapella-about-tag {
  font-size: 1rem;
  color: var(--ocean-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.escapella-about-content h2 {
  font-size: 2.5rem;
  color: var(--deep-sea);
  margin-bottom: 25px;
}

.escapella-about-content h3 {
  font-size: 1.8rem;
  color: var(--ocean-blue);
  margin: 30px 0 20px;
}

.escapella-about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c6d7a;
  margin-bottom: 20px;
}

.escapella-about-content ul {
  padding-left: 30px;
  margin: 20px 0;
}

.escapella-about-content li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c6d7a;
  margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .escapella-banner-text h2 {
    font-size: 3.5rem;
  }

  .section-header h2,
  .game-header h2,
  .faq-header h2,
  .escapella-top-sale-area h2 {
    font-size: 2rem;
  }

  .escapella-product-section-area {
    min-height: auto;
  }

  .game-features-list li {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px 25px;
  }

  .footer-menu ul {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu li a {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    padding: 10px 0;
  }

  .footer-menu li:last-child a {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .escapella-logo a {
    font-size: 2rem;
  }

  .escapella-banner-text h2 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-play,
  .btn-demo,
  .btn-learn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .escapella-footer-logo img {
    width: 80px;
  }

  .treasure-chest-frame {
    height: 300px;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #e6f3f7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--ocean-blue), var(--deep-sea));
  border-radius: 10px;
  border: 2px solid var(--treasure-gold);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--deep-sea), #003344);
}

/* Selection Styling */
::selection {
  background: var(--treasure-gold);
  color: var(--wood-brown);
}

::-moz-selection {
  background: var(--treasure-gold);
  color: var(--wood-brown);
}

/* Additional Helper Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-sea);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sea));
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--deep-sea), #003344);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 68, 102, 0.3);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

table th {
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sea));
  color: #ffffff;
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

table td {
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  color: #5c6d7a;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover {
  background: #f8f9fa;
}

/* Alert Boxes */
.alert {
  padding: 20px 25px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 5px solid;
}

.alert-success {
  background: #d4edda;
  border-color: #28a745;
  color: #155724;
}

.alert-warning {
  background: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.alert-danger {
  background: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}

.alert-info {
  background: #d1ecf1;
  border-color: var(--ocean-blue);
  color: var(--deep-sea);
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 105, 148, 0.2);
  border-top-color: var(--ocean-blue);
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Mean Menu Responsive */
.mean-container .mean-bar {
  background: var(--deep-sea);
  border-bottom: 2px solid var(--treasure-gold);
}

.mean-container .mean-nav {
  background: var(--ocean-blue);
}

.mean-container .mean-nav ul li a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a:hover {
  background: var(--deep-sea);
  color: var(--treasure-gold);
}

.mean-container a.meanmenu-reveal {
  color: var(--treasure-gold);
}

/* Print Styles */
@media print {

  #menu1,
  .hero-buttons,
  .game-actions,
  footer,
  .escapella-footer-logo {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .escapella-inner-page-header {
    min-height: auto;
    padding: 40px 0;
  }
}

/* Additional Missing Classes */

/* Inner Header Variations */
.escapella-inner-page-header1 {
  min-height: 60vh;
}

.escapella-inner-page-header1 h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
}

/* Welcome Area Reverse */
.escapella-welcome-area-reverce .row {
  flex-direction: row-reverse;
}

/* Logo Area */
.escapella-logo-area {
  display: flex;
  align-items: center;
}

.escapella-logo {
  margin: 0;
  padding: 0;
}

.escapella-menu-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dgmenuwrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dgnav {
  display: flex;
  align-items: center;
}


ul.menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

ul.menu li {
  margin: 0;
  padding: 0;
}

ul.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}

ul.menu li a:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--treasure-gold);
  color: var(--treasure-gold);
}

ul.menu li:hover>ul {
  display: block;
}

.col-lg-3,
.col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-lg-9,
.col-md-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

ul.menu ul li a {
  padding: 12px 20px;
  display: block;
}

/* Contact Content */
.escapella-contact-contant {
  padding: 80px 0;
  background: #ffffff;
}

.escapella-contact-contant p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c6d7a;
  margin-bottom: 20px;
}

.escapella-contact-contant a {
  color: var(--ocean-blue);
  text-decoration: none;
  font-weight: 600;
}

.escapella-contact-contant a:hover {
  color: var(--deep-sea);
  text-decoration: underline;
}

/* Send Text Section */
.escapella-send-text {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--treasure-gold);
}

.escapella-send-text label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-sea);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.escapella-send-free {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sea));
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.escapella-send-free:hover {
  background: linear-gradient(135deg, var(--deep-sea), #003344);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 68, 102, 0.3);
}

/* Input Text Styles */
.input-text,
.input-text:focus {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.input-text:focus {
  outline: none;
  border-color: var(--ocean-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

.input-text-msg {
  min-height: 150px;
  resize: vertical;
}

/* Get in Touch */
.get-in-touch {
  padding: 80px 0;
}

/* Inner Details Section */
.escapella-inner-details-section {
  padding: 80px 0;
  background: #ffffff;
}

.escapella-inner-details-section h2 {
  font-size: 2.5rem;
  color: var(--deep-sea);
  margin-bottom: 25px;
}

.escapella-inner-details-section h3 {
  font-size: 1.8rem;
  color: var(--ocean-blue);
  margin: 30px 0 20px;
}

.escapella-inner-details-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c6d7a;
  margin-bottom: 20px;
}

.escapella-inner-details-section ul,
.escapella-inner-details-section ol {
  padding-left: 30px;
  margin: 20px 0;
}

.escapella-inner-details-section li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c6d7a;
  margin-bottom: 12px;
}

.escapella-inner-details-section a {
  color: var(--ocean-blue);
  font-weight: 600;
  text-decoration: none;
}

.escapella-inner-details-section a:hover {
  color: var(--deep-sea);
  text-decoration: underline;
}

/* Inner Page Main Text */
.escapella-inner-page-main-text {
  padding: 80px 0;
}

/* Symbol Area */
.escapella-symbol-area {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.escapella-symbol-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.escapella-symbol-area .container {
  position: relative;
  z-index: 2;
}

.escapella-symbol-area span {
  font-size: 1rem;
  color: var(--treasure-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.escapella-symbol-area h2 {
  font-size: 3rem;
  color: var(--treasure-gold);
  margin-bottom: 20px;
}

.escapella-symbol-area p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Game Area */
.escapella-game-area {
  padding: 80px 0;
  background: #ffffff;
}

.escapella-game-area h2 {
  font-size: 2.5rem;
  color: var(--deep-sea);
  margin-bottom: 20px;
}

.escapella-game-area p {
  font-size: 1.1rem;
  color: #5c6d7a;
  line-height: 1.8;
}

/* Game Panel */
.escapella-game-panel {
  padding: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  border: 3px solid var(--treasure-gold);
}

/* Card Area */
.escapella-card-area {
  padding: 80px 0;
  background: #ffffff;
}

/* Testimonial Sections */
.escapella-testimonial-page-img img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid var(--treasure-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.escapella-testimonial-page-text h3 {
  font-size: 1.6rem;
  color: var(--deep-sea);
  margin: 20px 0 10px;
}

.escapella-testimonial-page-text p {
  font-size: 1rem;
  color: #5c6d7a;
  line-height: 1.7;
}

.escapella-testimonial-margin {
  margin: 30px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px solid var(--treasure-gold);
}

/* Author Text */
.author-text h4 {
  font-size: 1.2rem;
  color: var(--deep-sea);
  margin-bottom: 5px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.author-text p {
  font-size: 0.95rem;
  color: #5c6d7a;
  margin: 0;
}

/* Copy Text */
.copy-text {
  text-align: center;
  color: #ffffff;
  padding: 20px 0;
}

.copy-text a {
  color: var(--treasure-gold);
  text-decoration: none;
}

.copy-text a:hover {
  text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb-item {
  display: inline-block;
  font-size: 0.95rem;
  color: #5c6d7a;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '›';
  padding: 0 10px;
  color: var(--treasure-gold);
}

.breadcrumb-item a {
  color: var(--ocean-blue);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--deep-sea);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--deep-sea);
  font-weight: 600;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
  list-style: none;
  padding: 0;
}

.page-item {
  display: inline-block;
}

.page-link {
  display: block;
  padding: 10px 18px;
  background: #ffffff;
  border: 2px solid var(--ocean-blue);
  color: var(--ocean-blue);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
  background: var(--ocean-blue);
  color: #ffffff;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  background: var(--ocean-blue);
  color: #ffffff;
}

.badge-gold {
  background: var(--treasure-gold);
  color: var(--wood-brown);
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ocean-blue), var(--treasure-gold));
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--ocean-blue);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--deep-sea);
  transform: translateY(-5px);
}

/* Sidebar */
.sidebar {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--treasure-gold);
}

.sidebar h3 {
  font-size: 1.6rem;
  color: var(--deep-sea);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--treasure-gold);
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 15px;
}

.sidebar a {
  color: var(--ocean-blue);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 10px;
  border-radius: 5px;
}

.sidebar a:hover {
  background: #f8f9fa;
  color: var(--deep-sea);
  padding-left: 15px;
}

/* Additional Responsive Fixes */
@media (max-width: 992px) {
  .escapella-welcome-area .row {
    flex-direction: column;
  }

  .escapella-welcome-area-reverce .row {
    flex-direction: column;
  }
}

/* Additional Missing Classes - Complete Set */

/* Mobile Menu Area */
.mobile-menu {
  display: flex;
  align-items: center;
}


.escapella-menu-area {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

/* Row Flex Fix */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

/* Column Responsive */
.col-12,
.col-md-4,
.col-lg-4,
.col-lg-6,
.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Collapse Classes for FAQ */
.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/* Button Reset */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* Item Styles for Carousel */
.item {
  position: relative;
}

/* Owl Theme Overrides */
.owl-theme .owl-nav {
  margin-top: 30px;
}

.owl-theme .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Strong and Em */
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

/* Links Default */
a {
  color: var(--ocean-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--deep-sea);
}

/* Image Responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* List Styles */
ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid var(--treasure-gold);
  outline-offset: 2px;
}

/* Disabled State */
.btn:disabled,
.form-control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Required Field */
.form-group.required label::after {
  content: ' *';
  color: var(--coral-red);
}

/* Error State */
.form-control.error {
  border-color: var(--coral-red);
}

.error-message {
  color: var(--coral-red);
  font-size: 0.875rem;
  margin-top: 5px;
}

/* Success State */
.form-control.success {
  border-color: #28a745;
}

.success-message {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 5px;
}

/* Hidden Class */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Text Alignment */
.text-left {
  text-align: left;
}

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

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

/* Spacing Utilities */
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* Display Utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

/* Flex Utilities */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

/* Width Utilities */
.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

/* Height Utilities */
.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

/* Position Utilities */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

/* Z-index Utilities */
.z-1 {
  z-index: 1;
}

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

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

/* Overflow Utilities */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* No Select */
.no-select {
  user-select: none;
}

/* Pointer Events */
.pointer-events-none {
  pointer-events: none;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* Shadow Utilities */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Border Radius */
.rounded {
  border-radius: 10px;
}

.rounded-sm {
  border-radius: 5px;
}

.rounded-lg {
  border-radius: 20px;
}

.rounded-circle {
  border-radius: 50%;
}

/* Border */
.border {
  border: 1px solid #dee2e6;
}

.border-0 {
  border: 0;
}

.border-top {
  border-top: 1px solid #dee2e6;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6;
}

/* Background Colors */
.bg-white {
  background-color: #ffffff;
}

.bg-transparent {
  background-color: transparent;
}

.bg-ocean {
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sea));
}

.bg-sand {
  background-color: var(--sand-beige);
}

/* Text Colors */
.text-white {
  color: #ffffff;
}

.text-ocean {
  color: var(--ocean-blue);
}

.text-gold {
  color: var(--treasure-gold);
}

.text-muted {
  color: #5c6d7a;
}

/* Font Weight */
.font-weight-light {
  font-weight: 300;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

/* Font Size */
.font-size-sm {
  font-size: 0.875rem;
}

.font-size-base {
  font-size: 1rem;
}

.font-size-lg {
  font-size: 1.125rem;
}

.font-size-xl {
  font-size: 1.25rem;
}

/* Line Height */
.line-height-1 {
  line-height: 1;
}

.line-height-base {
  line-height: 1.6;
}

.line-height-lg {
  line-height: 1.8;
}

/* Letter Spacing */
.letter-spacing-tight {
  letter-spacing: -0.5px;
}

.letter-spacing-normal {
  letter-spacing: 0;
}

.letter-spacing-wide {
  letter-spacing: 1px;
}

/* Text Transform */
.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* Vertical Align */
.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-in;
}

.animate-slideInUp {
  animation: slideInUp 0.6s ease-out;
}



.escapella-welcome-text {
  padding: 0;
  margin-top: 30px;
}

.escapella-welcome-area-img img {
  height: 400px;
}


@media (max-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }


  ul.menu {
    display: none;
  }

  .escapella-banner-text h2 {
    font-size: 2.5rem;
  }

  .escapella-banner-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2,
  .game-header h2,
  .faq-header h2,
  .escapella-top-sale-area h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
  }

  @media (min-width: 992px) {
    .col-lg-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }

    .col-lg-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }
  }
}