


/*
Theme Name: Eldersa Turizm
Description: Eldersa Turizm için özel WordPress teması
Version: 1.0.0
Author: Eldersa Turizm
Text Domain: eldersa
*/

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f9fa;
  color: #222;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.top-bar {
  background: #0284d0;
  color: #fff;
  padding: 0.3rem 0.7rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
}
.top-bar-links {
  display: flex;
  gap: 1.5rem;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 1.2rem;
  font-weight: 500;
}
.top-bar a:hover, .top-bar a:focus {
  text-decoration: underline;
}

.main-header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem 1.2rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-icon {
  font-size: 2.2rem;
}
.logo-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0284d0;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.9rem;
  color: #222;
  font-weight: 400;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #0284d0;
}

.hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.destinations {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.destination-list img {
  width: 170px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.destination-list img:hover {
  transform: scale(1.04);
}

.featured-tours {
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1rem;
}
.featured-tours h2 {
  text-align: center;
  color: #222;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.tour-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.tour-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 350px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.tour-card:hover {
  box-shadow: 0 4px 18px rgba(2,132,208,0.18);
}
.tour-card img {
  width: 120px;
  height: 100px;
  object-fit: cover;
}
.tour-info {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tour-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0284d0;
}
.tour-type {
  font-size: 0.95rem;
  color: #1e90ff;
  font-weight: 500;
}
.tour-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-top: 0.3rem;
}

.tour-detail-btn {
  display: inline-block;
  background: #0284d0;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.tour-detail-btn:hover {
  background: #0269a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 208, 0.3);
}

/* Tour Detail Page Styles */
.tour-detail-page {
  background: #f8f9fa;
}

.tour-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.tour-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 132, 208, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}

.tour-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tour-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.tour-meta span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.tour-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.tour-main-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tour-section {
  margin-bottom: 2.5rem;
}

.tour-section:last-child {
  margin-bottom: 0;
}

.tour-section h2 {
  color: #0284d0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.tour-section p {
  line-height: 1.8;
  color: #495057;
  font-size: 1.1rem;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 2rem;
}

.highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.itinerary-day {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #0284d0;
  font-weight: 600;
  color: #495057;
}

.included-list,
.not-included-list {
  list-style: none;
  padding: 0;
}

.included-list li,
.not-included-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 1.5rem;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.not-included-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

.tour-sidebar {
  position: sticky;
  top: 2rem;
}

.booking-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
}

.booking-card h3 {
  color: #0284d0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.booking-price {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.booking-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #0284d0;
  display: block;
}

.booking-price .per-person {
  color: #6c757d;
  font-size: 0.9rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0284d0;
  box-shadow: 0 0 0 3px rgba(2, 132, 208, 0.1);
}

.booking-submit {
  background: #0284d0;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.booking-submit:hover {
  background: #0269a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 208, 0.3);
}

.contact-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.contact-info h4 {
  color: #0284d0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.booking-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
}

.booking-success p {
  margin: 0;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .tour-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tour-hero-content h1 {
    font-size: 2rem;
  }
  
  .tour-meta {
    gap: 1rem;
  }
  
  .tour-meta span {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .tour-main-content {
    padding: 1.5rem;
  }
  
  .booking-card {
    padding: 1.5rem;
  }
}

.site-footer {
  background: #0284d0;
  color: #fff;
  padding: 2.5rem 0 0.5rem 0;
  margin-top: 2rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0.5rem 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  padding: 0.3rem 0.7rem;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 0.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-links a[href*="ana"]::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 3l10 9h-3v9h-6v-6h-2v6H5v-9H2z"/></svg>'); }
.footer-links a[href*="umre"]::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 17.93c-4.41 0-8-3.59-8-8 0-1.85.63-3.55 1.69-4.9l11.21 11.21C15.55 19.3 13.85 19.93 12 19.93zm6.31-3.04L7.1 5.69C8.45 4.63 10.15 4 12 4c4.41 0 8 3.59 8 8 0 1.85-.63 3.55-1.69 4.89z"/></svg>'); }
.footer-links a[href*="hac"]::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="4" y="4" width="16" height="16" rx="4"/></svg>'); }
.footer-links a[href*="saglik"]::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41 0.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>'); }
.footer-links a[href*="kurumsal"]::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 8h2v-2H7v2zm0-4h2v-2H7v2zm0-4h2V7H7v2zm4 8h2v-2h-2v2zm0-4h2v-2h-2v2zm0-4h2V7h-2v2zm4 8h2v-2h-2v2zm0-4h2v-2h-2v2zm0-4h2V7h-2v2z"/></svg>'); }
.footer-links a:hover, .footer-links a:focus {
  color: #ffe066;
  transform: translateY(-4px) scale(1.08);
}
.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #ffe066;
  border-radius: 2px;
  transition: width 0.2s;
  margin-top: 0.1rem;
}
.footer-links a:hover::after, .footer-links a:focus::after {
  width: 80%;
}
.footer-contact {
  font-size: 1rem;
  text-align: center;
}
.footer-bottom {
  text-align: center;
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #1e90ff;
}

@media (max-width: 1024px) {
  .main-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .tour-cards {
    gap: 1.2rem;
  }
  .tour-card {
    width: 95vw;
    max-width: 350px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .main-header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.7rem;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .hero-img {
    height: 180px;
  }
  .destination-list img {
    width: 110px;
    height: 70px;
  }
  .tour-card img {
    width: 80px;
    height: 70px;
  }
  .tour-card {
    flex-direction: column;
    align-items: flex-start;
    width: 98vw;
    max-width: 350px;
  }
  .tour-info {
    padding: 0.7rem 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Mobile Menu Styles */
#mobileMenu {
  transition: opacity 0.3s ease;
}

#mobileMenu.hidden {
  opacity: 0;
  pointer-events: none;
}

#mobileMenu:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

#mobileMenu .absolute.right-0 {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#mobileMenu:not(.hidden) .absolute.right-0 {
  transform: translateX(0);
}

/* Hamburger button animation */
#hamburgerBtn span {
  transition: all 0.3s ease;
}

#hamburgerBtn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburgerBtn.active span:nth-child(2) {
  opacity: 0;
}

#hamburgerBtn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.contact-main {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(2,132,208,0.08);
}
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-header h1 {
  font-size: 2.3rem;
  color: #0284d0;
  margin-bottom: 0.7rem;
}
.contact-header p {
  font-size: 1.15rem;
  color: #444;
}
.contact-content {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-form-section {
  flex: 1 1 340px;
  min-width: 320px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form label {
  font-weight: 600;
  color: #0284d0;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #bcdff6;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8f9fa;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #0284d0;
  outline: none;
}
.contact-submit {
  background: linear-gradient(90deg, #0284d0 60%, #00c6fb 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  border: none;
  border-radius: 7px;
  padding: 0.9rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(2,132,208,0.10);
  transition: background 0.2s, transform 0.2s;
}
.contact-submit:hover, .contact-submit:focus {
  background: linear-gradient(90deg, #00c6fb 60%, #0284d0 100%);
  transform: translateY(-2px) scale(1.03);
}
.contact-info-section {
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-info-box {
  background: #f2f8fc;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 1px 6px rgba(2,132,208,0.07);
  font-size: 1.05rem;
  color: #222;
}
.contact-info-box h2 {
  color: #0284d0;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.contact-info-box a {
  color: #0284d0;
  text-decoration: none;
}
.contact-info-box a:hover {
  text-decoration: underline;
}
.contact-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.7rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 50%;
  background: #e3f3fc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  font-size: 1.5rem;
  position: relative;
}
.social-icon.instagram::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%230284d0" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="20" height="20" rx="5"/><circle cx="12" cy="12" r="5" fill="none" stroke="%230284d0" stroke-width="2"/><circle cx="17" cy="7" r="1.5"/></svg>') center/contain no-repeat;
}
.social-icon.facebook::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%230284d0" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="20" height="20" rx="5"/><path d="M15 8h-2a1 1 0 0 0-1 1v2h3l-0.5 3h-2.5v7h-3v-7h-2v-3h2v-2a4 4 0 0 1 4-4h2z" fill="%230284d0"/></svg>') center/contain no-repeat;
}
.social-icon.whatsapp::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%230284d0" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M16.5 15.5c-0.5 0.5-1.5 1-2.5 1s-2-0.5-2.5-1c-1-1-2-2.5-2-4s1-3 2-4c0.5-0.5 1.5-1 2.5-1s2 0.5 2.5 1c1 1 2 2.5 2 4s-1 3-2 4z" fill="none" stroke="%230284d0" stroke-width="2"/></svg>') center/contain no-repeat;
}
.social-icon:hover, .social-icon:focus {
  background: #0284d0;
  transform: scale(1.12);
}
.social-icon.instagram:hover::before, .social-icon.instagram:focus::before,
.social-icon.facebook:hover::before, .social-icon.facebook:focus::before,
.social-icon.whatsapp:hover::before, .social-icon.whatsapp:focus::before {
  filter: brightness(0) invert(1);
}
.contact-map-section {
  margin-top: 2.5rem;
}
@media (max-width: 1024px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-main {
    padding: 0.7rem;
  }
}

/* Hakkımızda Hero */
.about-hero {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0284d0 60%, #ff9800 100%);
  margin-bottom: 2.5rem;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}
.about-hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  left: 0;
  top: 0;
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}
.about-hero-content h1 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 12px rgba(2,132,208,0.18);
}
.about-hero-content p {
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(2,132,208,0.10);
}

/* Misyon & Vizyon */
.about-mission-vision {
  display: flex;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.about-mission, .about-vision {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(2,132,208,0.08);
  flex: 1 1 320px;
  min-width: 260px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.about-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}
.about-icon.orange {
  background: #ffe0b2;
  color: #ff9800;
}
.about-icon.blue {
  background: #bcdff6;
  color: #0284d0;
}
.about-mission h2, .about-vision h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.about-mission p, .about-vision p {
  color: #555;
  font-size: 1.05rem;
}

/* Hikaye */
.about-story {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(2,132,208,0.08);
  padding: 2rem 1.5rem;
}
.about-story h3 {
  color: #0284d0;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.about-story p {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Ekip */
.about-team {
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1rem;
}
.about-team h3 {
  text-align: center;
  color: #0284d0;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.about-team-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.team-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(255,152,0,0.10);
  padding: 1.5rem 1.2rem;
  text-align: center;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(2,132,208,0.10);
}
.team-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0284d0;
  margin-bottom: 0.2rem;
}
.team-role {
  color: #ff9800;
  font-size: 1rem;
  font-weight: 500;
}

/* Çağrı */
.about-contact-cta {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff9800 60%, #0284d0 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(2,132,208,0.10);
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}
.about-contact-cta h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.about-contact-cta p {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}
.about-contact-btn {
  display: inline-block;
  background: #fff;
  color: #0284d0;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 8px rgba(2,132,208,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.about-contact-btn:hover, .about-contact-btn:focus {
  background: #0284d0;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .about-mission-vision {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-team-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .about-hero {
    height: 180px;
    border-radius: 0 0 18px 18px;
  }
  .about-hero-content h1 {
    font-size: 1.5rem;
  }
  .about-mission, .about-vision {
    padding: 1.2rem 0.7rem;
  }
  .about-story, .about-contact-cta {
    padding: 1.2rem 0.7rem;
  }
  .about-team-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Fallback Contact Form Styles */
.contact-form-fallback {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-fallback .contact-form {
  max-width: none;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.contact-form-fallback .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-fallback label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.contact-form-fallback .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form-fallback .form-control:focus {
  outline: none;
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.contact-form-fallback .contact-submit {
  background: #0F766E;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact-form-fallback .contact-submit:hover {
  background: #065f56;
}

/* Contact Form 7 Styles */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 1.5rem;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-form .wpcf7-submit {
  background: #0F766E;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background: #065f56;
}

/* Contact Page Specific Styles */
.contact-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #6b7280;
  font-size: 0.95rem;
}

.contact-cta {
  background: linear-gradient(135deg, #0F766E 0%, #0284d0 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 3rem;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #0F766E;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Loading State */
.wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0F766E;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Kurumsal Menu Styles */
.kurumsal-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.group:hover .kurumsal-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Menu Kurumsal Submenu */
#mobileKurumsalSubmenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobileKurumsalSubmenu.show {
  max-height: 200px;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, #0F766E 0%, #0284d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0F766E 0%, #0284d0 100%);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #0F766E;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .contact-submit {
    border: 2px solid currentColor;
  }
  
  .form-control {
    border-width: 2px;
  }
}

/* About Page Styles */
.about-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about-hero {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-mission,
.about-vision {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.about-icon.orange {
  background: #fed7aa;
}

.about-icon.blue {
  background: #bfdbfe;
}

.about-mission h2, .about-vision h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #374151;
}

.about-mission p, .about-vision p {
  color: #6b7280;
  line-height: 1.6;
}

.about-story {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.about-story h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #374151;
}

.about-story p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-team {
  margin-bottom: 3rem;
}

.about-team h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #374151;
}

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

.team-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.team-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

.team-role {
  color: #6b7280;
  font-size: 0.9rem;
}

.about-contact-cta {
  background: linear-gradient(135deg, #0F766E 0%, #0284d0 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
}

.about-contact-cta h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-contact-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.about-contact-btn {
  display: inline-block;
  background: white;
  color: #0F766E;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Slider Revolution Styles */
.hero-slider {
  margin-bottom: 2rem;
}

.rev_slider_wrapper {
  border-radius: 12px;
  overflow: hidden;
}

/* Contact Form 7 Success/Error Messages */
.wpcf7-response-output {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #f59e0b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-team-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Loading State */
.wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0F766E;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Kurumsal Menu Styles */
.kurumsal-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.group:hover .kurumsal-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Menu Kurumsal Submenu */
#mobileKurumsalSubmenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobileKurumsalSubmenu.show {
  max-height: 200px;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, #0F766E 0%, #0284d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0F766E 0%, #0284d0 100%);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #0F766E;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .contact-submit {
    border: 2px solid currentColor;
  }
  
  .form-control {
    border-width: 2px;
  }
}

/* Shortcode Styles */

/* Contact Form Container */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #374151;
  text-align: center;
}

.contact-form-container p {
  color: #6b7280;
  text-align: center;
  margin-bottom: 2rem;
}

/* Contact Info Container */
.contact-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Tours Grid Container */
.tours-grid-container {
  margin: 2rem 0;
}

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

.tour-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content {
  padding: 1.5rem;
}

.tour-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #374151;
}

.tour-excerpt {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tour-price {
  background: #fef3c7;
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.tour-duration {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.tour-location {
  background: #dcfce7;
  color: #166534;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.tour-link {
  display: inline-block;
  background: #0F766E;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tour-link:hover {
  background: #065f56;
}

/* Team Container */
.team-container {
  text-align: center;
  margin: 2rem 0;
}

.team-container h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #374151;
}

.team-container p {
  color: #6b7280;
  margin-bottom: 2rem;
}

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

.team-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.team-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

.team-role {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Mission Vision Container */
.mission-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.mission, .vision {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.mission-icon.orange {
  background: #fed7aa;
}

.vision-icon.blue {
  background: #bfdbfe;
}

.mission h2, .vision h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #374151;
}

.mission p, .vision p {
  color: #6b7280;
  line-height: 1.6;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-container h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #374151;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-toggle:hover {
  background: #f9fafb;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-arrow.rotate-180 {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: #6b7280;
  line-height: 1.6;
}

.faq-content.hidden {
  display: none;
}

/* Testimonials Container */
.testimonials-container {
  text-align: center;
  margin: 2rem 0;
}

.testimonials-container h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #374151;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #6b7280;
  line-height: 1.6;
  font-style: italic;
}

/* Responsive Design for Shortcodes */
@media (max-width: 768px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .team-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-container {
    grid-template-columns: 1fr;
  }
}

/* Template Page Styles */

/* Contact Page Styles */
.contact-main {
  min-height: 100vh;
}

.contact-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-section,
.contact-info-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-cta {
  background: linear-gradient(135deg, #0F766E 0%, #115e59 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #FACC15;
  color: #0F766E;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-faq,
.contact-testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* About Page Styles */
.about-main {
  min-height: 100vh;
}

.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.about-mission-vision {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.about-story h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1.5rem;
}

.about-story p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
}

.about-team,
.about-testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-contact-cta {
  background: linear-gradient(135deg, #0F766E 0%, #115e59 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.about-contact-cta h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.about-contact-btn {
  display: inline-block;
  background: #FACC15;
  color: #0F766E;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Tours Page Styles */
.tours-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tours-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tours-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%);
  z-index: 2;
}

.tours-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.tours-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tours-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tours-hero-btn {
  display: inline-block;
  background: #FACC15;
  color: #0F766E;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tours-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tours-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tours-info-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tours-info-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0F766E;
  margin-bottom: 1rem;
}

.tours-info-content p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.tours-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.tours-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0F766E;
  margin-bottom: 1rem;
}

.tours-cta p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tours-cta-btn {
  display: inline-block;
  background: #0F766E;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tours-cta-btn:hover {
  background: #115e59;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Template Pages */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .about-mission-vision,
  .about-team,
  .about-testimonials {
    padding: 2rem 1rem;
  }
  
  .tours-info {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .contact-hero-content h1,
  .about-hero-content h1,
  .tours-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content p,
  .about-hero-content p,
  .tours-hero-content p {
    font-size: 1rem;
  }
  
  .cta-content h2,
  .about-contact-cta h4 {
    font-size: 2rem;
  }
}

/* Contact Form 7 Styles */
.contact-form-wrapper,
.booking-form-wrapper,
.sss-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: #0F766E;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.2);
}

.contact-submit,
.booking-submit,
.sss-submit {
    background-color: #0F766E;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-submit:hover,
.booking-submit:hover,
.sss-submit:hover {
    background-color: #0D5F5A;
}

.wpcf7-response-output {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wpcf7-validation-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wpcf7-spam-blocked {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* CF7 Form Selector Styles */
.cf7-form-selector {
    margin-bottom: 20px;
}

.cf7-form-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.cf7-form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
}

.cf7-form-select:focus {
    outline: none;
    border-color: #0F766E;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.2);
}

.cf7-form-container {
    margin-top: 20px;
}

.cf7-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.fallback-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.fallback-form p {
    margin-bottom: 20px;
    color: #6c757d;
    font-style: italic;
}
