@charset "UTF-8";

/* elementor */

.elementor-kit-8 {
    --e-global-color-primary: #0D0404 !important;
    --e-global-color-secondary: #F7F8F9 !important;
    --e-global-color-text: #737373 !important;
    --e-global-color-accent: #2f8680 !important;
    --e-global-color-73a52b1: #FFFFFF !important;
    --e-global-color-cc4cb93: #FFFFFF00 !important;
    --e-global-color-7a60707: #2f8680 !important;
    --e-global-color-ebcb48b: #2f8680 !important;
    --e-global-color-4f9332a: #FFFFFFC4 !important;
    --e-global-color-7356aa1: #06347026 !important;
    --e-global-color-78843eb: #DBDBDB !important;
    --e-global-color-43abeab: #FFFFFF33 !important;
    --e-global-color-64c97a6: #FFFFFF0F !important;
    --e-global-color-394a574: #A6213914 !important;
    --e-global-color-5e9e8ee: #F2F2F2 !important;
}

.elementor-button {
    box-shadow: unset !important;
}

.elementor-icon {
    background-color: var(--e-global-color-7356aa1) !important;
    fill: var(--e-global-color-accent) !important;
    color: var(--e-global-color-accent) !important;
}

/* menu */

.theme-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.theme-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.theme-header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.theme-header-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var( --e-global-color-accent );
    font-size: 26px;
    font-weight: 600;
    transition: .5s;
}

.theme-header-btn a:hover {
    color: #ed7e34;
    transition: .5s;
}

.header-area {
	position: relative;
}

.header-area.border-bottom {
	border-bottom: 1px solid #dddddd;
}

.header-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}

.header-menu ul {
	list-style: none;
	display: inline-block;
	margin: 0;
}

.header-menu ul li {
	display: inline-flex;
	margin-right: 39px;
	align-items: center;
	justify-content: flex-start;
}

.header-menu ul ul li {
	margin-right: 0;
}

.header-menu ul li a {
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	transition: .5s;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-menu ul li a:hover {
	color: var( --e-global-color-accent );
}

.header-menu ul li a::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 0;
	background: var( --e-global-color-accent );
	bottom: 25px;
	right: 0;
	transition: .5s;
}

.header-menu ul li a:hover:before {
	width: 100%;
	left: 0;
}

.header-menu ul li a i {
	font-size: 12px;
	margin-left: 5px;
}

/* sticky menu css */

.sticky-nav {
	left: 0;
	margin: auto;
	top: 0;
	right: 0;
	width: 100%;
	position: fixed !important;
	box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
	-webkit-animation: 300ms running fadeInDown;
	animation: 500ms running fadeInUp;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	transition: 0.5s !important;
	z-index: 9999 !important;
	animation-name: slideInDown;
	padding: 0 30px;
	backdrop-filter: blur(6px);
	background-color: rgba(255, 255, 255, 0.75);
	opacity: 1;
}


.header-menu {
	position: relative;
}

.header-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-menu ul li {
	position: relative;
	display: inline-block;
}

.header-menu ul li a {
	display: block;
	padding: 25px 0;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
}

.header-menu ul ul li a:hover {
	background: var( --e-global-color-accent );
	color: var( --e-global-color-73a52b1 );
}

/* === Submenu (1st level) === */
.header-menu ul .sub-menu {
	position: absolute;
	top: 125%;
	left: 0;
	width: auto;
	background: var( --e-global-color-73a52b1 );
	border-radius: 5px;
	border-top: 2px solid var( --e-global-color-accent );
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
	z-index: 11;
	text-align: left;
}

.header-menu ul li:hover > .sub-menu {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

/* === Submenu items === */
.header-menu ul .sub-menu li {
	width: 100%;
}

.header-menu ul .sub-menu li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-menu ul .sub-menu li a:hover {
	background: var( --e-global-color-accent );
	color: #000;
}

/* === Nested Submenu (2nd level+) === */
.header-menu ul .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 5px;
	border-top: none;
}

.header-menu ul .sub-menu li:hover > .sub-menu {
	visibility: visible;
	opacity: 1;
}

/* === Remove default pseudo === */
.header-menu ul .sub-menu li a::before {
	display: none;
}


/* Menü Toggle Butonu */
.mobile-menu-toggle {
  display: none;
  color: #fff;
}

.mobile-menu-toggle button {
  background: none;
  border: none;
  padding: 10px;
}

.menu-icon {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

/* Menü açıkken çarpı simgesi */
.menu-open .menu-icon {
  background: transparent;
}

.menu-open .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-open .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobil Menü */
.mobile-menu-wrapper {
  position: relative;
  width: 100%;
  max-height: 0;
  background: #fff;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 999;
}

.mobile-menu-wrapper.open {
  max-height: 500px; /* Menüdeki içerik yüksekliğine göre artırabilirsin */
}

.mobile-menu-inner {
  padding: 20px;
}

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

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* Sadece mobilde göster */
@media (max-width: 991px) {
.theme-header-area {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
  .mobile-menu-toggle {
    display: block;
  }

.theme-header-btn,
  .header-menu {
    display: none;
  }
}

.footer-call-to-action {
    bottom: 1rem;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: auto;
    -webkit-transform: translateZ(.5rem);
    z-index: 9;
    justify-content: center;
    align-items: center;
    text-align: center;
    right: 1rem;
}

.footer-call-to-action a.btn-call {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .2rem 2rem;
    border-radius: 10px;
    text-transform: capitalize;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    gap: 5px;
    font-size: 20px;
    height: 50px;
    fill: #fff;
    color: #fff;
    background: #2f8680;
    border: 1px solid #ffffff;
}

.footer-call-to-action a.btn-quote {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    padding: .1rem 1rem;
    text-transform: capitalize;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    gap: 5px;
    font-size: 15px;
    height: 40px;
    border-color: #e5eff0;
    fill: #000000;
    color: #000000;
    background-image: linear-gradient(180deg, #c4ac4d 0%, #f1e88e 100%);
    border: 1px solid #c4ac4d;
}

.footer-whatsapp-btn {
    bottom: 1rem;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: auto;
    -webkit-transform: translateZ(.5rem);
    z-index: 9;
    justify-content: center;
    align-items: center;
    text-align: center;
    left: 1rem;
}

.footer-whatsapp-btn a.btn-call {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    text-transform: capitalize;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    gap: 5px;
    font-size: 20px;
    height: 50px;
    width: 50px;
    fill: #fff;
    color: #fff;
    background: #2f8680;
    border: 1px solid #ffffff;
}

.footer-whatsapp-btn a.btn-quote {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    padding: .1rem 1rem;
    text-transform: capitalize;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    gap: 5px;
    font-size: 15px;
    height: 40px;
    border-color: #e5eff0;
    fill: #000000;
    color: #000000;
    background-image: linear-gradient(180deg, #c4ac4d 0%, #f1e88e 100%);
    border: 1px solid #c4ac4d;
}

/* form */

.quote-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.quote-form-area .quote-form-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.quote-form-area .quote-form-item label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
    color: #000;
}

.quote-form-area .quote-form-item input, .quote-form-area .quote-form-item textarea {
    background-color: #f7f8f9 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.quote-form-area .quote-form-item p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 1em;
    gap: 10px;
}

.quote-form-area .quote-form-item span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.quote-form-area .quote-form-item.btn input {
    background-color: #2f8680 !important;
    border-color: #2f8680;
	color: #fff !important;
}

.quote-form-area .quote-form-item input,
.quote-form-area .quote-form-item textarea {     
	color: #000 !important;
}

.quote-form-area .quote-form-item textarea {
    height: 150px !important;
}