/* 
  Polkar Energetic Waterpark Theme (Bootstrap 5.3 Integrated)
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Nunito:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --color-primary: #0077b6;
  --color-primary-light: #0096c7;
  --color-accent: #F59426;
  --color-accent-hover: #d47a1d;
  --color-secondary: #00b4d8;
  --color-dark: #03045e;

  --color-text: #2b2d42;
  --color-text-light: #6c757d;
  --color-bg-light: #f8f9fa;
  --color-white: #ffffff;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --section-padding: 100px 0;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --shadow: 0 45px 90px rgba(0, 0, 0, 0.45);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding-left: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pointer {
  cursor: pointer;
}

.section-padding {
  padding: var(--section-padding);
}

.section-bg-light {
  background-color: #f0f8ff;
}

.section-dark {
  background-color: #28C3F2;
  color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-light-gray {
  color: rgba(255, 255, 255, 0.7) !important;
}

.border-radius-large {
  border-radius: 20px;
}

.shadow-lg {
  box-shadow: var(--shadow);
}

/* Badges */
.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-dark);
  background: rgba(0, 119, 182, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.badge-light {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
}

/* Buttons & Links */
.btn-custom {
  display: inline-block;
  padding: 14px 35px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary-custom {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary-custom:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 143, 163, 0.3);
}

.btn-outline-custom {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline-custom:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 45px;
  font-size: 1.1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
}

.link-arrow .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  color: var(--color-accent);
}

.link-arrow:hover .arrow {
  transform: translateX(5px);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 143, 163, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 143, 163, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 143, 163, 0);
  }
}

.shadow-pulse {
  animation: pulseGlow 2s infinite;
}

/* ------------------------------------- */
/* NAVBAR */
/* ------------------------------------- */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar-custom.scrolled,
.navbar-custom.solid-bg {
  padding: 10px 0;
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hero-logo {
  display: block;
  width: 150px;
  height: auto;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.navbar-custom.scrolled .hero-logo,
.navbar-custom.solid-bg .hero-logo {
  width: 110px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 2px;
}

.scrolled-logo {
  display: none;
  width: 150px;
  height: auto;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.navbar-custom.scrolled .scrolled-logo,
.navbar-custom.solid-bg .scrolled-logo {
  display: block;
  width: 110px;
}

.navbar-custom.scrolled .hero-logo {
  display: none;
}

/*
.navbar-custom.scrolled .hero-logo, .navbar-custom.solid-bg .hero-logo { display: none; }
.navbar-custom.scrolled .scrolled-logo, .navbar-custom.solid-bg .scrolled-logo { display: block; }*/

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link-custom {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar-custom.scrolled .nav-link-custom,
.navbar-custom.solid-bg .nav-link-custom {
  color: var(--color-text);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-link-custom:hover {
  color: var(--color-accent);
}

.navbar-custom.scrolled .nav-link-custom:hover,
.navbar-custom.solid-bg .nav-link-custom:hover {
  color: var(--color-primary);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-white);
  cursor: pointer;
}

.navbar-custom.scrolled .mobile-menu-toggle,
.navbar-custom.solid-bg .mobile-menu-toggle {
  color: var(--color-text);
}

/* ------------------------------------- */
/* HERO SECTION (Energetic Theme) */
/* ------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 5;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/slide1.jpg') center/cover no-repeat;
}

.energetic-hero .hero-bg-image {
  background-image: url('https://images.unsplash.com/photo-1572979261318-ab9ca7518d6e?auto=format&fit=crop&q=80&w=2000');
}

.hero-overlay-energetic {
  display: none !important;
  /* Completely removed as requested */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: #caf0f8;
  font-weight: 800;
}

.hero-title {
  font-size: 5.5rem;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Single Page Headers (Products, Detail, References) */
.page-header {
  position: relative;
  height: 35vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-primary);
  margin-bottom: 50px;
}

.page-header-title {
  font-size: 4rem;
  color: var(--color-white);
  margin-top: 150px;
}

.breadcrumb-custom {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 10px;
}

.breadcrumb-custom a {
  color: var(--color-white);
  margin: 0 5px;
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  color: var(--color-accent);
}

/* ------------------------------------- */
/* ABOUT US */
/* ------------------------------------- */


.section-title h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--color-dark);
    font-weight:700;
}

.section-description {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-weight: 600;
}

.section-description p{
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.stat-item p {
  font-weight: 600;
  color: var(--color-text-light);
}

.stat-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.img-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  box-shadow: var(--shadow);
}

.img-wrapper:hover img {
  transform: scale(1.05);
}

.img-tall {
  height: 500px;
}

.img-short {
  height: 350px;
  margin-top: 50px;
}

.shadow-lg {
  box-shadow: 0px 0rem 2rem 9px rgba(0, 0, 0, 0.375) !important;
}

/* ------------------------------------- */
/* PRODUCTS CARDS (Energetic) */
/* ------------------------------------- */
.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 119, 182, 0.2);
}

.product-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 0;
}

.product-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(3, 4, 94, 0.9), transparent);
  z-index: 1;
  transition: opacity 0s 0.42s;
}

.product-card:hover .product-img-wrapper img,
.flip-card-container:hover .product-img-wrapper img {
  transform: scale(1.1);
}

.flip-card-container:hover .product-img-wrapper::after {
  opacity: 0;
  transition: opacity 0s 0.42s;
}

.card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 2;
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: opacity 0s 0.42s;
}

.flip-card-container:hover .product-info {
  opacity: 0;
  transition: opacity 0s 0.42s;
}

.product-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.product-info p {
  display: none;
}

.view-more {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.view-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.product-card:hover .view-more i {
  transform: translateX(5px);
}

/* Product Details Page Setup */
.product-detail-visuals {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}

.product-detail-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.feature-list i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

/* ------------------------------------- */
/* FAQ SECTION */
/* ------------------------------------- */
.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 0 30px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 1.15rem;
  color: var(--color-dark);
  transition: color 0.3s;
  margin: 0;
  font-weight:700;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: transform 0.4s ease;
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-accent);
}

.faq-item.active .faq-question h4 {
  color: var(--color-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: var(--color-text-light);
  font-weight: 600;
  margin: 0;
}

/* ------------------------------------- */
/* REFERENCES / CERTIFICATES preview */
/* ------------------------------------- */
.client-logo-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  color: var(--color-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-weight: 700;
}

.client-logo-box i {
  color: var(--color-accent);
  margin-bottom: 15px;
}

.client-logo-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* References / Certificates Page Grid */
.cert-card {
  text-align: center;
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-card i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.cert-card h4 {
  color: var(--color-dark);
  margin-bottom: 0;
  font-weight:700;
}

/* ------------------------------------- */
/* FOOTER */
/* ------------------------------------- */
.footer {
  background-color: #28C3F2;
  color: var(--color-white);
  padding: 80px 0 30px;
  border-top: 5px solid rgba(0, 0, 0, 0.05);
}

.footer-logo-img {
  width: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-desc {
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

    .social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--color-dark);
        color: var(--color-white);
        font-size: 1.2rem;
        transition: var(--transition);
        text-decoration: none;
    }

.social-icons a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.link-group h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  padding-bottom: 5px;
  font-weight:700;
}

.link-group a {
    display: block;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s;
    text-decoration: none;
}

.link-group a i {
  width: 25px;
  color: var(--color-accent);
  text-align: center;
}

.link-group a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.line-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
  margin-bottom: 30px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* --- OFF CANVAS SAİLORS BEACH CLUB STYLE --- */
.offcanvas-custom {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-left: none;
  width: 400px !important;
}

.offcanvas-custom .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem !important;
}

.offcanvas-custom .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-custom .btn-close:hover {
  opacity: 1;
}

.offcanvas-custom .offcanvas-body {
  padding: 2.5rem !important;
}

.offcanvas-nav-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  padding: 15px 0;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-nav-link:hover,
.offcanvas-nav-link.text-accent {
  color: var(--color-accent) !important;
  padding-left: 15px;
}

/* --- SIDEBAR OFFCANVAS (Melas Style) --- */
/* --- SIDEBAR OFFCANVAS (Melas Style Refined) --- */
.offcanvas-sidebar {
  background: rgb(30 60 173 / 95%) !important;
  /* Light solid background */
  color: var(--color-text-light);
  border: none;
  width: 400px !important;
  /* Sidebar width */
  overflow-x: hidden;
  /* Snappier fade effect */
  transform: none !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s !important;
}

.offcanvas-sidebar.show {
  opacity: 1;
  visibility: visible;
}

.offcanvas-sidebar .offcanvas-header {
  padding: 2rem 5% !important;
  border: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* Snappier slide effect */
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transition-delay: 0.05s;
}

.offcanvas-sidebar.show .offcanvas-header {
  transform: translateX(0);
  opacity: 1;
}

.menu-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 20px;
  opacity: 0.8;
  color: var(--color-white);
}

.offcanvas-sidebar .btn-close {
  filter: none;
  /* Removed invert for white background */
  opacity: 1;
  width: 2rem;
  height: 2rem;
  background-size: 1.5rem;
  transition: transform 0.3s ease;
}

.offcanvas-sidebar .btn-close:hover {
  transform: rotate(90deg);
}

.offcanvas-sidebar .offcanvas-body {
  padding: 2rem 5% 4rem !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  /* Snappier slide effect */
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  transition-delay: 0.08s;
}

.offcanvas-sidebar.show .offcanvas-body {
  transform: translateX(0);
  opacity: 1;
}

.sidebar-nav {
  width: 100%;
  max-width: 100%;
  text-align: right;
  background: transparent;
  /* No background box */
  padding: 20px 0;
  border-radius: 0;
  box-shadow: none;
}

.sidebar-lang {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.lang-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.lang-link:hover,
.lang-link.active {
  opacity: 1;
  color: var(--color-white);
}

.sidebar-nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  padding: 10px 0;
  display: block;
  transition: all 0.3s ease;
  border-bottom: none;
  /* No borders */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sidebar-nav-link:hover {
  color: var(--color-white) !important;
  padding-right: 15px;
}

.sidebar-nav-link.active {
  color: var(--color-white) !important;
  font-weight: 800;
}

.sidebar-nav-link.active::after {
  content: '';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 15px;
  font-size: 1.2rem;
}

.sidebar-footer {
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: right;
}

.sidebar-contact {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--color-white);
}

.sidebar-contact p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.9;
}

.sidebar-contact i {
  margin-left: 15px;
  color: var(--color-white);
  font-size: 1.1rem;
  order: 2;
  /* Move icon to after the text */
}

.sidebar-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.sidebar-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.offcanvas-backdrop {
  background-color: transparent !important;
}

.hover-accent {
  transition: color 0.3s ease;
}

.hover-accent:hover {
  color: var(--color-accent) !important;
}

.top-contact-bar {
  background-color: transparent;
  color: var(--color-white);
  font-size: 0.95rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-contact-bar a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-left: 20px;
}

.top-contact-bar a:hover {
  color: var(--color-accent);
}

.navbar-custom.scrolled .top-contact-bar a,
.navbar-custom.solid-bg .top-contact-bar a {
  color: var(--color-text);
}

.navbar-custom.scrolled .top-contact-bar .text-white,
.navbar-custom.solid-bg .top-contact-bar .text-white {
  color: var(--color-text-light) !important;
}

/* Contact Forms */
.form-control-custom {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  background-color: #fafafa;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 119, 182, 0.1);
  background-color: var(--color-white);
}

/* FLIP CARDS 3D */
.flip-card-container {
  background-color: transparent;
  perspective: 1000px;
  height: 480px;
  width: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.flip-card-front {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.flip-card-back {
  background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.flip-card-back h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color-white);
}

.flip-card-back p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-align: center;
}

/* MINI HEADERS */
.page-header-mini {
  height: 350px !important;
  min-height: 350px !important;
  /*background: linear-gradient(135deg, rgba(3, 4, 94, 0.8) 0%, rgba(0, 119, 182, 0.6) 100%), url('img/slayt1.jpg') center/cover no-repeat !important;*/
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  justify-content: center;
}

.page-header-mini .page-header-title {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}



/* SCROLL INDICATOR */
.scroll-down-indicator {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-white);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  z-index: 12;
  opacity: 0.8;
  cursor: pointer;
  text-decoration: none;
}

.scroll-down-indicator::before {
  content: '';
  position: absolute;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* HERO SLOGAN WIDGET */
.hero-slogan-widget {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
}

.hero-slogan-widget .hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #caf0f8;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Added shadow */
}

    .hero-slogan-widget .hero-title {
        font-size: 1.9rem;
        margin-bottom: 0px;
        line-height: 1.2;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        font-weight: 700;
        /* Increased shadow */
    }

.hero-slogan-widget .hero-description {
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Added shadow */
}

.hero-slogan-widget .btn-custom {
  padding: 10px 25px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-hero-action {
  width: 75px;
  height: 40px;
  border-radius: 15%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 0 !important;
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 20px rgba(0, 119, 182, 0.4);
  transition: var(--transition);
}

.btn-hero-action:hover {
  transform: scale(1.1);
  background-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(245, 148, 38, 0.4);
  color: var(--color-white);
}

.hero-action-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .btn-hero-action {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 12px 0 !important;
    border-radius: var(--border-radius);
  }
}

/* ------------------------------------- */
/* ACCORDION (FAQ) REFINEMENT */
/* ------------------------------------- */
.accordion-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.accordion-item:hover {
  box-shadow: 0 15px 35px rgba(0, 119, 182, 0.1) !important;
}

.accordion-button {
  background-color: var(--color-white);
  color: var(--color-dark) !important;
  box-shadow: none !important;
  border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 119, 182, 0.05);
  color: var(--color-primary);
}

.accordion-button::after {
  filter: grayscale(1);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  filter: none;
}

.text-secondaryy p{
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.item-icon {
    text-align: center;
    margin:0 0 10px 0;
}

.item-icon img {
    width: 50px !important;
    display: block;
    margin: 0 auto;
}


.info-content ul {
    list-style: none; 
    padding-left: 0;
}

    .info-content ul li {
        position: relative;
        padding-left: 25px;
    }

        .info-content ul li::before {
            content: "\f00c"; 
            font-family: "Font Awesome 6 Free";
            font-weight: 900; 
            position: absolute;
            left: 0;
            top: 0;
            color: orange;
        }


.footer-bottom p {
    color: var(--color-dark);
}





.urun-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.urun-card__image-wrap {
    flex-shrink: 0;
    width: 250px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.urun-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.urun-card__content {
    flex: 1;
}

.urun-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.urun-card__desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px 0;
    text-align: justify;
}

.urun-card__btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #4a90d9;
    border: 1.5px solid #b0cff0;
    border-radius: 20px;
    padding: 6px 20px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .urun-card__btn:hover {
        background: #4a90d9;
        color: #fff;
    }

@media (max-width: 480px) {
    .urun-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .urun-card__image-wrap {
        width: 100%;
        height: 180px;
    }
}