/* Main Styles */
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e67e22;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #495057;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tour Detail Container - New Layout */
.tour-detail-container {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
  min-height: 500px;
}

/* Hotel Stars */
.hotel-stars {
  display: inline-flex;
  margin-left: 8px;
  align-items: center;
}

.hotel-stars img {
  width: 16px;
  height: 16px;
  margin-right: 3px;
  object-fit: contain;
}

/* Left side - Image */
.tour-detail-image-container {
  flex: 1;
  position: relative;
  min-width: 200px;
  max-width: 50%;
  height: auto;
  align-self: stretch;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.tour-main-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: transform 0.3s ease-out;
}

/* Right side - Tour Details */
.tour-details-container {
  flex: 1;
  /* padding: 0 20px; */
  display: flex;
  flex-direction: column;
}

.tour-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.tour-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.tour-info-item {
  display: flex;
  align-items: baseline;
}

.info-label {
  font-weight: 600;
  color: var(--dark-gray);
  min-width: 120px;
}

.info-value {
  color: var(--primary-color);
}

.tour-price-display {
  margin: 25px 0;
  padding: 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.price-label {
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.price-values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.price-value {
  font-size: 24px;
  font-weight: 700;
}

.price-amd, .price-usd, .price-eur, .price-rub {
  font-size: 18px;
  font-weight: 600;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-included {
  margin-bottom: 25px;
}

.services-included h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.services-content {
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

/* Agency Section */
.agency-section {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.agency-section h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

.agency-details-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tour-agency-logo-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-contact-info {
  flex: 1;
}

.agency-contact-info h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

.agency-contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.agency-contact-list li {
  margin-bottom: 10px;
}

.agency-contact-list a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agency-contact-list a:hover {
  color: var(--primary-color);
}

.agency-contact-list i {
  color: var(--primary-color);
  width: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .tour-detail-container {
    flex-direction: column;
  }
  
  .tour-detail-image-container {
    max-width: 100%;
    height: 400px;
    position: relative;
    margin-bottom: 20px;
  }
  
  .image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .tour-main-image {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .agency-details-container {
    flex-direction: column;
    text-align: center;
  }
  
  .tour-agency-logo-container {
    margin: 0 auto 20px;
  }
}

@media (max-width: 576px) {
  .tour-detail-image-container {
    height: 300px;
  }
}

/* Header Banner */
.page-heading-tour-detail {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://res.cloudinary.com/dtwd8rmld/image/upload/v1750437090/base_hf0y3i.webp') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-heading-tour-detail h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-heading-tour-detail span {
  font-size: 20px;
  font-weight: 400;
  display: block;
}

/* Main Tour Content */
.single-property {
  padding: 0 0 20px;
}

/* Main Image */
.main-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.main-image:hover img {
  transform: scale(1.03);
}

.tour-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Main Content */
.main-content-tour-detail {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.main-content-tour-detail h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}

.main-content-tour-detail h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Info Table */
.info-table {
  margin-bottom: 30px;
}

.info-table ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-table li {
  padding: 15px;
  background-color: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s;
}

.info-table li:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  background-color: var(--white);
}

.info-table li h4 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  color: var(--dark-gray);
}

.info-table li h4:after {
  display: none;
}

.info-table li h4 span {
  font-weight: 500;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  margin-bottom: 30px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-book, .btn-call {
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-book i, .btn-call i {
  margin-right: 8px;
}

.btn-book {
  background-color: var(--primary-color);
  color: var(--white);
  flex: 2;
}

.btn-book:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(52, 152, 219, 0.3);
  color: var(--white);
}

.btn-call {
  background-color: var(--light-gray);
  color: var(--secondary-color);
  border: 1px solid var(--medium-gray);
  flex: 1;
}

.btn-call:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Price Card */
.price-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.price-header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 25px;
  text-align: center;
}

.price-header h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.tour-price {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
}

.price-note {
  font-size: 14px;
  opacity: 0.8;
}

.price-features {
  padding: 25px;
}

.price-features ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.price-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.price-action {
  padding: 0 25px 25px;
}

.book-now-btn {
  background-color: var(--accent-color);
  color: var(--white);
  display: block;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.book-now-btn:hover {
  background-color: #ff6600;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(230, 126, 34, 0.3);
  color: var(--white);
}

/* Agency Card */
.tour-detail-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.tour-detail-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

.agency-info {
  text-align: center;
}

.agency-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  overflow: hidden;
}

.agency-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-initials {
  text-transform: uppercase;
}

.agency-info h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.agency-details li img,
.agency-details li span {
  margin-right: 5px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.agency-details {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.agency-details li i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 16px;
}

.agency-details a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agency-details a:hover {
  color: var(--primary-color);
}

/* Related Tours */
.related-tours {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.related-tours h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

.related-tours ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.related-tours li {
  padding: 15px;
  border-bottom: 1px solid var(--medium-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-tours li:last-child {
  border-bottom: none;
}

.related-tours a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-tours a:hover {
  color: var(--primary-color);
}

.related-tours span {
  color: var(--accent-color);
  font-weight: 600;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 576px) {
  .page-heading-tour-detail {
    padding: 70px 0;
  }
  
  .page-heading-tour-detail h1 {
    font-size: 30px;
  }
  
  .page-heading-tour-detail span {
    font-size: 16px;
  }
  
  .main-content-tour-detail, 
  .price-card, 
  .tour-detail-card, 
  .related-tours {
    padding: 20px;
  }
  
  .main-image img {
    height: 250px;
  }
}

.button-62 {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  margin: 0 10px;
  text-decoration: none;
  position: relative;
}

.button-62::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: red;
  transition: background-color 0.3s ease;
}

.button-62:hover::after {
  background-color: darkred;
}

/* Ներքին տեքստի մարժինը */
.button-text {
  margin: 5px;
}

/* Extra Small Screens */
@media (max-width: 550px) {
  .tour-detail-container {
    padding: 15px 10px;
    gap: 15px;
    flex-direction: column;
  }
  
  .tour-detail-image-container {
    height: 250px;
    min-height: auto;
    max-width: 100%;
    width: 100%;
  }
  
  .image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
  }
  
  .tour-main-image {
    transform: scale(1.15);
    object-position: center;
    transition: transform 0.3s ease-out;
  }
  
  .tour-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .tour-info-grid {
    gap: 12px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: rgba(248, 249, 250, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .tour-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 3px solid var(--primary-color);
  }
  
  .tour-info-item:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .info-label {
    min-width: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
  }
  
  .info-value {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
  }

  .hotel-stars {
    margin-left: 5px;
  }
  
  .hotel-stars img {
    width: 12px;
    height: 12px;
    margin-right: 1px;
  }
  
  .tour-price-display {
    margin: 15px 0;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .price-label {
    font-size: 16px;
  }
  
  .price-values {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .price-value {
    font-size: 20px;
  }
  
  .price-amd, .price-usd, .price-eur, .price-rub {
    font-size: 16px;
    padding: 4px 8px;
    width: 100%;
    text-align: center;
  }
  
  .services-included h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .services-content {
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  .btn-book, .btn-call {
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
    justify-content: center;
  }
  
  .btn-book i, .btn-call i {
    font-size: 16px;
  }
  
  .agency-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .agency-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .tour-agency-logo-container {
    width: 70px;
    height: 70px;
  }
  
  .agency-contact-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .agency-contact-list li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .related-tours li {
    padding: 10px;
  }
  
  .related-tours a {
    font-size: 14px;
  }
  
  .related-tours span {
    font-size: 14px;
  }
}

/* Included services Styling */
.tour-extras {
  margin-bottom: 25px;
}

.tour-extras h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.extra-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.extra-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.extra-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(230, 126, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.extra-icon i {
  color: var(--accent-color);
  font-size: 18px;
}

.extra-details {
  flex: 1;
}

.extra-name {
  font-weight: 500;
  color: var(--dark-gray);
  display: block;
  font-size: 15px;
}

@media (max-width: 768px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .extra-card {
    padding: 12px;
  }
  
  .extra-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .extra-icon i {
    font-size: 16px;
  }
  
  .extra-name {
    font-size: 14px;
  }
}

.agency-section-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.agency-section-link:focus .agency-section,
.agency-section-link:hover .agency-section {
  box-shadow: 0 0 0 3px var(--primary-color);
  transition: box-shadow 0.2s;
}


