/*--------------------------------------------------------------
# Genel Stil
--------------------------------------------------------------*/
:root {
  --primary-color: #8b0000;
  --secondary-color: #d4af37;
  --text-color: #2c3e50;
  --text-light: #7f8c8d;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --white: #fff;
  --border-color: #ecf0f1;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  --header-height: 80px;
  --section-padding: 80px 0;
  --section-bg-light: #f8f9fa;
  --section-bg-dark: #2c3e50;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #9e2a2b;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.section-bg {
  background-color: var(--section-bg-light);
}

.section-dark {
  background-color: var(--section-bg-dark);
  color: var(--white);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--primary-color);
  position: relative;
  font-family: "Playfair Display", serif;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -10px;
  left: calc(50% - 30px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 24px;
  font-style: italic;
  color: var(--text-light);
}

.section-content {
  padding: 30px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  transition: var(--transition);
}

.section-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.read-more i {
  margin-left: 5px;
  font-size: 14px;
  transition: 0.3s;
}

.read-more:hover i {
  transform: translateX(5px);
}

.more-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.5s ease;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.more-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #9e2a2b, #b54142);
  transition: all 0.5s ease;
  z-index: -1;
}

.more-btn:hover {
  color: var(--white);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
  transform: translateY(-3px);
}

.more-btn:hover:before {
  width: 100%;
}

.more-btn i {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.5s;
  position: relative;
}

.more-btn:hover i {
  transform: translateX(8px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary-color);
  border-top-color: var(--light-bg);
  border-bottom-color: var(--light-bg);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(to right, #9e2a2b, #b54142);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

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

/*--------------------------------------------------------------
# WhatsApp Destek Butonu
--------------------------------------------------------------*/
.whatsapp-support {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-support:hover {
  background-color: #128C7E;
  color: #FFF;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.8);
}

#header.header-scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.9);
}

#header .logo {
  max-height: 50px;
}

#header .navbar {
  padding: 0;
}

#header .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

#header .navbar li {
  position: relative;
}

#header .navbar a,
#header .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  white-space: nowrap;
  transition: 0.3s;
}

#header .navbar a i,
#header .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

#header .navbar a:hover,
#header .navbar .active,
#header .navbar .active:focus,
#header .navbar li:hover > a {
  color: #b54142;
}

#header .navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

#header .navbar .dropdown ul li {
  min-width: 200px;
}

#header .navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-color);
}

#header .navbar .dropdown ul a:hover,
#header .navbar .dropdown ul .active:hover,
#header .navbar .dropdown ul li:hover > a {
  color: var(--primary-color);
}

#header .navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--white);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  #header .navbar ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Sections
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../images/general/2020-09-12.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 0;
  margin-top: var(--header-height);
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#tour-hero,
#reservation-hero,
#press-hero,
#contact-hero,
#gallery-hero,
#about-hero,
#services-hero {
  width: 100%;
  height: 50vh;
  background: url("../backgraound.jpg") center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  padding: 0;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
}

#tour-hero:before,
#reservation-hero:before,
#press-hero:before,
#contact-hero:before,
#gallery-hero:before,
#about-hero:before,
#services-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1,
#hero h2,
#about-hero h1,
#about-hero h2,
#services-hero h1,
#services-hero h2,
#gallery-hero h1,
#gallery-hero h2,
#tour-hero h1,
#tour-hero h2,
#reservation-hero h1,
#reservation-hero h2,
#press-hero h1,
#press-hero h2,
#contact-hero h1,
#contact-hero h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

#hero h1,
#about-hero h1,
#services-hero h1,
#gallery-hero h1,
#tour-hero h1,
#reservation-hero h1,
#press-hero h1,
#contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

#hero h2,
#about-hero h2,
#services-hero h2,
#gallery-hero h2,
#tour-hero h2,
#reservation-hero h2,
#press-hero h2,
#contact-hero h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin: 0 15px;
}

.btn-get-started,
.btn-virtual-tour {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: var(--white);
    border: 2px solid var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.btn-get-started:hover,
.btn-virtual-tour:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: var(--section-padding);
  position: relative;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .icon-box {
  padding: 40px 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: ease-in-out 0.3s;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.services .icon-box .icon i {
  font-size: 32px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  position: relative;
  padding-bottom: 10px;
}

.services .icon-box h4:after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .icon-box h4 a {
  color: var(--text-color);
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover h4 a {
  color: var(--primary-color);
}

.services .icon-box:hover .icon {
  background: var(--white);
  border: 1px solid var(--primary-color);
  transform: scale(1.1);
}

.services .icon-box:hover .icon i {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Gallery Preview Section
--------------------------------------------------------------*/
.gallery-preview .gallery-lightbox {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  display: block;
}

.gallery-preview .gallery-lightbox img {
  transition: .5s ease;
}

.gallery-preview .gallery-lightbox:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Press Preview Section
--------------------------------------------------------------*/
.press-preview .press-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  background: var(--white);
}

.press-preview .press-img {
  overflow: hidden;
}

.press-preview .press-img img {
  transition: .5s ease;
  width: 100%;
}

.press-preview .press-item:hover .press-img img {
  transform: scale(1.1);
}

.press-preview .press-info {
  padding: 25px 15px;
}

.press-preview .press-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.press-preview .press-info p {
  font-style: italic;
  font-size: 14px;
  margin: 0;
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/general/2020-09-12.jpg") center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  padding: 100px 0;
}

.booking .content {
  padding: 0 80px;
}

.booking .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--primary-color);
}

.booking .content p {
  margin-bottom: 20px;
}

.booking .content .book-now-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 20px;
  border: 2px solid var(--primary-color);
  font-weight: 500;
}

.booking .content .book-now-btn:hover {
  background: #9e2a2b;
  color: var(--white);
  border-color: #9e2a2b;
}

.booking .booking-form {
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.booking .php-email-form {
  width: 100%;
}

.booking .php-email-form .form-group {
  padding-bottom: 8px;
}

.booking .php-email-form input, 
.booking .php-email-form textarea,
.booking .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.booking .php-email-form input:focus, 
.booking .php-email-form textarea:focus,
.booking .php-email-form select:focus {
  border-color: var(--primary-color);
}

.booking .php-email-form button[type="submit"] {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), #b54142);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.5s ease;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  animation: submitPulse 2s infinite;
}

.booking .php-email-form button[type="submit"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #b54142, var(--secondary-color));
  transition: all 0.6s ease-in-out;
  z-index: -1;
}

.booking .php-email-form button[type="submit"]:hover {
  color: var(--white);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
  letter-spacing: 3px;
}

.booking .php-email-form button[type="submit"]:hover:before {
  left: 0;
}

@keyframes submitPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(139, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0);
  }
}

/* Buton içeriği için özel stil */
.booking .php-email-form button[type="submit"]::after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.booking .php-email-form button[type="submit"]:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

/* Mobil cihazlar için buton stilini düzenle */
@media (max-width: 768px) {
  .booking .content {
    padding: 0 50px;
  }
  
  .booking .php-email-form button[type="submit"] {
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* Oda tipleri için eşit yükseklik */
.room-item .room-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.room-item .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

@media (max-width: 992px) {
  .booking .content {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .booking .content {
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------
# Contact Preview Section
--------------------------------------------------------------*/
.contact-preview .info {
  width: 100%;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-preview .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #f9f7f3;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact-preview .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-preview .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-light);
}

.contact-preview .info .address, 
.contact-preview .info .email, 
.contact-preview .info .phone,
.contact-preview .info .fax {
  margin-top: 30px;
}

.contact-preview .info .email:hover i, 
.contact-preview .info .address:hover i, 
.contact-preview .info .phone:hover i,
.contact-preview .info .fax:hover i {
  background: var(--primary-color);
  color: var(--white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(to bottom, #3d4246, #212529);
  padding: 0 0 30px 0;
  color: var(--white);
  font-size: 14px;
}

#footer .footer-top {
  background: linear-gradient(to right, #343a40, #3d4246);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 70px 0 40px 0;
  position: relative;
}

#footer .footer-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: var(--secondary-color);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  line-height: 1;
  padding: 10px 0;
  margin-right: 5px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sosyal medya butonlarına özel hover renkleri */
#footer .footer-top .social-links a.instagram:hover {
  background: #C13584; /* Instagram rengi */
}

#footer .footer-top .social-links a.facebook:hover {
  background: #1877F2; /* Facebook rengi */
}

#footer .footer-top .social-links a.tripadvisor:hover {
  background: #00AA6C; /* TripAdvisor rengi */
}

#footer .footer-top .social-links a.trivago:hover {
  background: #007FAD; /* Trivago rengi */
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#footer .footer-top h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul li:hover {
  padding-left: 5px;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #b54142;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.8);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
  color: var(--secondary-color);
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #b54142;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .section-title h2 {
    font-size: 28px;
  }
  
  .section-title p {
    font-size: 18px;
  }
  
  #tour-hero h1 {
    font-size: 42px;
    line-height: 48px;
  }
  
  #tour-hero h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  
  #tour-hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  
  #tour-hero h2 {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title p {
    font-size: 16px;
  }
  
  .services .icon-box {
    padding: 40px 20px;
  }
  
  .booking .content {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #tour-hero h1 {
    font-size: 28px;
    line-height: 32px;
  }
  
  #tour-hero h2 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  #tour-hero .btn-get-started,
  #tour-hero .btn-virtual-tour {
    font-size: 14px;
    padding: 8px 20px;
  }
  
  .section-title h2 {
    font-size: 22px;
  }
  
  .about .content h3 {
    font-size: 22px;
  }
  
  .services .icon-box h4 {
    font-size: 20px;
  }
  
  .booking .content h3 {
    font-size: 26px;
  }
  
  #footer .footer-top {
    padding: 40px 0 20px 0;
  }
}

/*--------------------------------------------------------------
# About Hero Section
--------------------------------------------------------------*/
#about-hero {
  width: 100%;
  height: 50vh;
  background: url("../backgraound.jpg") center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  padding: 0;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
}

#about-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 1;
}

#about-hero h2 {
  color: var(--white);
  margin: 10px 0 0 0;
  font-size: 22px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# About Detail Section
--------------------------------------------------------------*/
#about-detail {
  padding: 60px 0;
}

#about-detail .section-title {
  text-align: left;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

#about-detail .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--primary-color);
  position: relative;
}

#about-detail .section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

#about-detail .section-title p {
  margin-bottom: 0;
  font-size: 22px;
  font-style: italic;
  color: var(--text-light);
  text-align: left;
}

#about-detail .about-content {
  padding-left: 30px;
}

#about-detail .about-content h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

#about-detail .about-content p.lead {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Vision & Mission Section
--------------------------------------------------------------*/
.vision-mission {
  padding: 60px 0;
}

.vision-mission .card {
  border-radius: 10px;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.vision-mission h3 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.vision-mission h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.vision-box .card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-box .card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/*--------------------------------------------------------------
# History Timeline Section
--------------------------------------------------------------*/
.history {
  padding: 60px 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--white);
  position: relative;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
}

.timeline-content::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: var(--white);
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left .timeline-content::after {
  right: -13px;
}

.timeline-item.right .timeline-content::after {
  left: -13px;
}

.timeline-content .date {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content h4 {
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.right {
    left: 0%;
  }
  
  .timeline-content::after {
    left: -13px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--box-shadow);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team .member:hover .member-img img {
  transform: scale(1.1);
}

.team .member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--text-color);
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Services Hero Section
--------------------------------------------------------------*/
#services-hero {
  width: 100%;
  height: 50vh;
  background: url("../backgraound.jpg") center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  padding: 0;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
}

#services-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#services-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
}

#services-hero h2 {
  color: var(--white);
  margin: 10px 0 0 0;
  font-size: 22px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# All Services Section
--------------------------------------------------------------*/
.all-services {
  padding: 60px 0;
}

.service-category {
  position: relative;
  padding: 30px 0;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-flex;
  align-items: center;
}

.category-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.category-title i {
  font-size: 26px;
  margin-right: 10px;
  color: var(--primary-color);
}

.service-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  background: var(--white);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-item .service-img {
  overflow: hidden;
  position: relative;
  height: 240px;
}

.service-item .swiper {
  width: 100%;
  height: 100%;
}

.service-item .swiper-slide {
  width: 100%;
  height: 100%;
}

.service-item .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item .swiper-pagination {
  bottom: 10px !important;
}

.service-item .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.7;
}

.service-item .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

.service-item .swiper-button-next,
.service-item .swiper-button-prev {
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.service-item .swiper-button-next:hover,
.service-item .swiper-button-prev:hover {
  background: var(--primary-color);
}

.service-item .swiper-button-next:after,
.service-item .swiper-button-prev:after {
  font-size: 16px;
}

.service-item .service-info {
  padding: 25px 20px;
}

.service-item .service-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-item .service-info p {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-item .service-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item .service-info ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-item .service-info ul li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 14px;
}

.service-item .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, var(--primary-color), #c00000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
  transition: var(--transition);
}

.service-item:hover .service-icon {
  transform: rotateY(360deg);
  background: linear-gradient(to right, var(--secondary-color), #ffd700);
  color: var(--dark-bg);
}

.service-request {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../backgraound.jpg") center center;
  background-size: cover;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.service-request h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.service-request p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 16px;
}

/* About Page Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    padding-top: 120px;
}

.section-padding {
    padding: 80px 0;
}

.about-content {
    padding-left: 30px;
}

.about-img img {
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.02);
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    margin-right: 10px;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

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

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

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/*--------------------------------------------------------------
# Gallery Hero Section
--------------------------------------------------------------*/
#gallery-hero {
  width: 100%;
  height: 50vh;
  background: url("../backgraound.jpg") center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  padding: 0;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
}

#gallery-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#gallery-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
}

#gallery-hero h2 {
  color: var(--white);
  margin: 10px 0 0 0;
  font-size: 22px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 60px 0;
}

.gallery-category {
  margin-bottom: 60px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Lightbox Styles */
.glightbox-container {
  background: rgba(0, 0, 0, 0.9);
}

.glightbox-container .gslide-description {
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 20px;
}

.glightbox-container .gslide-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.glightbox-container .gslide-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-item img {
    height: 250px;
  }
  
  .gallery-info {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }
  
  .gallery-info h4 {
    font-size: 16px;
  }
  
  .gallery-info p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Dining Services Slider
--------------------------------------------------------------*/
.dining-slider {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.dining-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dining-slider .swiper-button-next,
.dining-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dining-slider .swiper-button-next:hover,
.dining-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.dining-slider .swiper-button-next:after,
.dining-slider .swiper-button-prev:after {
    font-size: 16px;
}

.dining-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.7;
}

.dining-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/*--------------------------------------------------------------
# Gallery Slider
--------------------------------------------------------------*/
.gallery-slider {
    width: 100%;
    height: 450px;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    max-width: 900px;
    position: relative;
}

.gallery-slider .swiper {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-slider .swiper-slide-active {
    z-index: 1;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 16px;
}

.gallery-slider .swiper-pagination {
    bottom: 15px !important;
    z-index: 10;
}

.gallery-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--white);
    opacity: 0.7;
    margin: 0 4px;
}

.gallery-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

.gallery-category {
    margin-bottom: 40px;
    padding: 0;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-category .section-title {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .gallery-slider {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .gallery-slider .swiper-button-next:after,
    .gallery-slider .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .gallery-slider .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* Rezervasyon Form Stilleri */
.reservation-form {
    padding: 60px 0;
}

.reservation-form .php-email-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: formFadeIn 1s ease;
}

.reservation-form .php-email-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.15);
}

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

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

.reservation-form label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
}

.reservation-form .form-control {
    height: 50px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.reservation-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.1);
    background: var(--white);
}

.reservation-form textarea.form-control {
    height: 120px;
    resize: none;
}

.reservation-form .form-control:hover {
    border-color: var(--primary-color);
}

/* Submit Buton Stili */
.reservation-form button[type="submit"] {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #b54142);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    animation: buttonPulse 2s infinite;
}

.reservation-form button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #b54142, var(--secondary-color));
    transition: all 0.6s ease-in-out;
    z-index: -1;
}

.reservation-form button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    letter-spacing: 3px;
}

.reservation-form button[type="submit"]:hover:before {
    left: 0;
}

.reservation-form button[type="submit"]::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.reservation-form button[type="submit"]:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(139, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0);
    }
}

/* Form Alanları İçin Özel Efektler */
.reservation-form .form-group.focused label {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.reservation-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .reservation-form .php-email-form {
        padding: 25px;
    }

    .reservation-form button[type="submit"] {
        padding: 12px 30px;
        font-size: 14px;
        letter-spacing: 1px;
        width: 100%;
    }

    .reservation-form .form-control {
        height: 45px;
        font-size: 14px;
    }
}

/* Contact Form Styles */
.contact-info .php-email-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: formFadeIn 1s ease;
}

.contact-info .php-email-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.15);
}

.contact-info .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-info .form-control {
    height: 50px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.contact-info textarea.form-control {
    height: 150px;
    resize: none;
}

.contact-info .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.1);
    background: var(--white);
}

.contact-info .form-control:hover {
    border-color: var(--primary-color);
}

/* Submit Button Style */
.contact-info .php-email-form button[type="submit"] {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #b54142);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    animation: buttonPulse 2s infinite;
}

.contact-info .php-email-form button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #b54142, var(--secondary-color));
    transition: all 0.6s ease-in-out;
    z-index: -1;
}

.contact-info .php-email-form button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    letter-spacing: 3px;
}

.contact-info .php-email-form button[type="submit"]:hover:before {
    left: 0;
}

.contact-info .php-email-form button[type="submit"]::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-info .php-email-form button[type="submit"]:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

/* Form Animation */
@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info .php-email-form {
        padding: 25px;
    }

    .contact-info .php-email-form button[type="submit"] {
        padding: 12px 30px;
        font-size: 14px;
        letter-spacing: 1px;
        width: 100%;
    }

    .contact-info .form-control {
        height: 45px;
        font-size: 14px;
    }
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 30px;
    right: -400px;
    width: 350px;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-popup.show {
    right: 30px;
    opacity: 1;
}

.notification-popup.success {
    border-left: 5px solid #28a745;
}

.notification-popup.error {
    border-left: 5px solid #dc3545;
}

.notification-popup .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    color: var(--white);
}

.notification-popup.success .icon {
    background: linear-gradient(45deg, #28a745, #34ce57);
}

.notification-popup.error .icon {
    background: linear-gradient(45deg, #dc3545, #e4606d);
}

.notification-popup .content {
    display: flex;
    align-items: center;
}

.notification-popup .text {
    flex: 1;
}

.notification-popup .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.notification-popup .message {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.notification-popup .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.notification-popup .progress-bar {
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    animation: progress 3s linear forwards;
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
}

/* Responsive Popup */
@media (max-width: 576px) {
    .notification-popup {
        width: calc(100% - 30px);
        top: auto;
        bottom: 15px;
        right: 15px;
        left: 15px;
        transform: translateY(150%);
    }

    .notification-popup.show {
        transform: translateY(0);
        right: 15px;
    }
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.02);
}

.swiper-button-next,
.swiper-button-prev {
    color: #b8860b;
}

.swiper-pagination-bullet-active {
    background: #b8860b;
}

.press-items .press-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.press-items .press-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.press-items .press-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.press-items .press-content {
    padding: 20px;
}

.press-items .press-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.press-items .press-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.press-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.press-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.press-content {
    padding: 20px;
}

.press-content h4 {
    margin: 0;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Grid sistemini 3'lü yerine 2'li yapalım ki kartlar daha büyük görünsün */
@media (min-width: 768px) {
    .press-items .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mevcut press-item stillerine ekleyin */
.press-item img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Modal stilleri */
.modal-xl {
    max-width: 90vw;
}

.modal-body {
    padding: 0;
}

#modalImage {
    max-height: 85vh;
    object-fit: contain;
}

.modal-header {
    border-bottom: none;
    padding: 1rem;
    background: rgba(0,0,0,0.03);
}

.modal-content {
    background: rgba(255,255,255,0.95);
}

.btn-close {
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    opacity: 1;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 600;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 oranı için */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}

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

.tour-frame {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Mobil Menü Stilleri */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    #header {
        background: #000000;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #000000;
        z-index: 1000;
        transition: 0.3s ease-in-out;
        padding: 20px;
        overflow-y: auto;
        display: block !important;
        visibility: visible !important;
    }
    .navbar-collapse.show {
        right: 0;
    }
    .navbar-nav {
        margin-top: 80px !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .navbar-nav .nav-item {
        width: 100%;
        margin: 8px 0;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .navbar-toggler {
        position: relative;
        z-index: 1001;
        border: none;
        padding: 10px;
        width: 40px;
        height: 40px;
        outline: none !important;
        background: transparent;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        position: relative;
        width: 20px;
        height: 2px;
        background-color: #ffffff;
        display: inline-block;
        transition: background-color 0.3s ease;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        left: 0;
    }
    .navbar-toggler-icon::before {
        top: -6px;
    }
    .navbar-toggler-icon::after {
        bottom: -6px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 0;
        transform: rotate(45deg);
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
} 