/**
 * Modern Professional Theme
 * Color Scheme: #600ee4 (Primary Purple)
 * Built with Bootstrap 5 & jQuery
 */

:root {
  --primary-color: #0052b6;
  --primary-dark: #000000;
  --primary-light: #195bac;
  --secondary-color: #6c757d;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 4px rgba(96, 14, 228, 0.1);
  --shadow-md: 0 4px 6px rgba(96, 14, 228, 0.15);
  --shadow-lg: 0 10px 25px rgb(14 100 228 / 20%);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Typography - Headings */
h1, h2, h3, h4, h5, h6,
.slider-title,
.hero-title,
.section-title,
.dn-hero-title,
.room-title,
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Top Bar Styles */
.top-bar {
  background: var(--primary-color);
  color: white;
  padding: 0.2rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
  font-weight: 400;
}

.top-bar-item:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.top-bar-item i {
  font-size: 0.875rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-selector .btn-link {
  color: white;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  border: none;
}

.language-selector .btn-link:hover,
.language-selector .btn-link:focus {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.language-selector .dropdown-menu {
  min-width: 150px;
  border: none;
  box-shadow: var(--shadow-md);
  margin-top: 0.5rem;
}

.language-selector .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.language-selector .dropdown-item.active {
  background-color: var(--primary-color);
  color: white;
}

.language-selector .dropdown-item:hover {
  background-color: var(--bg-light);
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}



.social-icon-top {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icon-top:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Header Styles */
.main-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
}

.top-bar {
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  padding: 0px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.logo-img {
  max-height: 80px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-color);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Header Login/Register Buttons - 25px Border Radius */
.main-header .btn-primary,
.main-header .btn-outline-primary,
.offcanvas-body .btn-primary,
.offcanvas-body .btn-outline-primary {
  border-radius: 25px !important;
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
}

/* Hero Section */
.dn-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.dn-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.dn-hero-content {
  position: relative;
  z-index: 1;
}

.dn-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.dn-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-style: normal;
  font-weight: 400;
}

.dn-hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.dn-hero-image {
  position: relative;
  z-index: 1;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

/* Form Styles */
.form-control {
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(96, 14, 228, 0.25);
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
}

/* Override Bootstrap form-control border-radius */
input.form-control,
textarea.form-control,
select.form-control {
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Ensure input-group inputs have proper border-radius */
.input-group .inputText,
.input-group .form-control {
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
}

.floating-label {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
  background: white;
  padding: 0 0.5rem;
  z-index: 10;
  font-size: 1rem;
  line-height: 1;
}

.floating-label.active,
.inputText:focus ~ .floating-label,
.inputText:not(:placeholder-shown) ~ .floating-label,
.inputText.has-value ~ .floating-label {
  top: -0.5rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  z-index: 11;
  font-weight: 500;
}

.inputText {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  transition: var(--transition);
  background-color: white;
  position: relative;
  z-index: 1;
}

.inputText:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(96, 14, 228, 0.25);
  z-index: 2;
}

/* Ensure all input types have rounded corners */
input[type="text"].inputText,
input[type="email"].inputText,
input[type="tel"].inputText,
input[type="password"].inputText,
input[type="number"].inputText,
textarea.inputText {
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
}

/* Footer Styles */
.main-footer {
  background: var(--text-dark);
  color: white;
  /*margin-top: 5rem;*/
}

.footer-top {
  padding: 4rem 0 2rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo-img {
  max-height: 50px;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: white;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-menu a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.copyright-text a {
  color: var(--primary-light);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  display: flex;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--bg-light);
  padding: 2rem 0;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--text-light);
}

/* Page Content */
.page-content {
  padding: 3rem 0;
  min-height: 60vh;
}

/* Contact Page */
.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(96, 14, 228, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Login/Register Pages */
.auth-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(96, 14, 228, 0.05) 0%, rgba(96, 14, 228, 0.1) 100%);
  padding: 3rem 0;
}

.auth-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-subtitle {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}

.divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  background: white;
  padding: 0 1rem;
  position: relative;
  color: var(--text-light);
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: white;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.google-btn:hover {
  border-color: var(--primary-color);
  background: var(--bg-light);
}

/* Responsive */
@media (max-width: 768px) {

  .main-header{
        padding: 2px 0;
  }

  .auth-title {
  font-size: 1.6rem;
}

  .dn-hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .auth-card {
    padding: 2rem 1.5rem;
  }
  
  .navbar-nav {
    margin-top: 1rem;
  }
  
  .navbar-nav .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: var(--shadow-md) !important;
}

/* Page Content Text Styles */
.page-content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.page-content-text h1,
.page-content-text h2,
.page-content-text h3,
.page-content-text h4,
.page-content-text h5,
.page-content-text h6 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.page-content-text p {
  margin-bottom: 1.5rem;
}

.page-content-text img {
  border-radius: 8px;
  margin: 2rem 0;
}

.page-content-text ul,
.page-content-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content-text li {
  margin-bottom: 0.5rem;
}

.page-content-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-content-text a:hover {
  color: var(--primary-dark);
}

/* Error 404 Page */
.error-content {
  padding: 3rem 0;
}

/* Form Invalid State */
.is-invalid {
  border-color: #dc3545 !important;
}

.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Navbar Scrolled State */
.main-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}

/* Textarea Floating Label */
textarea.inputText {
  border-radius: 8px !important;
  min-height: 120px;
  resize: vertical;
}

textarea.inputText ~ .floating-label {
  top: 0.75rem;
  z-index: 10;
}

textarea.inputText:focus ~ .floating-label,
textarea.inputText:not(:placeholder-shown) ~ .floating-label,
textarea.inputText.has-value ~ .floating-label {
  top: -0.5rem;
  z-index: 11;
  font-weight: 500;
}

/* Input Group with Button (Password Toggle) */
.input-group.position-relative .inputText {
  padding-right: 3rem;
}

.input-group.position-relative .btn-link {
  z-index: 15;
  color: var(--text-light);
  text-decoration: none;
}

.input-group.position-relative .btn-link:hover {
  color: var(--primary-color);
}

/* Off-Canvas Mobile Menu Styles */
.offcanvas {
  background: var(--bg-white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
}

.offcanvas-title {
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.offcanvas-body {
  padding: 1.5rem;
}

.offcanvas-body .navbar-nav {
  gap: 0.5rem;
}

.offcanvas-body .nav-link {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text-dark);
  font-weight: 500;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 1rem;
}

.mobile-submenu .nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.mobile-submenu .nav-link:hover {
  color: var(--primary-color);
  background: transparent;
}

.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  opacity: 0.5;
  transition: var(--transition);
}

.btn-close:hover {
  opacity: 1;
}

/* Auth Section with Header */
.auth-section {
  padding-top: 2rem;
}

/* Register Result Page */
.success-icon-wrapper {
  display: inline-block;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.register-result-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.register-result-content p {
  margin-bottom: 1rem;
}

.register-result-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.register-result-content a:hover {
  color: var(--primary-dark);
}

/* Navbar Toggler Icon */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Carousel Styles */
.dn-hero-section .carousel {
  position: relative;
}

.dn-hero-section .carousel-item {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.dn-hero-section .carousel-control-prev,
.dn-hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: var(--transition);
}

.dn-hero-section .carousel-control-prev:hover,
.dn-hero-section .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

.dn-hero-section .carousel-control-prev {
  left: 2rem;
}

.dn-hero-section .carousel-control-next {
  right: 2rem;
}

.dn-hero-section .carousel-indicators {
  bottom: 2rem;
  margin: 0;
}

.dn-hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 0.25rem;
  transition: var(--transition);
}

.dn-hero-section .carousel-indicators button.active {
  background: white;
  border-color: white;
  width: 30px;
  border-radius: 6px;
}

/* ============================================
   HOTEL SPECIFIC STYLES
   ============================================ */

/* Full Screen Hero Slider */
.hotel-hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hotel-hero-slider .carousel-item {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.slider-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease-in-out;
}

.slider-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.slider-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.slider-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.slider-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.slider-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.slider-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hotel-hero-slider .carousel-control-prev,
.hotel-hero-slider .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: var(--transition);
}

.hotel-hero-slider .carousel-control-prev:hover,
.hotel-hero-slider .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hotel-hero-slider .carousel-indicators {
  bottom: 3rem;
  z-index: 3;
}

.hotel-hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 0.5rem;
  transition: var(--transition);
}

.hotel-hero-slider .carousel-indicators button.active {
  background: white;
  width: 40px;
  border-radius: 20px;
}

/* Rooms Section */
.hotel-rooms-section {
  padding: 5rem 0;
}

.room-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.room-card:hover .room-image {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-actions {
  display: flex;
  gap: 0.5rem;
}

.room-guest-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.95);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.room-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.room-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Room Detail Page */
.room-detail-section {
  padding: 3rem 0;
}

.room-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.room-detail-meta {
  margin-bottom: 2rem;
}

.room-guest-info {
  display: inline-block;
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  color: var(--primary-color);
}

.room-gallery {
  margin-bottom: 3rem;
}

.main-room-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main-room-image img {
  width: 100%;
  height: auto;
  display: block;
}

.room-thumbnails {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.room-thumbnail {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  opacity: 0.7;
}

.room-thumbnail:hover,
.room-thumbnail.active {
  opacity: 1;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.room-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-description-section,
.room-features-section {
  margin-bottom: 3rem;
}

.room-full-description {
  margin-top: 1.5rem;
  line-height: 1.8;
}

.room-feature-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.room-feature-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.room-feature-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 0.75rem;
}

.room-feature-item:hover i {
  color: white;
}

/* Room Images Slider */
.room-images-slider {
  position: sticky;
  top: 20px;
}

.room-main-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  max-height: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.room-main-image-wrapper:hover {
  box-shadow: var(--shadow-lg);
}

.room-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.room-main-image-wrapper:hover .room-main-image {
  transform: scale(1.02);
}

.room-main-image-wrapper a {
  display: block;
  position: relative;
}

.room-main-image-wrapper a::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.2rem;
  z-index: 10;
}

.room-main-image-wrapper:hover a::after {
  opacity: 1;
}

/* Slider Navigation Buttons */
.room-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
  font-size: 1.2rem;
}

.room-slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.room-slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.room-slider-prev {
  left: 15px;
}

.room-slider-next {
  right: 15px;
}

/* Thumbnail Slider */
.room-thumbnails-slider {
  margin-top: 1rem;
}

.room-thumbnails-container {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

.room-thumbnails-container::-webkit-scrollbar {
  height: 6px;
}

.room-thumbnails-container::-webkit-scrollbar-track {
  background: transparent;
}

.room-thumbnails-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.room-thumbnail-item {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  position: relative;
}

.room-thumbnail-item:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.room-thumbnail-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 82, 182, 0.2);
}

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

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

@media (max-width: 768px) {
  .room-images-slider {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .room-main-image-wrapper {
    max-height: 350px;
    height: 350px;
  }
  
  .room-thumbnail-item {
    width: 80px;
    height: 80px;
  }
  
  .room-thumbnails-container {
    gap: 0.5rem;
  }
}

.room-sidebar {
  position: sticky;
  top: 100px;
}

.room-reservation-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  
  border: 1px solid var(--border-color);
}
  .room-wp-btn{
    background-color: #41c452;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    color:#fff;
    border-radius: 8px;
  }

.room-info-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.room-info-item:last-child {
  border-bottom: none;
}

/* Gallery Section */
.hotel-gallery-section {
  padding: 3rem 0;
}

.gallery-item-wrapper {
  margin-bottom: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 300px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
  width: 100%;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-tags {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
}

/* Gallery Preview Section */
.hotel-gallery-preview {
  padding: 5rem 0;
}

/* Services Section */
.hotel-services-section {
  padding: 5rem 0;
}

/* Service Detail Section */
.service-detail-section {
  padding: 3rem 0;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-summary-text {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-full-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.service-full-description p {
  margin-bottom: 1.5rem;
}

.service-full-description h2,
.service-full-description h3,
.service-full-description h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.service-detail-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.service-detail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-summary-text {
    font-size: 1.1rem;
  }
  
  .service-full-description {
    font-size: 1rem;
  }
  
  .service-content {
    font-size: 1rem;
  }
}

.service-card-horizontal {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 3rem;
}

.service-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-horizontal .row {
  margin: 0;
}

.service-card-horizontal .service-image-wrapper {
  height: 300px;
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.service-card-horizontal .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-horizontal:hover .service-image {
  transform: scale(1.05);
}

.service-card-horizontal .service-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-horizontal .service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-card-horizontal .service-summary {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-horizontal .btn {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.service-card-horizontal .btn:hover {
  transform: translateX(5px);
}

/* Service Detail Section */
.service-detail-section {
  padding: 3rem 0;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-summary-text {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-full-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.service-full-description p {
  margin-bottom: 1.5rem;
}

.service-full-description h2,
.service-full-description h3,
.service-full-description h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.service-detail-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.service-detail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive: Mobilde resim üstte */
@media (max-width: 768px) {
  .service-card-horizontal .service-image-wrapper {
    height: 250px;
    max-height: 250px;
    order: -1;
  }
  
  .service-card-horizontal.service-right .service-image-wrapper {
    order: 1;
  }
  
  .service-card-horizontal .service-content {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  
  .service-card-horizontal .service-title {
    font-size: 1.5rem;
  }
  
  .service-card-horizontal .service-summary {
    font-size: 1rem;
  }
  
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-summary-text {
    font-size: 1.1rem;
  }
  
  .service-full-description {
    font-size: 1rem;
  }
  
  .service-content {
    font-size: 1rem;
  }
}

/* Blog Section */
.hotel-blog-section {
  padding: 3rem 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
  height: 250px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.blog-summary {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-date {
  display: flex;
  align-items: center;
}

/* Home Info Section */
.hotel-info-section {
  padding: 5rem 0;
}

.info-images {
  position: relative;
}

.info-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.info-image-wrapper.main-image {
  margin-bottom: 2rem;
  width: 100%;
  min-height: 400px;
  position: relative;
  display: block;
}

.info-image-wrapper.main-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.info-image-wrapper.secondary-image {
  position: absolute;
  bottom: -2rem;
  right: -5px;
  width: 60%;
  z-index: 1;
}

.info-content {
  padding: 2rem 0;
}

.info-content h2,
.info-content h3 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}

.info-text {
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Breadcrumb Section */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb-item a {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    padding: 0.4rem 0;
    font-size: 0.75rem;
  }
  
  .top-bar-left {
    gap: 1rem;
  }
  
  .top-bar-item span {
    display: none;
  }
  
  .top-bar-item i {
    font-size: 0.875rem;
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .language-selector .btn-link span {
    display: none;
  }
  
  .logo-img {
    max-height: 60px;
  }
  
  .slider-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }
  
  .slider-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }
  
  .dn-hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
  }
  
  .hotel-hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  
  .hotel-hero-slider .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  .room-thumbnails {
    justify-content: center;
  }
  
  .room-thumbnail {
    width: 80px;
    height: 80px;
  }
  
  .info-image-wrapper.secondary-image {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 1rem;
  }
  
  .gallery-item {
    height: 250px;
  }
}


/* CONTACT-FIXED UL  */
.ul_sifirla{list-style-type: none;margin: 0;padding:0;}
.fix_contant_ul{position: fixed;z-index: 50;bottom: 10px;left: 10px;}
@-webkit-keyframes cptCircle {0% {-webkit-transform: rotate(0) scale(.5) skew(1deg);transform: rotate(0) scale(.5) skew(1deg);opacity: .01} 30% {-webkit-transform: rotate(0) scale(.7) skew(1deg);transform: rotate(0) scale(.7) skew(1deg);opacity: .5} 100% {-webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .01} }
@keyframes cptCircle {0% {-webkit-transform: rotate(0) scale(.5) skew(1deg);transform: rotate(0) scale(.5) skew(1deg);opacity: .01 } 30% {-webkit-transform: rotate(0) scale(.7) skew(1deg);transform: rotate(0) scale(.7) skew(1deg);opacity: .5} 100% {-webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .01} }
@-webkit-keyframes cptCircleFill {0% {-webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg);opacity: 0} 50% {webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .2} 100% {-webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg); opacity: .2} }
@keyframes cptCircleFill {0% {-webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg);opacity: 0} 50% {-webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .2} 100% { -webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg);opacity: .2} }
/* wp btn */
.callback {position: relative; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px;z-index: 1; }
.callback .circle,.callback .circle_fill {position: absolute; border-radius: 100%; -webkit-transition: all .5s; transition: all .5s; -moz-box-sizing: border-box; box-sizing: border-box; opacity: 0; -webkit-animation-delay: 2s; animation-delay: 2s }
.callback .circle {width: 120%; height: 120%; background-color: transparent; -webkit-animation: cptCircle 2.2s infinite ease-in-out; animation: cptCircle 2.2s infinite ease-in-out; -webkit-transform-origin: 50% 50%; -ms-transform-origin: 50% 50%; transform-origin: 50% 50%; }
.callback .circle_fill {width: 100%; height: 100%; border: 2px solid transparent; -webkit-animation: cptCircleFill 2.3s infinite ease-in-out; animation: cptCircleFill 2.3s infinite ease-in-out; }
.callback .btn_nnt {position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;box-shadow: 0 0px 4px 1px rgb(0 0 0 / 20%); background-size: 30px; border-radius: 100%; cursor: pointer;}
.callback .btn_nnt > i {opacity: 0; visibility: hidden; -webkit-transition: all .6s cubic-bezier(.55, 0, .1, 1); transition: all .6s cubic-bezier(.55, 0, .1, 1); -webkit-transform: perspective(400px) rotateY(-180deg) scale(.4) translate3d(-50%, -50%, 0); transform: perspective(400px) rotateY(-180deg) scale(.4) translate3d(-50%, -50%, 0); z-index: 1; width: 45%; height: 45%; font-size: 16px; }
.callback .btn_nnt > img {vertical-align: middle;width: 100%;}
.callback .circle.wp{ border: 2px solid #189d0e;}
.callback .circle_fill.wp{background-color: #189d0e;box-shadow: 0 0 2px 0 #189d0e!important;}
.callback .btn_nnt.wp{background: center center no-repeat #189d0e;color: #fff;}
.callback .circle.tel{ border: 2px solid #2196F3;}
.callback .circle_fill.tel{background-color: #2196F3;box-shadow: 0 0 2px 0 #2196F3!important;}
.callback .btn_nnt.tel{background: center center no-repeat #2196F3;color: #fff;}
.callback .circle.insta{ border: 2px solid #833ab4;}
.callback .circle_fill.insta{  background: #833ab4;box-shadow: 0 0 2px 0 #833ab4!important;}
.callback .btn_nnt.insta{background: center center no-repeat #833ab4;color: #fff;}
.callback .btn_nnt.insta > img {vertical-align: middle;width: 100%;}

