/**
* Template Name: BizPage
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #666666; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgb(173, 169, 201); /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: rgb(71, 72, 72); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgb(212, 175, 55); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


@font-face {
    font-family: "BPG Banner Caps";
    src: url("../fonts/bpg-banner-caps-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

html, body, h1, h2, h3, h4, a {

    font-family: "BPG Banner Caps", sans-serif !important;
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
 background: linear-gradient(
90deg, #5A5293, #8b84c6);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

.navmenu li:last-child a {
  padding-right: 15px;
}

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .menu-item-has-children ul {
    margin: 0;
    padding: 10px 16px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
      left: auto;
       /* right: 0; */
  
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
      display: block;
  width: 100%;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.navmenu .menu-item-has-children > .dropdown-active {
  display: block;
}
.navmenu .menu-item-has-children > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
  transition: 0.3s;
}
.navmenu .menu-item-has-children ul.dropdown-active + a::after,
.navmenu .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}
/* mobile submenu show */
.navmenu .menu-item-has-children ul.dropdown-active {
  display: block !important;
}

/* arrow rotate */
.navmenu .menu-item-has-children.active > a::after {
  transform: rotate(180deg);
}
@media (max-width: 1199px) {

  /* FORCE submenu to stop absolute positioning */
  .navmenu ul .sub-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;

    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    margin-left: 15px !important;
  }

  /* open state */
  .navmenu ul .sub-menu.dropdown-active {
    display: block !important;
  }

}
/*--------------------------------------------------------------
# es
--------------------------------------------------------------*/

.promo-section{
  padding:100px 20px;
}

/* ===== WRAPPER ===== */
.coupon-wrapper{
  perspective:1200px;
}

/* ===== COUPON ===== */
.bg-warning1{
  position:relative;
  padding:90px 60px;
  border-radius:25px;
  background:linear-gradient(135deg,#e6c8ff 0%,#7a1fd1 100%);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
  overflow:visible;
  transition:0.8s ease;
}

/* TEAR EFFECT */
.bg-warning1.tear{
  transform:rotateX(25deg) scale(0.95);
  opacity:0;
}

/* TOP PERFORATION */
.bg-warning1::before{
  content:"";
  position:absolute;
  top:-15px;
  left:0;
  width:100%;
  height:30px;
  background:radial-gradient(circle,#f4f4f4 15px,transparent 16px);
  background-size:45px 30px;
  background-repeat:repeat-x;
}

/* BOTTOM PERFORATION */
.bg-warning1::after{
  content:"";
  position:absolute;
  bottom:-15px;
  left:0;
  width:100%;
  height:30px;
  background:radial-gradient(circle,#f4f4f4 15px,transparent 16px);
  background-size:45px 30px;
  background-repeat:repeat-x;
}

/* SIDE CUTS */
.side-cut{
  position:absolute;
  top:50%;
  width:70px;
  height:70px;
  background:#f4f4f4;
  border-radius:50%;
  transform:translateY(-50%);
  box-shadow:inset 0 6px 12px rgba(0,0,0,0.08);
  z-index:5;
}

.side-left{ left:-35px; }
.side-right{ right:-35px; }

/* ===== LAYOUT ===== */
.coupon-content{
  display:flex;
  gap:80px;
  align-items:center;
}

/* LEFT SIDE */
.coupon-left{
  width:40%;
  color:#fff;
}

.coupon-left h2{
  font-size:32px;
  margin-bottom:20px;
}

.coupon-left p{
  line-height:1.6;
  opacity:0.9;
}

/* RIGHT SIDE */
.pricing-wrapper{
  width:60%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.price-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.price-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(122,31,209,0.3);
}

.menu-btn{
  padding:12px 28px;
  border-radius:30px;
  border:none;
  background:#7a1fd1;
  color:#fff;
  cursor:pointer;
  font-weight:bold;
  transition:0.3s;
}

.menu-btn:hover{
  background:#5d12a8;
}

/* POPUP */
.fullscreen-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:0.4s;
}

.fullscreen-popup.active{
  opacity:1;
  pointer-events:auto;
}

.popup-content{
  background:#fff;
  padding:40px;
  border-radius:20px;
  width:90%;
  max-width:500px;
  position:relative;
}

.close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:26px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
  .coupon-content{
    flex-direction:column;
  }
  .coupon-left,
  .pricing-wrapper{
    width:100%;
  }
}

@media(max-width:768px){
  .pricing-wrapper{
    grid-template-columns:1fr;
  }
}
/*--------------------------------------------------------------
# es end
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #050508;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: #5A5293; /* subtle accent on hover */
}

.footer .footer-about p,
.footer .footer-about span {
  color: #fff;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: #5A5293;
  color: #fff;
  transform: scale(1.2); /* subtle grow on hover */
  border-color: #5A5293;
}
/* Footer ხაზის სტილი მარცხნიდან */
.footer-line {
  width: 60px;       /* სიგანე */
  height: 4px;       /* სისქე */
  background: #5A5293; /* evokeevent.ge ფერი */
  border-radius: 2px;
  margin: 8px 0 16px 0; /* ზედა და ქვედა spacing */
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer .credits a {
  color: #fff;
  text-decoration: none;
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: #050508;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #5A5293;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer .footer-top .row {
    text-align: center;
  }
  .footer .social-links {
    justify-content: center;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.about .section-title h3 {
    font-size: 2rem;          /* დეფოლტ ზომა */
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;    /* სიტყვების გატეხვა, რომ არ გადადიოდეს */
    overflow-wrap: break-word;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .about .section-title h3 {
        font-size: 1.5rem;
    }
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section */
.hero-video {
  position: relative;
  width: 100%;
height: calc(var(--vh, 1vh) * 100);
min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
video {
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Video Styling */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #5A5293, #8b84c6);
  opacity: 0.5; /* შეგიძლია თამაშობდე ამით */
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif !important;
  font-size: 58px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-content .btn {
  padding: 10px 30px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
}

.hero-content .btn:hover {
  background: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-video-bg {
    object-position: center top; /* უკეთესი framing მობილურში */
  }
}

/* Hero Section end */
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0 10px 0;
}

.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

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

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

.stats {
  background: #ffffff;
  padding: 70px 0;
}

.stats-heading {
  text-align: center;
  margin-bottom: 50px;
}

.stats-heading h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
}

.stats-heading p {
  font-size: 15px;
  color: #64748B;
  margin: 0;
}

.stats-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5A5293, #8B83D6);
  margin: 15px auto 0;
  border-radius: 2px;
}

.stats-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.stats-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.stats-icon {
  width: 55px;
  height: 55px;
  background: rgba(90, 82, 147, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.stats-icon i {
  font-size: 26px;
  color: #5A5293;
}

.stats-icon:hover {
  transform: scale(1.15);
  background: rgba(90, 82, 147, 0.2);
}

.stats-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: #5A5293;
  margin: 10px 0 5px;
  line-height: 1.2;
}

.stats-box p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #374151;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-box {
    padding: 25px 15px;
  }
  .stats-icon {
    width: 50px;
    height: 50px;
  }
  .stats-icon i {
    font-size: 24px;
  }
  .stats-box h2 {
    font-size: 18px;
  }
  .stats-heading h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .stats-box {
    padding: 20px 12px;
  }
  .stats-icon {
    width: 45px;
    height: 45px;
  }
  .stats-icon i {
    font-size: 20px;
  }
  .stats-box h2 {
    font-size: 16px;
  }
  .stats-heading h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
/* =========================
   PORTFOLIO SECTION
========================= */
.portfolio {
  padding: 80px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   PORTFOLIO ITEM
========================= */
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;

  transition: box-shadow 0.35s ease;
}

/* =========================
   IMAGE
========================= */
.portfolio .portfolio-item img {
  width: 100%;
  height: 220px;              /* ერთნაირი ზომა */
  object-fit: cover;
  transition: none;
}

/* =========================
   INFO
========================= */
.portfolio .portfolio-info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;                /* თეთრი ტექსტი */
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/* =========================
   TEXT
========================= */
.portfolio .portfolio-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #fff;
}

.portfolio .portfolio-info p {
  font-size: 13px;
  color: #fff; /* თეთრი ტექსტი */
  margin: 0;
}

/* =========================
   PREVIEW ICON
========================= */
.portfolio .portfolio-info .preview-link {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff; /* თეთრი */
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.portfolio .portfolio-info .preview-link:hover {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .portfolio .portfolio-item img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .portfolio .portfolio-item img {
    height: 150px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
}

.team .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

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

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
/*    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);*/
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 350px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

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

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}












/*--------------------------------------------------------------
# ლოკაციები
--------------------------------------------------------------*/

/* Section Background */
.events-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 80px 0;
}

/* Event Card */
.custom-block-bg {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-wrap: wrap;
}

.custom-block-bg:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.custom-block-image-wrap {
    width: 100%;
    max-width: 350px; /* ერთნაირი ზომა */
    height: 220px; /* ფიქსირებული სიმაღლე */
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 20px;
    position: relative;
}

.custom-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ფოტოები ერთნაირი ზომის */
    transition: transform 0.4s ease;
}

.custom-block-image-wrap:hover .custom-block-image {
    transform: scale(1.1);
}

/* Event Info */
.custom-block-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Event Title */
.events-title {
    font-weight: 700;
    color: #1E293B;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s;
}

.events-title:hover {
    color: #5A5293;
    transform: translateX(3px);
    text-decoration: none;
}

/* Event Number */
.custom-block-date {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5A5293;
    margin-bottom: 10px;
}

/* Subtext */
.text-muted {
    color: #6B7280 !important;
    font-size: 0.95rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #5A5293, #8B83D6);
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8B83D6, #5A5293);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90, 82, 147, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .custom-block-bg {
        flex-direction: column;
        align-items: center;
    }
    .custom-block-image-wrap {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: 200px;
    }
    .events-title {
        text-align: center;
    }
}
/*--------------------------------------------------------------
# აქ მორჩა ლოკაციები
--------------------------------------------------------------*/



/* კატეგორიების დიზაინი */
.services-modern {
  padding: 100px 0;
  background: #ffffff;
  color: #111;
}

/* Section Title */
.section-title h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.section-title p {
  color: #666;
  margin-bottom: 70px;
  font-size: 16px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Card Effect */
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(90,82,147,0.15);
  border-color: #5A5293;
}

/* Icon Wrapper */
.service-card .icon {
  margin-bottom: 15px;
}

/* SVG / IMG Icon */
.service-card .service-icon {
  width: 70px;           /* Premium size */
  height: 70px;
  display: block;
  margin: 0 auto 20px auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 6px rgba(90,82,147,0.3));
}

/* Hover Icon Effect */
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 6px 12px rgba(90,82,147,0.4));
}

/* Card Title */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  transition: color 0.3s, transform 0.3s;
}

/* Hover Title Effect */
.service-card:hover h3 {
  color: #5A5293;
  transform: translateY(-3px);
}

/* Card Text */
.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  transition: color 0.3s;
}

/* Optional: Hover text subtle glow */
.service-card:hover p {
  color: #5A5293;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }

  .service-card .service-icon {
    width: 60px;
    height: 60px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}
/* სამზარეულოს ჩამონათვალი */
/* SECTION */
.modern-menu-section {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.modern-header {
  margin-bottom: 60px;
  text-align: center;
}

.modern-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #8b8fa3;
  text-transform: uppercase;
}

.modern-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 10px 0;
  color: #1E293B;
}

.modern-subtitle {
  font-size: 1rem;
  color: #6B7280;
  margin-top: 12px;
}

.modern-divider {
  width: 80px;
  height: 3px;
  background: #ada9c9;
  margin: 15px auto 20px auto;
  border-radius: 5px;
}

/* CARD BASE */
.modern-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(90,82,147,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(90,82,147,0.25);
}

/* FEATURED */
.modern-card.featured {
  border: 2px solid #ada9c9;
  box-shadow: 0 35px 70px rgba(90,82,147,0.35);
}

/* BADGE */
.modern-card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ada9c9;
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(90,82,147,0.35);
  transition: transform 0.3s ease;
}

.modern-card .badge:hover {
  transform: scale(1.08);
}

/* CARD HEADER */
.modern-card-header {
  padding: 26px 20px 18px 20px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #ada9c9,
    #8b84c6
  );
  color: #ffffff;
}

.modern-card-header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.35rem;
}

/* CARD BODY */
.modern-card-body {
  padding: 22px 20px 28px 20px;
  text-align: center;
}

.price {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 22px;
}

.price span {
  font-size: 1rem;
  color: #6B7280;
}

/* FEATURES */
.features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

.features li {
  padding: 11px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 0.95rem;
  color: #374151;
  transition: color 0.3s ease, transform 0.3s ease;
}

.features li:last-child {
  border-bottom: none;
}

.features li:hover {
  color: #ada9c9;
  transform: translateX(4px);
}

/* BUTTON */
.btn-modern {
  border-radius: 50px;
  padding: 11px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ada9c9;
  color: #ffffff;
  border: none;
  transition: all 0.35s ease;
}

.btn-modern:hover {
  background: #4a437a;
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(90,82,147,0.4);
}

/* BASIC muted */
.modern-card.basic {
  opacity: 0.92;
}

/* STANDARD minor variation */
.modern-card.standard .modern-card-header {
  background: linear-gradient(
    135deg,
    #908cb3,
    #9a93d9
  );
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .row.row-cols-md-4 {
    row-gap: 30px;
  }
}
/* შიდა სამზარეულოს მენიუს სტილი */
.menu-modal {
  border-radius: 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 25px 60px rgba(90,82,147,0.35);
}

/* HEADER */
.menu-modal .modal-header {
  background: linear-gradient(
    135deg,
    #ada9c9,
    #8b84c6
  );
  color: #ffffff;
  border: none;
}

.menu-modal .modal-title {
  font-weight: 600;
  letter-spacing: 1px;
}

/* SECTION */
.menu-section {
  margin-bottom: 32px;
}

.menu-section h6 {
  font-weight: 600;
  color: #ada9c9;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ITEMS */
.menu-item {
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
}
.menu-item:hover {
  background: #f3f2ff;
  transform: translateX(4px);
}

.menu-item span {
  color: #374151;
}
.navmenu .sub-menu > .menu-item {
  padding: 6px 10px;
  margin-left: 8px;
}
.menu-item strong {
  color: #ada9c9;
  font-weight: 600;
}

/* ფლეიერის სტილი */
.pulsating-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;

  background: radial-gradient(
    circle at 30% 30%,
    #b7b2e6,
    #7a1fd1
  );

  box-shadow:
    0 10px 25px rgba(122, 31, 209, 0.4),
    0 0 0 0 rgba(122, 31, 209, 0.6);

  transition: all 0.3s ease;
}

/* hover effect */
.pulsating-play-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 15px 35px rgba(122, 31, 209, 0.6),
    0 0 25px rgba(122, 31, 209, 0.8);
}

/* play icon */
.pulsating-play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
  z-index: 2;
}

/* outer pulse ring */
.pulsating-play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid rgba(122, 31, 209, 0.5);
  animation: pulseGlow 1.8s infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
/* =========================
   კონტაქტის ფორმა
========================= */
.contact-section {
  background: #ffffff; /* თეთრი ფონით */
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  color: #1E293B;
}

/* =========================
   TITLE
========================= */
.contact-eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #5A5293;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1E293B;
}
.services-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1E293B;
}
.purple-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #5A5293, #8b84c6);
  border-radius: 2px;
  margin: 0 auto 15px auto;
}
.contact-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #5A5293, #8b84c6);
  border-radius: 2px;
  margin: 0 auto 15px auto;
}

.contact-subtitle {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 50px;
}

/* =========================
   CONTACT CARD
========================= */
.contact-card {
  background: #ffffff; /* თეთრი ბლოკი */
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(90,82,147,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #E5E7EB;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(90,82,147,0.15);
}

/* =========================
   ICON WRAPPER
========================= */
.contact-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #5A5293, #8b84c6);
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(90,82,147,0.2);
}

/* =========================
   CARD TEXT
========================= */
.contact-card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1E293B;
}

.contact-card-text {
  font-size: 1rem;
  color: #4B5563; /* slightly darker grey for contrast */
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .contact-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .contact-card-title {
    font-size: 1.1rem;
  }
  .contact-card-text {
    font-size: 0.95rem;
  }
}
/*--------------------------------------------------------------
# Team / Chefs Section – Modern & Elegant
--------------------------------------------------------------*/

.chefs .team-member {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(90, 82, 147, 0.12);
  transition: all 0.4s ease;
  position: relative;
}

/* IMAGE */
.chefs .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .team-member img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

/* IMAGE OVERLAY SHAPE */
.chefs .team-member .member-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 100%;
  background: #ffffff;
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

/* SOCIAL ICONS */
.chefs .team-member .social {
  position: absolute;
  top: 20px;
  right: -60px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 6px 4px;
  box-shadow: 0 10px 25px rgba(90, 82, 147, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
}

.chefs .team-member .social a {
  display: block;
  margin: 12px;
  color: #5A5293;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.chefs .team-member .social a:hover {
  color: #8b84c6;
  transform: scale(1.2);
}

/* INFO */
.chefs .team-member .member-info {
  padding: 20px 18px 28px;
}

.chefs .team-member .member-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1E293B;
}

.chefs .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5A5293;
  margin-bottom: 10px;
}

.chefs .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* HOVER EFFECTS */
.chefs .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(90, 82, 147, 0.25);
}

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

.chefs .team-member:hover .social {
  right: 15px;
  opacity: 1;
}
/* wordpress პოსტის ქარდები */
/* Horizontal Card Base */
/* ================================ */
/* Premium Location Card */
/* ================================ */

/* ================= POST CARD ================= */
.post-card.modern-horizontal {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    width: 100%;
    box-sizing: border-box;
}

.post-card.modern-horizontal:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* ================= IMAGE ================= */
/* ================= IMAGE ================= */
.post-card.modern-horizontal .post-image {
    flex: 0 0 auto;       /* არ იჭრება */
    width: 100%;          /* small screens */
    max-width: 340px;     /* desktop max width */
    height: auto;         /* flexible height */
    aspect-ratio: 16/9;   /* შენარჩუნებს proper proportion */
    position: relative;
    overflow: hidden;
}

.post-card.modern-horizontal .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* არ აირიოს */
    display: block;
    transition: transform 0.5s ease;
}

.post-card.modern-horizontal:hover .post-image img {
    transform: scale(1.08);
}

/* ================= TEXT ================= */
.post-card.modern-horizontal .post-text {
    flex: 1 1 auto;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
}

/* title */
.post-card.modern-horizontal .post-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1f2937; /* რჩება ყოველთვის შავი */
    line-height: 1.3;
    word-break: break-word;
}

/* ================= RATING ================= */
.post-card.modern-horizontal .post-rating .ratings-content {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 14px;
    background: #EDE7FF; /* subtle purple background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #5A5293; /* text color */
}

.post-card.modern-horizontal .post-rating .ratings-content:hover {
    background: #D6CCFF;
}

.post-card.modern-horizontal .post-rating img {
    width: 22px;
    height: 22px;
    transition: transform 0.2s, filter 0.2s;
}

.post-card.modern-horizontal .post-rating img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.post-card.modern-horizontal .post-rating em {
    font-size: 0.85rem;
    color: #5A5293;
}

/* ================= BADGES ================= */
.post-card.modern-horizontal .post-location {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.post-card.modern-horizontal .post-location .badge {
    background: #5A5293; /* purple badges */
    color: #fff; /* text white */
    padding: 6px 14px;
    border-radius: 18px;
    font-size: .8rem;

        max-width: 100%;
    white-space: normal;      /* ტექსტი გადატყდეს */
    word-break: break-word;   /* გრძელი სიტყვა დაიჭრას */
    overflow-wrap: anywhere;  /* extra უსაფრთხოება */
}

/* ================= EXCERPT ================= */
.post-card.modern-horizontal .post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151; /* dark gray text */
}

/* ================= FOOTER ================= */
.post-card.modern-horizontal .post-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.post-card.modern-horizontal .view-btn {
    background: #8B83D6; /* purple button */
    color: #fff; /* text white */
    padding: 11px 24px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: .25s;
}

.post-card.modern-horizontal .view-btn:hover {
    background: #5A5293; /* darker purple on hover */
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .post-card.modern-horizontal .post-location .badge {
      font-size: 0.75rem;
      padding: 5px 10px;
      line-height: 1.2;
  }
    .post-card.modern-horizontal {
        flex-direction: column;
    }
    .post-card.modern-horizontal .post-image {
        width: 100%;
        max-width: 100%;
        height: 240px;
    }
    .post-card.modern-horizontal .post-text {
        padding: 22px;
    }
    .post-card.modern-horizontal .post-footer {
        justify-content: center; /* button centered */
    }
    .post-card.modern-horizontal .view-btn {
        width: 100%;         /* full width on mobile */
        text-align: center;  /* text centered */
        display: block;      /* ensure block */
        border-radius: 12px; /* optional smaller radius for mobile */
    }
}
.post-categories{
display:flex;
flex-wrap:wrap;
gap:6px;
margin-top:6px;
}

.post-category{
display:inline-block;
background:#f6f7fb;
color:#555;
font-size:12px;
font-weight:600;
padding:4px 10px;
border-radius:8px;
border:1px solid #eceef5;
transition:all .25s ease;
}

.post-category:hover{
background:#5A5293;
color:#fff;
border-color:#5A5293;
transform:translateY(-1px);
}
/* wordpress პოსტის ქარდები მორჩა */
.filter-responsive{
    width:100%;
    margin-bottom:30px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* Group wrapper */
.fr-group{
    display:flex;
    flex-direction:column;
    gap:4px;
}

/* Label */
.fr-group label{
    font-weight:600;
    font-size:0.9rem;
    color:#1f2937;
}

/* Select */
.fr-group select{
    width:100%;
    padding:8px 12px;
    font-size:0.9rem;
    border-radius:12px;
    border:1px solid #ddd;
    background:#fff;
    color:#374151;
    box-shadow:0 2px 6px rgba(0,0,0,0.06);
    appearance:none;
    cursor:pointer;
    transition:all 0.25s ease;
}

.fr-group select:hover{
    border-color:#8B83D6;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.fr-group select:focus{
    outline:none;
    border-color:#8B83D6;
    box-shadow:0 4px 12px rgba(139,131,214,0.2);
}

/* Desktop: inline flex */
@media(min-width:769px){
    .filter-responsive{
        flex-direction:row;
        gap:20px;
    }
    .fr-group{
        flex:1 1 auto;
    }
    .fr-group select{
        width:100%;
        padding:10px 16px;
        font-size:0.95rem;
    }
}
.divider{
  width:80px;
  height:4px;
  background:linear-gradient(90deg,#5A5293,#8B83D6);
  margin:15px auto 30px;
  border-radius:2px;
}

.stats-box{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.stats-box:hover{
  transform:translateY(-8px);
}

.portfolio-item{
  overflow:hidden;
  border-radius:18px;
}

.portfolio-item img{
  height:300px;
  object-fit:cover;
  width:100%;
  transition:0.4s;
}

.portfolio-item:hover img{
  transform:scale(1.08);
}

.city-filter-fullwidth {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* ქვედა spacing */
}

.select-wrapper-full {
    position: relative;
    width: 100%;
    max-width: 400px; /* შეგიძლია შეცვალო */
}

.city-filter-fullwidth select {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border-radius: 30px;
    border: 1px solid #ccc; /* რბილი საზღვარი */
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff; /* მხოლოდ select-ის ფონი */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.city-filter-fullwidth select:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.city-filter-fullwidth select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.select-wrapper-full .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
}
.pagination-wrapper ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    gap: 5px;
}

.pagination-wrapper ul li {
    display: inline-block;
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.pagination-wrapper ul li a:hover {
    background: #5a5293;
    color: #fff;
    border-color: #5a5293;
}

.pagination-wrapper ul li .current {
    background: #5a5293;
    color: #fff;
    border-color: #5a5293;
    pointer-events: none;
}

.post-footer {
    margin-top: 10px;
    flex-wrap: wrap; /* responsive */
}

.post-info .info-item i {
    margin-right: 5px;
    color: #5A5293;
}

@media (max-width: 768px) {
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .post-footer a.btn {
        align-self: flex-end;
    }
}

/* Product Card */
.product-card {
    transition: 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Fixed Image Size */
.product-image {
    width: 100%;
    height: 280px; /* ერთ ზომაზე დაყენებული */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* SALE Badge */
.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4d6d;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
}

/* Price */
.price {
    font-size: 18px;
    font-weight: 600;
    color: #5a5293;
}

.price del {
    color: #999;
    font-weight: 400;
    margin-right: 6px;
}

.price ins {
    text-decoration: none;
    color: #e63946;
}

/* Button */
.add-cart-btn {
    background: #5a5293;
    color: #fff;
    padding: 10px;
    transition: 0.3s;
}

.add-cart-btn:hover {
    background: #473f7a;
    color: #fff;
}
/* ღილაკი „სრულად“ */
.btn-outline-primary {
    background: #5a5293;       /* ძირითადი ფერი */
    color: #fff;
    border: none;
    transition: 0.3s;
}

.btn-outline-primary:hover {
    background: #473f7a;      /* darkened on hover */
    color: #fff;
}


/* Card shadow / hover */
.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}


/* =====================
   Page Title / Header
===================== */
/* =====================
   Neon Hero Section - CSS background
===================== */
/* =====================
   Ultimate Cinematic Hero - Static Version
===================== */
/* ===== HERO WRAPPER ===== */
/* ===== HERO WRAPPER ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 60svh; /* სტაბილური mobile viewport */
    min-height: 300px;
    overflow: hidden;
}

/* ===== BACKGROUND + BLUR ===== */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../img/page-title-bg.webp');
    background-size: cover;
    background-position: center;

    filter: blur(5px);

    /* ❌ აღარ ვსქეილავთ — ეს იწვევდა “zoom effect”-ს */
    transform: none;

    z-index: 1;
}

/* ===== DARK OVERLAY ===== */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0) 100%
    );
    z-index: 2;
}
/* ===== LIGHT EFFECT ===== */
.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0,123,255,0.05), transparent 60%);
    z-index: 2;
}

/* ===== CONTENT ===== */
.hero-inner {
    position: absolute;
    z-index: 3;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

/* ===== TITLE ===== */
.hero-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

/* ===== LINE ===== */
.hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5A5293, #8b84c6);
    margin: 0 auto 15px;
    border-radius: 10px;
}

/* ===== BREADCRUMB ===== */
.hero-path {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.hero-path a {
    color: #fff;
    text-decoration: none;
}

.hero-path span {
    margin: 0 6px;
    opacity: 0.6;
}

/* PAGE */
.contact-modern {
    background: #f4f6fb;
}

/* HERO */
.contact-hero {
    padding: 70px 0;
    background: linear-gradient(90deg, #5A5293, #8b84c6);
    color: #fff;
}

.contact-hero a {
    color: #fff;
    text-decoration: none;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* BOXES */
.contact-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

/* INFO BOX */
.info-item {
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

/* FORM INPUTS */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    transition: 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #8b84c6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139,132,198,0.15);
    outline: none;
}

.wpcf7-form textarea {
    min-height: 140px;
}

/* BUTTON */
.wpcf7-form input[type="submit"] {
    background: linear-gradient(90deg, #5A5293, #8b84c6);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90,82,147,0.3);
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ROW (2 columns) */
.cf-row {
    display: flex;
    gap: 15px;
}

/* FIELD */
.cf-field {
    position: relative;
    flex: 1;
    margin-bottom: 15px;
}

/* ICON */
.cf-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
}

/* INPUTS */
.cf-field input,
.cf-field textarea {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    transition: 0.3s;
}

/* FOCUS */
.cf-field input:focus,
.cf-field textarea:focus {
    border-color: #8b84c6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139,132,198,0.15);
    outline: none;
}

/* TEXTAREA */
.cf-field textarea {
    min-height: 140px;
    resize: vertical;
}

/* BUTTON */
.cf-btn {
    width: 100%;
    background: linear-gradient(90deg, #5A5293, #8b84c6);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.cf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90,82,147,0.3);
}

/* RESPONSIVE */
@media(max-width: 600px) {
    .cf-row {
        flex-direction: column;
    }
}
/* contact end */
/* ===== GENERAL ===== */
.section-heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== ABOUT ===== */
.luxury-about .about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.luxury-about .about-image img {
  transition: 0.5s;
}

.luxury-about .about-image:hover img {
  transform: scale(1.08);
}

.about-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ===== STATS ===== */
.luxury-stats {
  background: #f9f9f9;
}

.stats-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stats-card h3 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  transition: 0.5s;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.4s;
}

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


/* HERO META */
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}

/* ===== ELEGANT GLASS STYLE ===== */

.info-elegant {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ITEM */
.e-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  min-width: 220px;
}

/* HOVER */
.e-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.e-icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.e-text small {
  display: block;
  font-size: 12px;
  color: #888;
}

.e-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* CITY */
.city-name {
  margin-right: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .info-elegant {
    flex-direction: column;
    align-items: stretch;
  }

  .e-item {
    width: 100%;
  }
}

/* BUTTONS */
.booking-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.btn-book, .btn-whatsapp {
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-book {
  background: #111827;
  color: #fff;
}

.btn-book:hover {
  background: #000;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  opacity: 0.9;
}
/* გალერეა მთავარი start */
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

/* 🔥 მთავარი fix */
.gallery-item img {
  width: 100%;
  height: 250px;          /* აქ აკონტროლებ ზომას */
  object-fit: cover;      /* არ იწელება, crop ხდება */
  display: block;
  transition: 0.35s ease;
}

/* overlay */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s ease;
}

/* zoom icon */
.zoom-icon {
  color: #fff;
  font-size: 26px;
  transform: scale(0.8);
  transition: 0.3s ease;
}

/* hover effects */
.gallery-item:hover img {
  transform: scale(1.06);
}

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

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}
/* გალერეა მთავარი end */
.content-meta-top {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.content-meta-bottom {
  margin-top: 20px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}

/* optional spacing for content */
.content-body {
  margin: 10px 0;
}


.auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 40px 15px;

}

.auth-card {
  display: flex;
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LEFT */
.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #5A5293, #8B83D6);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 50px;
}

.auth-title {
  font-size: 2rem;
  font-weight: 800;
}

.auth-subtitle {
  margin-top: 10px;
  opacity: 0.9;
}

/* BADGES */
.auth-badges {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-badges span {
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* RIGHT */
.auth-right {
  flex: 1;
  padding: 40px;
}

/* TABS */
.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.tab-btn.active {
  background: #5A5293;
  color: #fff;
}

/* PANELS */
.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: #5A5293;
  box-shadow: 0 0 0 3px rgba(90,82,147,0.15);
}

/* BUTTON */
.auth-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5A5293, #8B83D6);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90,82,147,0.3);
}

/* ROW */
.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 20px;
  font-size: 13px;
}

.forgot {
  color: #5A5293;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .auth-card {
    flex-direction: column;
  }

  .auth-left {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }
}

.myaccount-dashboard{
  padding:30px;
  display:flex;
  flex-direction:column;
  gap:25px;
  font-family:inherit;
}

/* HERO */
.dash-hero{
  background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
  color:#fff;
  padding:40px;
  border-radius:18px;
}

.dash-hero-content h1{
  color:#fff;
  margin:0;
  font-size:28px;
}

.myaccount-dashboard .dash-hero .dash-hero-content p{
  color:#fff;
  opacity:0.8;
  margin-top:5px;
}

.dash-logout{
  display:inline-block;
  margin-top:15px;
  padding:10px 16px;
  background:#fff;
  color:#000;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* GRID */
.dash-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.dash-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.2s;
}

.dash-card:hover{
  transform:translateY(-4px);
}

.dash-card .icon{
  font-size:24px;
  margin-bottom:10px;
}

.dash-card h3{
  margin:0;
}

.dash-card p{
  opacity:0.6;
  font-size:14px;
}

.dash-card a{
  display:inline-block;
  margin-top:10px;
  font-weight:600;
  color:#000;
  text-decoration:none;
}

/* INFO */
.dash-info{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.info-box{
  background:#f6f6f6;
  padding:20px;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  gap:5px;
}

.info-box span{
  font-size:13px;
  opacity:0.6;
}

.info-box strong{
  font-size:16px;
}
.ev-account {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #f6f7fb;
    border-radius: 20px;
}

/* HEADER */
.ev-header {
    margin-bottom: 25px;
}

.ev-header h2 {
    font-size: 26px;
    margin: 0;
    color: #5b21b6;
}

.ev-header p {
    margin-top: 5px;
    color: #6b7280;
}

/* GRID */
.ev-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARDS (GLASS STYLE) */
.ev-box {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.ev-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ev-box h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #111827;
}

/* LABELS */
.ev-box label {
    font-size: 12px;
    color: #6b7280;
    display: block;
    margin-top: 10px;
}

/* INPUTS */
.ev-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-top: 5px;
    outline: none;
    transition: 0.2s;
}

.ev-box input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

/* BUTTON */
.ev-account button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;

    background: linear-gradient(135deg, #5A5293, #8B83D6);
    color: #ffffff;

    font-weight: 600;
    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow: 0 10px 25px rgba(90, 82, 147, 0.35);
}

.ev-account button:hover {
    background: linear-gradient(135deg, #4d457f, #7a72cc);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(90, 82, 147, 0.45);
}

.ev-account button:active {
    transform: scale(0.98);
}

/* MOBILE */
@media(max-width: 900px){
    .ev-grid{
        grid-template-columns: 1fr;
    }
}

/* =========================
   AUTH LAYOUT
========================= */

.auth-page {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.auth-card {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* LEFT */
.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #5A5293, #8B83D6);
  color: #fff;
  padding: 40px;
}

.auth-left-inner {
  max-width: 300px;
}

.auth-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.auth-subtitle {
  opacity: 0.85;
  font-size: 14px;
}

.auth-badges span {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.9;
}

/* RIGHT */
.auth-right {
  flex: 1;
  padding: 40px;
}

/* =========================
   TABS
========================= */

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: #f3f3f3;
  cursor: pointer;
  border-radius: 10px;
}

.tab-btn.active {
  background: #5A5293;
  color: #fff;
}

/* =========================
   FORMS
========================= */

.auth-form .form-group {
  margin-bottom: 15px;
}

.auth-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #5A5293, #8B83D6);
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}

/* =========================
   TYPE SELECTOR (RADIO CARDS)
========================= */

.type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.type-card {
  flex: 1;
  min-width: 160px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
  background: #fff;
}

.type-card input {
  display: none;
}

/* 🔥 FIXED ICON SIZE */
.type-card .icon {
  font-size: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* TEXT */
.type-card .text strong {
  display: block;
  font-size: 14px;
}

.type-card .text span {
  font-size: 12px;
  color: #777;
}

/* ACTIVE */
.type-card.active {
  border-color: #5A5293;
  box-shadow: 0 10px 25px rgba(90,82,147,0.15);
  transform: translateY(-2px);
}

/* =========================
   LOGIN ROW
========================= */

.auth-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media (max-width: 768px) {

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

  .auth-left {
    display: none; /* არ ჭამს სივრცეს */
  }

  .auth-right {
    padding: 20px;
  }

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

  .type-card {
    width: 100%;
  }
}

.hint{
  display:block;
  font-size:12px;
  color:#888;
  margin-top:4px;
}
/* WRAPPER */
.ev-nav {
  background:#fff;
  border-radius:20px;
  padding:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* TITLE */
.ev-nav-title {
  font-size:18px;
  font-weight:600;
  margin-bottom:20px;
  color:#222;
}

/* LIST */
.ev-nav ul {
  list-style:none;
  padding:0;
  margin:0;
}

/* ITEM */
.ev-nav li {
  margin-bottom:10px;
}

/* LINK */
.ev-nav a {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:12px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:all 0.3s ease;
  position:relative;
}

/* ICON */
.ev-icon {
  font-size:18px;
  width:24px;
  text-align:center;
}

/* HOVER */
.ev-nav a:hover {
  background:#f5f5f7;
}

/* ACTIVE */
.ev-nav li.is-active a {
  background: linear-gradient(135deg, #5A5293, #8B83D6);
  color:#fff;
  box-shadow:0 10px 25px rgba(91,82,147,0.3);
}

/* ACTIVE ICON */
.ev-nav li.is-active .ev-icon {
  transform:scale(1.1);
}

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

  .ev-nav {
    padding:15px;
  }

  .ev-nav a {
    padding:12px;
  }

  .ev-icon {
    font-size:16px;
  }

}

.ev-orders-wrap {
  padding:10px;
}

/* GRID */
.ev-orders-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
}

/* CARD */
.ev-order-card {
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

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

/* TOP */
.ev-order-top {
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
}

.ev-order-id {
  font-weight:600;
}

/* STATUS */
.ev-order-status {
  font-size:12px;
  padding:5px 10px;
  border-radius:20px;
  background:#eee;
}

.ev-order-status.completed {
  background:#d4f8e8;
  color:#1b7f4b;
}

.ev-order-status.processing {
  background:#e8e4ff;
  color:#5A5293;
}

.ev-order-status.hold {
  background:#fff3cd;
  color:#856404;
}

.ev-order-status.cancelled {
  background:#ffd6d6;
  color:#a30000;
}

/* ROW */
.ev-order-row {
  display:flex;
  justify-content:space-between;
  font-size:14px;
  margin-bottom:8px;
  color:#555;
}

/* BUTTON */
.ev-btn {
  display:block;
  text-align:center;
  margin-top:15px;
  padding:10px;
  border-radius:12px;
  background:linear-gradient(135deg, #5A5293, #8B83D6);
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

/* EMPTY */
.ev-empty {
  text-align:center;
  padding:40px;
  color:#777;
}
.ev-invoice {
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* HEADER */
.ev-invoice-header {
  background:#fff;
  padding:20px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.ev-muted {
  color:#888;
  font-size:14px;
}

/* STATUS */
.ev-status-badge {
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}

.ev-status-badge.completed { background:#d4f8e8; color:#1b7f4b; }
.ev-status-badge.processing { background:#e8e4ff; color:#5A5293; }
.ev-status-badge.on-hold { background:#fff3cd; color:#856404; }
.ev-status-badge.cancelled { background:#ffd6d6; color:#a30000; }

/* SUMMARY */
.ev-summary {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:15px;
}

.ev-card {
  background:#fff;
  padding:18px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.ev-card span {
  display:block;
  font-size:12px;
  color:#777;
}

/* SECTION */
.ev-section {
  background:#fff;
  padding:20px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ITEMS */
.ev-items {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.ev-item {
  display:flex;
  justify-content:space-between;
  padding:12px;
  background:#f7f7fb;
  border-radius:12px;
}

/* NOTES */
.ev-note {
  background:#f7f7fb;
  padding:12px;
  border-radius:12px;
  margin-bottom:10px;
}

.ev-note-date {
  font-size:12px;
  color:#777;
  margin-bottom:5px;
}
/* dj start */
.dj-section {
  padding: 60px 0;
  background: #f7f7f7;
}

/* CARD */
.dj-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dj-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.dj-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.5s ease;
}

.dj-card:hover .dj-image img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.08);
}

.dj-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dj-title {
  font-size: 18px;
  font-weight: 700;
}

.dj-category {
  font-size: 13px;
  color: #6c5ce7;
  margin-bottom: 10px;
}

/* BUTTON */
.dj-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
}

.dj-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-book,
.btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-book {
  background: #6c5ce7;
}

.btn-whatsapp {
  background: #25D366;
}

/* MODAL */
.dj-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.dj-modal.show {
  display: flex;
}

.dj-modal-box {
  width: 90%;
  max-width: 650px;
  background: #000;
  padding: 15px;
  border-radius: 14px;
  position: relative;
}

.dj-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.dj-embed iframe {
  width: 100%;
  height: 320px;
}
/* dj end */
/* single location start */
.info-bar {
    max-width: 1100px;   /* აკონტროლებს სიგანეს */
  margin: -35px auto 0; /* შუაში დაჯდება + ზემოთ ამოვა */
  padding: 16px 20px;   /* შიდა ჰაერი */
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 12px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);

  padding: 16px 18px;
  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0,0,0,0.08);

  margin-top: -35px;
  position: relative;
  z-index: 10;
}

/* ITEM */
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* ICON */
.info-item .icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(142, 68, 173, 0.10);
  font-size: 16px;
}

/* TEXT WRAPPER */
.info-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* LABEL */
.info-item-label {
  font-size: 11px;
  font-weight: 600;
  color: #8e44ad;
  letter-spacing: 0.4px;
}

/* VALUE */
.info-item-value {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1c;
}

/* HOVER (soft luxury feel) */
.info-item:hover .icon {
  background: rgba(142, 68, 173, 0.18);
  transform: scale(1.05);
  transition: 0.2s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BUTTONS */
.booking-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-book,
.btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.btn-book {
  background: #6c5ce7;
  color: #fff;
}
.btn-book:hover {
  background: #5a4bd6;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-grid {
    flex-direction: column;
  }

  .booking-actions {
    flex-direction: column;
  }
}
.about-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= WP POST RATINGS ================= */
.rating-inline {
  margin-top: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* WP Post Ratings fix */
.rating-inline img {
  width: 18px !important;
  height: 18px !important;
  margin-right: 2px;
}

.rating-inline span {
  font-size: 13px;
  color: #555;
}

/* single location end */