﻿/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 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: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --nav-font: "Plus Jakarta Sans", sans-serif;
}

/* Global Colors - Logo Kırmızı Tema */
:root { 
  --background-color: #ffffff;
  --default-color: #3d4a5c;
  --heading-color: #1a0a0a;
  --accent-color: #d32f2f;
  --accent-secondary: #ff5252;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #1a0a0a;
  --nav-hover-color: #d32f2f;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #d32f2f;
}

/* 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: #f9f9f9;
  --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: #d32f2f;
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    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);
  }

  .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;
    z-index: 9999;
    position: relative;
  }

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

  /* Drawer panel - sağdan kayar */
  .navmenu ul {
    display: block;
    visibility: hidden;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    padding: 70px 0 20px;
    margin: 0;
    background-color: #fff;
    overflow-y: auto;
    transition: right 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  }

  /* Overlay - arka plan karartma */
  .navmenu::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Aktif durumda drawer açılır */
  .mobile-nav-active .navmenu ul {
    right: 0;
    visibility: visible;
  }

  .mobile-nav-active .navmenu::before {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1a0a0a;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    transition: 0.2s;
    border-bottom: 1px solid #f5e8e8;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d32f2f;
    background: #fff5f5;
  }

  .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 .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: 0 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: #d32f2f;
    position: fixed;
    font-size: 28px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9997;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

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

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

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #e53935;
}

.services .service-item.item-cyan .icon {
  color: #e53935;
  background: rgba(229, 57, 53, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #e53935;
}

.services .service-item.item-cyan:hover {
  background: #e53935;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #ef5350;
}

.services .service-item.item-orange .icon {
  color: #ef5350;
  background: rgba(239, 83, 80, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #ef5350;
}

.services .service-item.item-orange:hover {
  background: #ef5350;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #c62828;
}

.services .service-item.item-teal .icon {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #c62828;
}

.services .service-item.item-teal:hover {
  background: #c62828;
}

.services .service-item.item-red {
  border-bottom: 3px solid #d32f2f;
}

.services .service-item.item-red .icon {
  color: #d32f2f;
  background: rgba(211, 47, 47, 0.1);
}

.services .service-item.item-red .read-more {
  color: #d32f2f;
}

.services .service-item.item-red:hover {
  background: #d32f2f;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #c62828;
}

.services .service-item.item-indigo .icon {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #c62828;
}

.services .service-item.item-indigo:hover {
  background: #c62828;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #e53935;
}

.services .service-item.item-pink .icon {
  color: #e53935;
  background: rgba(229, 57, 53, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #e53935;
}

.services .service-item.item-pink:hover {
  background: #e53935;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

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

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

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

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

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  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);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

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

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

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

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

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

.testimonials .testimonial-item h3 {
  font-size: 18px;
  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;
}

.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;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -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;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

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

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

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.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] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: 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 .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  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 */
}

/*--------------------------------------------------------------
# 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: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 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 .content .read-more {
  text-align: right;
}

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

.blog-posts .content .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: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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 Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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%);
}

/*--------------------------------------------------------------
# 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 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  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: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

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

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.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 {
  margin-bottom: -10px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Custom Image Frame Styles
--------------------------------------------------------------*/
.img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(65, 84, 241, 0.18), 0 2px 8px rgba(0,0,0,0.10);
  border: 3px solid rgba(65, 84, 241, 0.15);
  background: #fff5f5;
  display: block;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 13px;
}

/* Hero image frame */
.hero-img .img-frame {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(65, 84, 241, 0.22), 0 4px 16px rgba(0,0,0,0.12);
  border: 4px solid rgba(65, 84, 241, 0.2);
  aspect-ratio: 4/3;
}

/* About section image frame */
.about .img-frame {
  aspect-ratio: 4/3;
  border-radius: 18px;
}

/* Values card images */
.values .card .img-frame {
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 2px solid rgba(65, 84, 241, 0.12);
  box-shadow: 0 4px 16px rgba(65, 84, 241, 0.12);
}

/* Features section images */
.features .img-frame,
.alt-features .img-frame {
  aspect-ratio: 4/3;
  border-radius: 16px;
}

/* Blog post images */
.recent-posts .post-img .img-frame {
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 2px solid rgba(65, 84, 241, 0.10);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
.whatsapp-btn {
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
}

/*--------------------------------------------------------------
# Mobile Responsive Fixes
--------------------------------------------------------------*/

/* --- Hero Section --- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    width: 100%;
    justify-content: center;
    margin: 6px 0 !important;
  }

  .hero-img .img-frame {
    margin-top: 30px;
    aspect-ratio: 16/10;
  }
}

/* --- About Section --- */
@media (max-width: 768px) {
  .about .content {
    text-align: center;
    padding: 0 10px;
  }

  .about .content h2 {
    font-size: 20px;
  }

  .about .img-frame {
    margin-top: 24px;
    aspect-ratio: 16/9;
  }

  .about .btn-read-more {
    margin: 0 auto;
  }
}

/* --- Values Cards --- */
@media (max-width: 768px) {
  .values .card {
    margin-bottom: 20px;
  }

  .values .card .img-frame {
    aspect-ratio: 16/8;
  }
}

/* --- Stats --- */
@media (max-width: 576px) {
  .stats .stats-item {
    flex-direction: column;
    text-align: center;
    padding: 16px 10px;
  }

  .stats .stats-item i {
    margin-bottom: 8px;
    font-size: 36px;
  }
}

/* --- Features --- */
@media (max-width: 768px) {
  .features .img-frame,
  .alt-features .img-frame {
    aspect-ratio: 16/9;
    margin-bottom: 24px;
  }

  .features .feature-box h3 {
    font-size: 14px;
  }
}

/* --- Services --- */
@media (max-width: 576px) {
  .services .service-item {
    padding: 20px 16px;
  }
}

/* --- Pricing --- */
@media (max-width: 768px) {
  .pricing .pricing-tem {
    margin-bottom: 20px;
  }

  .pricing .price {
    font-size: 36px;
  }
}

/* --- FAQ --- */
@media (max-width: 768px) {
  .faq .faq-item h3 {
    font-size: 15px;
    padding-right: 30px;
  }
}

/* --- Testimonials --- */
@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 16px;
  }
}

/* --- Contact --- */
@media (max-width: 768px) {
  .contact .info-item {
    padding: 16px;
    margin-bottom: 12px;
  }

  .contact iframe {
    height: 280px !important;
    margin-top: 20px;
  }
}

/* --- Blog / Recent Posts --- */
@media (max-width: 576px) {
  .recent-posts .post-item .img-frame {
    aspect-ratio: 16/8;
  }

  .recent-posts .post-content h3 {
    font-size: 16px;
  }
}

/* --- Footer --- */
@media (max-width: 768px) {
  .footer .footer-top .footer-about,
  .footer .footer-top .footer-links {
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .footer-newsletter form {
    flex-direction: column;
  }

  .footer .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .footer .newsletter-form input[type="email"],
  .footer .newsletter-form input[type="submit"] {
    width: 100%;
    border-radius: 6px !important;
  }
}

/* --- WhatsApp Button --- */
@media (max-width: 576px) {
  .whatsapp-btn {
    width: 44px;
    height: 44px;
    bottom: 65px;
    right: 12px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* --- General img-frame on mobile --- */
@media (max-width: 576px) {
  .img-frame {
    border-radius: 10px;
    border-width: 2px;
  }
}

/* --- Page Title (blog) --- */
@media (max-width: 768px) {
  .page-title .heading h1 {
    font-size: 26px;
  }

  .page-title .heading p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# WhatsApp Popup
--------------------------------------------------------------*/
.wa-popup {
  position: fixed;
  bottom: 125px;
  right: 15px;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9998;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wa-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.wa-popup-header {
  background: #075e54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-popup-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}

.wa-popup-header .wa-info h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.wa-popup-header .wa-info span {
  color: #a8d5b5;
  font-size: 11px;
}

.wa-popup-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.wa-popup-close:hover {
  color: #fff;
}

.wa-popup-body {
  padding: 16px;
  background: #e5ddd5;
}

.wa-bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
  max-width: 90%;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-bubble .wa-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}

.wa-popup-footer {
  padding: 12px 16px;
  background: #f0f0f0;
}

.wa-popup-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.wa-popup-footer a:hover {
  background: #1ebe5d;
  color: #fff;
}

@media (max-width: 400px) {
  .wa-popup {
    width: calc(100vw - 30px);
    right: 15px;
  }
}

/*--------------------------------------------------------------
# Font Fine-tuning
--------------------------------------------------------------*/
body {
  font-family: var(--default-font);
  font-size: 15.5px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title h2 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

.navmenu a {
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0;
}

p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
}

.service-item h3,
.pricing-tem h3,
.feature-box h3 {
  font-family: var(--heading-font);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Announcement Bar
--------------------------------------------------------------*/
.announcement-bar {
  background: linear-gradient(90deg, #7f0000 0%, #d32f2f 50%, #ff5252 100%);
  color: #fff;
  font-size: 13.5px;
  padding: 9px 16px;
  position: relative;
  z-index: 9999;
  text-align: center;
}

.announcement-bar strong { color: #fff; }

.countdown-timer {
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 2px 10px;
  font-weight: 700;
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 1px;
}

.ann-btn {
  background: #fff;
  color: #d32f2f;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.ann-btn:hover { background: #fff5f5; color: #d32f2f; }

.ann-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.ann-close:hover { color: #fff; }

/*--------------------------------------------------------------
# Trust Badges
--------------------------------------------------------------*/
.trust-badges {
  background: #fff5f5;
  border-top: 1px solid #ffd7d7;
  border-bottom: 1px solid #ffd7d7;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
}

.trust-badge i {
  font-size: 22px;
  color: #d32f2f;
}

.trust-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
}

/*--------------------------------------------------------------
# Sticky CTA Bar
--------------------------------------------------------------*/
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1f5e;
  color: #fff;
  padding: 12px 0;
  z-index: 9990;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.sticky-cta-text strong {
  font-size: 15px;
  color: #fff;
}

.sticky-cta-text span {
  font-size: 12px;
  color: #a8b4ff;
}

.sticky-btn-call {
  background: #d32f2f;
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 0.2s;
}
.sticky-btn-call:hover { background: #3040d0; color: #fff; }

.sticky-btn-wa {
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 0.2s;
}
.sticky-btn-wa:hover { background: #1ebe5d; color: #fff; }

@media (max-width: 576px) {
  .sticky-cta .container { flex-direction: column; text-align: center; }
  .sticky-cta-text { align-items: center; margin-bottom: 8px; }
  .sticky-btn-call, .sticky-btn-wa { flex: 1; justify-content: center; }
}

/*--------------------------------------------------------------
# Exit Intent Popup
--------------------------------------------------------------*/
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.exit-popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: calc(100% - 32px);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.exit-popup-overlay.show .exit-popup-box { transform: scale(1); }

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.exit-popup-close:hover { color: #333; }

.exit-popup-icon { font-size: 48px; margin-bottom: 12px; }

.exit-popup-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1f5e;
  margin-bottom: 10px;
}

.exit-popup-box p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 20px;
}

.exit-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.exit-btn-primary {
  background: #d32f2f;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.exit-btn-primary:hover { background: #3040d0; color: #fff; }

.exit-btn-wa {
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.exit-btn-wa:hover { background: #1ebe5d; color: #fff; }

.exit-popup-note {
  font-size: 11.5px;
  color: #aaa;
  margin: 0;
}

/*--------------------------------------------------------------
# MODERN CORPORATE REDESIGN
--------------------------------------------------------------*/

/* === HEADER === */
.header {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,86,219,0.08);
  box-shadow: 0 2px 24px rgba(13,27,62,0.07);
  transition: all 0.3s ease;
}

.header .sitename {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.header .logo img { height: 36px; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: linear-gradient(90deg, #3b0000 0%, #d32f2f 50%, #ef5350 100%) !important;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 50%, #fff0f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  color: #3b0000;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p { color: #4a5568; font-size: 17px; }

.btn-get-started {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  box-shadow: 0 4px 20px rgba(26,86,219,0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-get-started:hover {
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(26,86,219,0.45) !important;
}

.btn-watch-video {
  border: 2px solid rgba(26,86,219,0.3) !important;
  border-radius: 10px !important;
  color: #d32f2f !important;
  font-weight: 600 !important;
  background: rgba(26,86,219,0.05) !important;
  transition: all 0.3s ease !important;
}

.btn-watch-video:hover {
  background: rgba(26,86,219,0.1) !important;
  border-color: #d32f2f !important;
}

/* === SECTION TITLES === */
.section-title h2 {
  color: #3b0000;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #d32f2f, #ef5350);
  border-radius: 2px;
}

.section-title p { color: #64748b; font-size: 16px; }

/* === ABOUT === */
.about { background: #fff; }

.about .content h3 {
  color: #d32f2f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about .content h2 {
  font-size: 28px;
  color: #3b0000;
  line-height: 1.3;
}

.btn-read-more {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  border-radius: 10px !important;
  padding: 11px 24px !important;
  font-weight: 700 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3) !important;
  transition: all 0.3s !important;
}

.btn-read-more:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(26,86,219,0.4) !important;
}

/* === VALUES CARDS === */
.values { background: #f8faff; }

.values .card {
  border: 1px solid rgba(26,86,219,0.1) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 16px rgba(13,27,62,0.06) !important;
}

.values .card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(26,86,219,0.15) !important;
  border-color: rgba(26,86,219,0.25) !important;
}

.values .card h3 { color: #3b0000; font-size: 17px; font-weight: 700; }

/* === STATS === */
.stats {
  background: #fff;
  position: relative;
}

.stats::before,
.stats::after {
  display: none;
}

.stats .stats-item {
  background: #f8faff;
  border: 1px solid rgba(26,86,219,0.12);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(13,27,62,0.06);
}

.stats .stats-item:hover {
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,86,219,0.25);
}

.stats .stats-item:hover i,
.stats .stats-item:hover span,
.stats .stats-item:hover p {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.stats .stats-item i {
  font-size: 36px;
  color: #d32f2f !important;
  margin-bottom: 4px;
}

.stats .stats-item span {
  color: #3b0000;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.stats .stats-item p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* === FEATURES === */
.features { background: #fff; }

.features .feature-box {
  background: #f8faff;
  border: 1px solid rgba(26,86,219,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s;
}

.features .feature-box:hover {
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  border-color: transparent;
}

.features .feature-box:hover h3 { color: #fff; }
.features .feature-box:hover i { color: #fff !important; }

.features .feature-box i {
  color: #d32f2f;
  font-size: 22px;
  font-weight: 900;
}

.features .feature-box h3 {
  color: #3b0000;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* === ALT FEATURES === */
.alt-features { background: #f8faff; }

.alt-features .icon-box {
  background: #fff;
  border: 1px solid rgba(26,86,219,0.1);
  border-radius: 14px;
  padding: 22px 20px;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(13,27,62,0.05);
}

.alt-features .icon-box:hover {
  border-color: #d32f2f;
  box-shadow: 0 8px 28px rgba(26,86,219,0.15);
  transform: translateY(-4px);
}

.alt-features .icon-box i {
  font-size: 32px;
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alt-features .icon-box h4 { color: #3b0000; font-size: 16px; font-weight: 700; }
.alt-features .icon-box p { color: #64748b; font-size: 14px; margin: 0; }

/* === SERVICES === */
.services { background: #fff; }

.services .service-item {
  border-radius: 16px !important;
  border: 1px solid rgba(26,86,219,0.08) !important;
  box-shadow: 0 2px 16px rgba(13,27,62,0.06) !important;
  transition: all 0.3s ease !important;
  overflow: hidden;
}

.services .service-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(26,86,219,0.15) !important;
}

.services .service-item .icon {
  font-size: 36px !important;
  margin-bottom: 16px;
}

.services .service-item h3 { color: #3b0000; font-size: 18px; font-weight: 700; }
.services .service-item p { color: #64748b; font-size: 14.5px; }

/* === PRICING === */
.pricing { background: #f8faff; }

.pricing .pricing-tem {
  border-radius: 20px !important;
  border: 1px solid rgba(26,86,219,0.12) !important;
  box-shadow: 0 4px 24px rgba(13,27,62,0.07) !important;
  transition: all 0.3s ease !important;
  overflow: hidden;
  background: #fff;
}

.pricing .pricing-tem:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(26,86,219,0.18) !important;
  border-color: #d32f2f !important;
}

.pricing .price {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #3b0000 !important;
}

.pricing .btn-buy {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3) !important;
  transition: all 0.3s !important;
}

.pricing .btn-buy:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(26,86,219,0.4) !important;
}

.pricing .featured {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  border-radius: 0 0 10px 10px !important;
  font-weight: 700 !important;
}

/* === FAQ === */
.faq { background: #fff; }

.faq .faq-item {
  border-radius: 12px !important;
  border: 1px solid rgba(26,86,219,0.1) !important;
  margin-bottom: 12px !important;
  padding: 18px 20px !important;
  transition: all 0.3s !important;
  background: #fff;
}

.faq .faq-item:hover, .faq .faq-item.faq-active {
  border-color: #d32f2f !important;
  box-shadow: 0 4px 20px rgba(26,86,219,0.1) !important;
}

.faq .faq-item h3 { color: #3b0000; font-size: 15.5px; font-weight: 600; }

/* === TESTIMONIALS === */
.testimonials { background: linear-gradient(135deg, #fff5f5, #ffe8e8); }

.testimonials .testimonial-item {
  border-radius: 18px !important;
  border: 1px solid rgba(26,86,219,0.1) !important;
  box-shadow: 0 4px 24px rgba(13,27,62,0.08) !important;
  background: #fff !important;
  transition: all 0.3s !important;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 36px rgba(26,86,219,0.15) !important;
}

.testimonials .stars i { color: #f59e0b !important; }

/* === TRUST BADGES === */
.trust-badges {
  background: linear-gradient(135deg, #3b0000, #7f0000) !important;
  border: none !important;
}

.trust-badge i { color: #ef5350 !important; font-size: 24px !important; }
.trust-badge span { color: rgba(255,255,255,0.85) !important; font-size: 12.5px !important; }

/* === CONTACT === */
.contact { background: #f8faff; }

.contact .info-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(26,86,219,0.1);
  box-shadow: 0 2px 16px rgba(13,27,62,0.06);
  transition: all 0.3s;
}

.contact .info-item:hover {
  border-color: #d32f2f;
  box-shadow: 0 8px 28px rgba(26,86,219,0.12);
  transform: translateY(-3px);
}

.contact .info-item i {
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === FOOTER === */
.footer {
  background: #3b0000 !important;
  color: rgba(255,255,255,0.75);
}

.footer .footer-newsletter {
  background: linear-gradient(135deg, #3b0000, #7f0000) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .footer-newsletter h4 { color: #fff; font-weight: 700; }
.footer .footer-newsletter p { color: rgba(255,255,255,0.65); }

.footer .newsletter-form input[type="email"] {
  border-radius: 8px 0 0 8px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

.footer .newsletter-form input[type="submit"] {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  border: none !important;
  border-radius: 0 8px 8px 0 !important;
  font-weight: 700 !important;
}

.footer .sitename {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff7043, #ef5350);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-contact p { color: rgba(255,255,255,0.65); }
.footer .footer-links h4 { color: #fff; font-weight: 700; }
.footer .footer-links a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer .footer-links a:hover { color: #ff7043; }
.footer h4 { color: #fff; }
.footer p { color: rgba(255,255,255,0.6); }

.footer .social-links a {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  transition: all 0.3s !important;
}

.footer .social-links a:hover {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  border-color: transparent !important;
  transform: translateY(-3px) !important;
}

.footer .copyright { border-top: 1px solid rgba(255,255,255,0.08); }
.footer .copyright p { color: rgba(255,255,255,0.45); }
.footer .credits a { color: rgba(255,255,255,0.35); }

/* === STICKY CTA === */
.sticky-cta {
  background: linear-gradient(90deg, #3b0000, #7f0000) !important;
  border-top: 1px solid rgba(26,86,219,0.3) !important;
}

/* === SCROLL TOP === */
.scroll-top {
  background: linear-gradient(135deg, #d32f2f, #ef5350) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 16px rgba(26,86,219,0.4) !important;
}

/* === SECTION ALTERNATING BG === */
.about { background: #fff; }
.values { background: #f8faff; }
.stats { background: linear-gradient(135deg, #3b0000, #7f0000); }
.features { background: #fff; }
.alt-features { background: #f8faff; }
.services { background: #fff; }
.pricing { background: #f8faff; }
.faq { background: #fff; }
.testimonials { background: linear-gradient(135deg, #fff5f5, #ffe8e8); }
.recent-posts { background: #fff; }
.contact { background: #f8faff; }

/* === SECTION WAVE DIVIDERS === */
.stats { position: relative; }
.stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 1080,0 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  z-index: 1;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f8faff' d='M0,30 C360,0 1080,60 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 1;
}

/* === NAVMENU ACTIVE LINK === */
.navmenu a.active {
  color: #d32f2f !important;
  font-weight: 700 !important;
}

/* === RECENT POSTS === */
.recent-posts .post-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,86,219,0.08);
  box-shadow: 0 2px 16px rgba(13,27,62,0.06);
  transition: all 0.3s;
  background: #fff;
}

.recent-posts .post-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,86,219,0.14);
  border-color: rgba(26,86,219,0.2);
}

.recent-posts .post-content h3 { color: #3b0000; font-weight: 700; }
.recent-posts .readmore { color: #d32f2f; font-weight: 600; }

/* === PAGE TITLE (blog) === */
.page-title .heading {
  background: linear-gradient(135deg, #3b0000, #7f0000) !important;
}

/*--------------------------------------------------------------
# PREMIUM DESIGN ENHANCEMENTS
--------------------------------------------------------------*/

/* === HERO FLOATING SHAPES === */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shapes span:nth-child(1) {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #d32f2f, transparent);
  top: -80px; right: 10%;
  animation-delay: 0s;
}
.hero-shapes span:nth-child(2) {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #ef5350, transparent);
  bottom: 20px; right: 25%;
  animation-delay: 2s;
}
.hero-shapes span:nth-child(3) {
  width: 150px; height: 150px;
  background: radial-gradient(circle, #e53935, transparent);
  top: 30%; left: 5%;
  animation-delay: 4s;
}
.hero-shapes span:nth-child(4) {
  width: 80px; height: 80px;
  background: radial-gradient(circle, #ef5350, transparent);
  top: 15%; right: 40%;
  animation-delay: 1s;
  opacity: 0.2;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.06); }
}

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

/* === GRADIENT TEXT HEADINGS === */
.gradient-text {
  background: linear-gradient(135deg, #d32f2f 0%, #ef5350 50%, #e53935 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2 {
  background: linear-gradient(135deg, #3b0000, #d32f2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === GLASSMORPHISM CARDS === */
.glass-card {
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  box-shadow: 0 8px 32px rgba(26,86,219,0.1), inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

.pricing .pricing-tem {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  box-shadow: 0 8px 32px rgba(26,86,219,0.1), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

.pricing { background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%); }

/* === BUTTON RIPPLE EFFECT === */
.btn-get-started,
.btn-read-more,
.btn-buy,
.sticky-btn-call,
.sticky-btn-wa,
.exit-btn-primary,
.exit-btn-wa {
  position: relative;
  overflow: hidden;
}

.btn-get-started::after,
.btn-read-more::after,
.btn-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.btn-get-started:hover::after,
.btn-read-more:hover::after,
.btn-buy:hover::after {
  opacity: 1;
}

/* === ICON PULSE ANIMATION === */
.service-item .icon,
.alt-features .icon-box i,
.trust-badge i {
  transition: transform 0.3s ease;
}

.service-item:hover .icon {
  animation: iconPulse 0.6s ease;
}

.alt-features .icon-box:hover i {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-5deg); }
  60% { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

/* === STATS COUNTER GLOW === */
.stats .stats-item span {
  text-shadow: none;
  transition: all 0.3s;
}

.stats .stats-item:hover span {
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* === FEATURE BOX SHINE === */
.features .feature-box {
  position: relative;
  overflow: hidden;
}

.features .feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.features .feature-box:hover::before {
  left: 130%;
}

/* === CARD TILT EFFECT (subtle) === */
.values .card,
.service-item,
.pricing .pricing-tem {
  transform-style: preserve-3d;
  will-change: transform;
}

/* === SECTION DIVIDERS === */
.about { position: relative; }
.about::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23f8faff' d='M0,35 C240,70 480,0 720,35 C960,70 1200,0 1440,35 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 2;
}

.features { position: relative; }
.features::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23f8faff' d='M0,0 C360,70 1080,0 1440,50 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 2;
}

.services { position: relative; }
.services::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23eef2ff' d='M0,50 C480,0 960,70 1440,20 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 2;
}

/* === TESTIMONIALS BACKGROUND PATTERN === */
.testimonials {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%) !important;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,86,219,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* === CONTACT INFO ITEMS === */
.contact .info-item {
  position: relative;
  overflow: hidden;
}

.contact .info-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d32f2f, #ef5350);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.contact .info-item:hover::before { opacity: 1; }

/* === SCROLL REVEAL FADE === */
[data-aos="fade-up"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* === HEADER SCROLL SHADOW === */
.header.scrolled {
  box-shadow: 0 4px 32px rgba(13,27,62,0.12) !important;
}

/* === PRICING POPULAR BADGE GLOW === */
.pricing .pricing-tem:has(.featured) {
  box-shadow: 0 8px 40px rgba(26,86,219,0.22) !important;
  border-color: rgba(26,86,219,0.3) !important;
}

/* === FOOTER GRADIENT LINE === */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #d32f2f, #ef5350, #e53935, #ef5350, #d32f2f);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* === WHATSAPP BUTTON PULSE === */
.whatsapp-btn {
  animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

.whatsapp-btn:hover { animation: none; }

/* Pricing btn-buy text white */
.pricing .btn-buy {
  color: #fff !important;
}
.pricing .btn-buy:hover {
  color: #fff !important;
}

/* Footer links - açık renk */
.footer .footer-links a,
.footer .footer-links ul li a {
  color: rgba(255,255,255,0.75) !important;
}

.footer .footer-links a:hover,
.footer .footer-links ul li a:hover {
  color: #ffffff !important;
}

.footer .footer-links .bi-chevron-right {
  color: rgba(255,255,255,0.5) !important;
}

/* Services - hover'da renk değişmesin */
.services .service-item.item-cyan:hover,
.services .service-item.item-orange:hover,
.services .service-item.item-teal:hover,
.services .service-item.item-red:hover,
.services .service-item.item-indigo:hover,
.services .service-item.item-pink:hover {
  background-color: var(--surface-color) !important;
}

/* Services - hover'da yazı renkleri değişmesin */
.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more,
.services .service-item:hover .read-more span,
.services .service-item:hover .read-more i {
  color: inherit !important;
}

.services .service-item h3 { color: #3b0000 !important; }
.services .service-item p { color: #64748b !important; }
.services .service-item:hover h3 { color: #3b0000 !important; }
.services .service-item:hover p { color: #64748b !important; }

/* Trust Badges ve Stats arası ayırıcı */
.trust-badges {
  border-bottom: 3px solid transparent !important;
  background-image: linear-gradient(135deg, #3b0000, #7f0000),
    linear-gradient(90deg, #d32f2f, #ef5350, #e53935) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  margin-bottom: 0;
}

.stats.section {
  border-top: 4px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, #d32f2f, #ef5350, #e53935);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding-top: 60px !important;
}

/* Section Divider */
.section-divider {
  line-height: 0;
  overflow: hidden;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 32px;
}

/* Trust Badges ve Stats arası temizle */
.trust-badges {
  margin-bottom: 0 !important;
  padding-bottom: 24px !important;
  border-bottom: none !important;
  background-image: none !important;
}

.stats.section {
  border-top: none !important;
  background-image: none !important;
  padding-top: 60px !important;
}

/* Trust Badges - koyu arka plan, koyu yazı */
.trust-badges {
  background: #fff5f5 !important;
  border-top: 1px solid rgba(26,86,219,0.1) !important;
  border-bottom: none !important;
}

.trust-badge i {
  color: #d32f2f !important;
}

.trust-badge span {
  color: #3b0000 !important;
  font-weight: 600 !important;
}

/* Section divider - Nisan kampanyası gibi kayan gradient */
.section-divider svg rect {
  display: none;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #3b0000, #d32f2f, #ef5350, #e53935, #ef5350, #d32f2f, #3b0000);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  overflow: visible;
}

.section-divider svg {
  display: none;
}

/*--------------------------------------------------------------
# Digital Solutions Section
--------------------------------------------------------------*/
.digital-solutions {
  background: linear-gradient(135deg, #3b0000 0%, #7f0000 100%);
  position: relative;
  overflow: hidden;
}

.digital-solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.digital-solutions .section-title h2 {
  background: linear-gradient(135deg, #ff7043, #ef5350, #a78bfa) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.digital-solutions .section-title p {
  color: rgba(255,255,255,0.65) !important;
}

.ds-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ds-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d32f2f, #ef5350, #e53935);
  opacity: 0;
  transition: opacity 0.3s;
}

.ds-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.ds-card:hover::before { opacity: 1; }

.ds-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.ds-card:hover .ds-icon { transform: scale(1.1) rotate(-5deg); }

.ds-icon i {
  font-size: 24px;
  color: #fff;
}

.ds-card h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ds-card p {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ds-link {
  color: #ff7043;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}

.ds-link:hover {
  color: #ef5350;
  gap: 10px;
}

/* DECE GLOBAL badge */
.dece-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}

/* About bölümü resim çerçevesi - yuvarlak köşe */
.about .img-frame {
  border-radius: 28px !important;
}

/*--------------------------------------------------------------
# Datacenter Animation (Hero)
--------------------------------------------------------------*/
.datacenter-anim {
  position: relative;
  background: linear-gradient(160deg, #1a0000 0%, #2d0000 60%, #1a0000 100%);
  border-radius: 24px;
  padding: 28px 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(13,27,62,0.5), 0 0 0 1px rgba(26,86,219,0.2);
  overflow: visible;
  min-height: 340px;
  align-items: center;
}

.datacenter-anim::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 38px,
    rgba(26,86,219,0.06) 38px,
    rgba(26,86,219,0.06) 39px
  );
  pointer-events: none;
}

/* Rack */
.dc-rack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 8px;
  flex: 1;
  max-width: 120px;
}

/* Server unit */
.dc-unit {
  background: #1a0000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.dc-unit.active {
  border-color: rgba(26,86,219,0.4);
  background: #2a0505;
}

/* LEDs */
.dc-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  animation: ledBlink 2s var(--d, 0s) ease-in-out infinite;
}

.dc-led.g {
  background: #22c55e;
  animation: ledGreen 1.8s var(--d, 0s) ease-in-out infinite;
}

@keyframes ledBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 4px #ff4444; }
  50% { opacity: 0.3; box-shadow: none; }
}

@keyframes ledGreen {
  0%,100% { opacity: 1; box-shadow: 0 0 5px #22c55e; }
  50% { opacity: 0.6; box-shadow: 0 0 2px #22c55e; }
}

/* Activity bar */
.dc-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.dc-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #d32f2f, #ef5350, transparent);
  animation: barScan 2s var(--d, 0s) linear infinite;
  border-radius: 2px;
}

.dc-unit.active .dc-bar::after {
  background: linear-gradient(90deg, transparent, #22c55e, #ef5350, transparent);
  animation-duration: 1.2s;
}

@keyframes barScan {
  0% { left: -60%; }
  100% { left: 110%; }
}

/* Floating badges */
.dc-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: #3b0000;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 2;
}

.dc-badge i { color: #d32f2f; font-size: 13px; }

@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .datacenter-anim { min-height: 220px; padding: 16px 10px; gap: 6px; }
  .dc-badge { font-size: 10px; padding: 4px 8px; }
  .dc-rack { max-width: 80px; }
}

/* About section - Türkçe karakter düzeltmesi */
.about .content h3 {
  -webkit-text-fill-color: #d32f2f !important;
  background: none !important;
  color: #d32f2f !important;
}

.about .content h4 {
  -webkit-text-fill-color: #3b0000 !important;
  background: none !important;
  color: #3b0000 !important;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.about .content h4 span {
  -webkit-text-fill-color: #3b0000 !important;
  color: #3b0000 !important;
}

.about .content p {
  -webkit-text-fill-color: #3d4a5c !important;
  color: #3d4a5c !important;
}

/* Contact info items - eşit boyut */
.contact .info-item {
  height: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .row.gy-4 > [class*="col"] {
  display: flex;
}

.contact .row.gy-4 > [class*="col"] .info-item {
  width: 100%;
}

/* Blog page-title yazı renkleri - beyaz */
.page-title .heading h1,
.page-title .heading p,
.page-title .breadcrumbs ol li,
.page-title .breadcrumbs ol li a,
.page-title .breadcrumbs ol li.current {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.page-title .breadcrumbs ol li a:hover {
  color: rgba(255,255,255,0.8) !important;
}

/* Hero - Bize Ulaşın butonu genişlet */
.hero .btn-watch-video {
  padding: 13px 28px !important;
  min-width: 160px;
}

/* SVG Logo */
.header .logo img {
  height: 72px;
  width: auto;
}

.header .logo .sitename {
  display: none;
}

/* FAQ Badge Icons */
.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.faq-badge i {
  font-size: 13px;
  color: #fff;
}

.faq-badge-blue   { background: linear-gradient(135deg, #d32f2f, #ef5350); }
.faq-badge-teal   { background: linear-gradient(135deg, #c62828, #ef5350); }
.faq-badge-green  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.faq-badge-orange { background: linear-gradient(135deg, #ea580c, #f97316); }

.faq .faq-item h3 {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Cookie Consent Banner
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3b0000;
  border-top: 3px solid #d32f2f;
  z-index: 99999;
  padding: 16px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cookie-text i {
  font-size: 22px;
  color: #ef5350;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text p {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}

.cookie-text strong { color: #fff; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.9; }

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 576px) {
  .cookie-content { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* Logo ERP Kampanya Bandı */
.logo-campaign-bar {
  position: fixed;
  top: 42px; /* announcement bar yüksekliği */
  left: 0;
  right: 0;
  z-index: 9997;
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 40%, #ef4444 70%, #dc2626 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  color: #fff;
  font-size: 13.5px;
  padding: 8px 16px;
  text-align: center;
  transition: top 0.3s ease;
}

.logo-campaign-bar strong { color: #fff; }

.logo-camp-btn {
  background: #fff;
  color: #dc2626;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.logo-camp-btn:hover { background: #fee2e2; color: #dc2626; }

/* Header iki bant varken aşağı it */

@media (max-width: 768px) {
  .logo-campaign-bar { top: 56px; font-size: 12px; }
}

/* === Announcement + Logo Campaign Bar Düzeltme === */
.announcement-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 9999 !important;
}

.logo-campaign-bar {
  position: fixed !important;
  top: 40px !important;
  left: 0;
  right: 0;
  z-index: 9998 !important;
}

.header {
  top: 80px !important;
}

@media (max-width: 768px) {
}

/* Logo kampanya bandı yüksekliği mavi ile aynı */
.logo-campaign-bar {
  padding: 9px 16px !important;
  font-size: 13.5px !important;
}

/* Kırmızı bant - mavi ile aynı yükseklik */
.logo-campaign-bar {
  height: 38px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13.5px !important;
  line-height: 1 !important;
}

.announcement-bar {
  height: 38px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo-campaign-bar .container,
.announcement-bar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 768px) {
}

/* === Menü altı bant sıralaması: Header → Nisan → Kırmızı === */
.header {
  top: 0 !important;
  z-index: 10000 !important;
}

.announcement-bar {
  position: fixed !important;
  top: 72px !important;
  z-index: 9998 !important;
  height: 38px !important;
}

.logo-campaign-bar {
  position: fixed !important;
  top: 110px !important;
  z-index: 9997 !important;
  height: 38px !important;
}

/* Hero ve main içerik iki bandın altından başlasın */
.hero, body.index-page .main > section:first-child {
  padding-top: 76px !important;
}

@media (max-width: 768px) {
}

/* === FINAL SIRALAMA: Kırmızı → Menü → Mavi === */
.logo-campaign-bar {
  position: fixed !important;
  top: 0 !important;
  z-index: 10001 !important;
  height: 38px !important;
}

.header {
  top: 38px !important;
  z-index: 10000 !important;
}

.announcement-bar {
  position: fixed !important;
  top: 110px !important; /* 38px kırmızı + 72px header */
  z-index: 9998 !important;
  height: 38px !important;
}

@media (max-width: 768px) {
}

/* ============================================
   FINAL BAND SIRALAMA - TÜM ÖNCEKİLERİ EZER
   Kırmızı (top:0) → Menü (top:38px) → Mavi (top:110px)
   ============================================ */
.logo-campaign-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 38px !important;
  z-index: 10002 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
}

#header, .header {
  position: fixed !important;
  top: 38px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10001 !important;
}

#announcementBar, .announcement-bar {
  position: fixed !important;
  top: 110px !important;
  left: 0 !important;
  right: 0 !important;
  height: 38px !important;
  z-index: 10000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
}

@media (max-width: 768px) {
}

/* Nisan bandı header altına tam otur */
#announcementBar, .announcement-bar {
  top: 152px !important; /* 38px kırmızı + ~114px header */
}

@media (max-width: 768px) {
}

/* ============================================
   KESIN FINAL: Kırmızı → Mavi → Menü
   İkisi de static, menü altlarından başlar
   ============================================ */
.logo-campaign-bar {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  height: 38px !important;
}

#announcementBar, .announcement-bar {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  height: 38px !important;
}

#header, .header {
  position: fixed !important;
  top: 0 !important;
  z-index: 10001 !important;
}

/* ============================================
   SIFIRDAN TEMIZ BAND KURALLARI
   ============================================ */
#logoCampaignBar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 38px !important;
  z-index: 10003 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  background: linear-gradient(90deg, #b91c1c, #dc2626, #ef4444, #dc2626, #b91c1c) !important;
  background-size: 200% 100% !important;
  animation: gradientShift 4s linear infinite !important;
  color: #fff !important;
  font-size: 13.5px !important;
}

#announcementBar {
  position: fixed !important;
  top: 38px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 38px !important;
  z-index: 10002 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  background: linear-gradient(90deg, #3b0000, #d32f2f, #ef5350) !important;
  color: #fff !important;
  font-size: 13.5px !important;
}

#header {
  position: fixed !important;
  top: 76px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10001 !important;
}

/* Logo boyutu */
.header .logo img {
  height: 80px !important;
  width: auto !important;
}

/*--------------------------------------------------------------
# Modern Trust Badges
--------------------------------------------------------------*/
.trust-badges-modern {
  background: linear-gradient(135deg, #3b0000 0%, #7f0000 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.trust-badges-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.trust-badge-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: default;
}

.trust-badge-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.trust-badge-card:hover .tbm-glow {
  opacity: 1;
}

.tbm-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 40px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(12px);
}

.trust-badge-card.partner .tbm-glow { background: #d32f2f; }
.trust-badge-card.cert .tbm-glow { background: #22c55e; }
.trust-badge-card.support .tbm-glow { background: #ef5350; }

.tbm-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.trust-badge-card.partner .tbm-icon {
  background: linear-gradient(135deg, rgba(26,86,219,0.3), rgba(14,165,233,0.3));
  color: #ff7043;
}

.trust-badge-card.cert .tbm-icon {
  background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(16,185,129,0.3));
  color: #4ade80;
}

.trust-badge-card.support .tbm-icon {
  background: linear-gradient(135deg, rgba(14,165,233,0.3), rgba(99,102,241,0.3));
  color: #38bdf8;
}

.tbm-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  line-height: 1;
}

.tbm-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  display: block;
}

@media (max-width: 992px) {
  .trust-badges-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-badge-card { padding: 16px 10px; }
  .tbm-icon { width: 40px; height: 40px; font-size: 18px; }
  .tbm-title { font-size: 12.5px; }
}

/*--------------------------------------------------------------
# Markalarımız / Brands Section
--------------------------------------------------------------*/
.brands-section {
  background: #f8faff;
  padding: 60px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(26,86,219,0.1);
  border-radius: 16px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d32f2f, #ef5350);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 4px 0 0 4px;
}

.brand-card:hover {
  border-color: rgba(26,86,219,0.3);
  box-shadow: 0 8px 32px rgba(26,86,219,0.12);
  transform: translateY(-4px);
  text-decoration: none;
}

.brand-card:hover::before { opacity: 1; }

.brand-card-active {
  border-color: rgba(26,86,219,0.25) !important;
  background: linear-gradient(135deg, #fff5f5, #ffe8e8) !important;
}

.brand-card-active::before { opacity: 1 !important; }

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,86,219,0.1), rgba(14,165,233,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon i {
  font-size: 20px;
  background: linear-gradient(135deg, #d32f2f, #ef5350);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-info strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #3b0000;
  line-height: 1.3;
}

.brand-info span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.brand-arrow {
  font-size: 16px;
  color: #cbd5e1;
  transition: all 0.3s;
  flex-shrink: 0;
}

.brand-card:hover .brand-arrow {
  color: #d32f2f;
  transform: translate(2px, -2px);
}

@media (max-width: 992px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .brands-grid { grid-template-columns: 1fr; }
}


/*--------------------------------------------------------------
# LOGO KIRMIZI TEMA - OVERRIDE
--------------------------------------------------------------*/

/* Ana renk değişkenleri kırmızı */
:root {
  --accent-color: #d32f2f !important;
  --accent-secondary: #ff5252 !important;
  --nav-hover-color: #d32f2f !important;
  --nav-dropdown-hover-color: #d32f2f !important;
}

/* Announcement & Kampanya barları */
.announcement-bar {
  background: linear-gradient(90deg, #7f0000 0%, #d32f2f 50%, #ff5252 100%) !important;
}

.logo-campaign-bar {
  background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 100%) !important;
}

/* Hero shapes kırmızı */
.hero-shapes span:nth-child(1) { background: radial-gradient(circle, #d32f2f, transparent) !important; }
.hero-shapes span:nth-child(2) { background: radial-gradient(circle, #ff5252, transparent) !important; }
.hero-shapes span:nth-child(3) { background: radial-gradient(circle, #b71c1c, transparent) !important; }
.hero-shapes span:nth-child(4) { background: radial-gradient(circle, #ff5252, transparent) !important; }

/* Hero arka plan */
.hero {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 50%, #fff0f0 100%) !important;
}

/* Gradient text kırmızı */
.gradient-text {
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 50%, #ff5252 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.section-title h2 {
  background: linear-gradient(135deg, #7f0000, #d32f2f) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Pricing arka plan */
.pricing { background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%) !important; }

/* Glassmorphism kırmızı gölge */
.glass-card {
  box-shadow: 0 8px 32px rgba(211,47,47,0.1), inset 0 1px 0 rgba(255,255,255,0.8) !important;
}
.pricing .pricing-tem {
  box-shadow: 0 8px 32px rgba(211,47,47,0.1), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

/* Butonlar */
.btn-get-started,
.hero .btn-get-started {
  color: #fff !important;
  background: #d32f2f !important;
}
.btn-get-started:hover { color: #fff !important; background: #b71c1c !important; }

.btn-read-more,
.about .content .btn-read-more { background: #d32f2f !important; }

.btn-buy { color: #d32f2f !important; border-color: #d32f2f !important; }
.btn-buy:hover { background: #d32f2f !important; color: #fff !important; }

/* Scroll top */
.scroll-top { background-color: #d32f2f !important; }
.scroll-top:hover { background-color: #b71c1c !important; }

/* FAQ badges kırmızı tonları */
.faq-badge-blue   { background: linear-gradient(135deg, #d32f2f, #ff5252) !important; }
.faq-badge-teal   { background: linear-gradient(135deg, #b71c1c, #d32f2f) !important; }
.faq-badge-green  { background: linear-gradient(135deg, #7f0000, #b71c1c) !important; }
.faq-badge-orange { background: linear-gradient(135deg, #c62828, #e53935) !important; }

/* Trust badges */
.trust-badge-card.partner .tbm-icon { background: linear-gradient(135deg, #d32f2f, #ff5252) !important; }
.trust-badge-card.cert .tbm-icon    { background: linear-gradient(135deg, #b71c1c, #d32f2f) !important; }
.trust-badge-card.support .tbm-icon { background: linear-gradient(135deg, #7f0000, #b71c1c) !important; }

/* Section divider kırmızı */
.section-divider svg stop:first-child { stop-color: #b71c1c !important; }
.section-divider svg stop:last-child  { stop-color: #ff5252 !important; }

/* Datacenter active unit kırmızı */
.dc-unit.active {
  border-color: rgba(211,47,47,0.5) !important;
  background: #2a0a0a !important;
}

/* DS cards (dijital çözümler) */
.digital-solutions { background: linear-gradient(135deg, #1a0505 0%, #2d0a0a 100%) !important; }
.ds-icon { background: linear-gradient(135deg, #d32f2f, #ff5252) !important; }

/* Features hover */
.features .feature-box:hover i { background: #d32f2f !important; }

/* Alt features icons */
.alt-features .icon-box i { color: #d32f2f !important; }

/* Services item colors - kırmızı tonları */
.services .service-item.item-red { border-bottom-color: #d32f2f !important; }
.services .service-item.item-red .icon { color: #d32f2f !important; background: rgba(211,47,47,0.1) !important; }
.services .service-item.item-red .read-more { color: #d32f2f !important; }
.services .service-item.item-red:hover { background: #d32f2f !important; }

.services .service-item.item-orange { border-bottom-color: #c62828 !important; }
.services .service-item.item-orange .icon { color: #c62828 !important; background: rgba(198,40,40,0.1) !important; }
.services .service-item.item-orange .read-more { color: #c62828 !important; }
.services .service-item.item-orange:hover { background: #c62828 !important; }

/* Footer */
.footer .social-links a { color: #d32f2f !important; border-color: rgba(211,47,47,0.3) !important; }
.footer .social-links a:hover { background-color: #d32f2f !important; color: #fff !important; }
.footer .footer-links ul i { color: #d32f2f !important; }
.footer .footer-links ul a:hover { color: #d32f2f !important; }

/* Pricing featured badge */
.pricing .featured { background: #d32f2f !important; }

/* Stats icons */
.stats .stats-item i { color: #d32f2f !important; }

/* Contact info icons */
.contact .info-item i { color: #d32f2f !important; }

/* Testimonials stars */
.testimonials .stars i { color: #d32f2f !important; }

/* Nav active */
.navmenu .active, .navmenu .active:focus { color: #d32f2f !important; }
.navmenu li:hover > a { color: #d32f2f !important; }

/* Header logo sitename */
.header .logo h1 { color: #d32f2f !important; }
.sitename { color: #d32f2f !important; }

/* About content background */
.about .content { background-color: rgba(211,47,47,0.05) !important; }
.about .content h3 { color: #d32f2f !important; }

/* Brand card active */
.brand-card-active { border-color: #d32f2f !important; }
.brand-card:hover { border-color: #d32f2f !important; }
.brand-card .brand-icon { background: linear-gradient(135deg, #d32f2f, #ff5252) !important; }


/* Nisan kampanya bandı buton rengi kırmızı temaya uygun */
.ann-btn { color: #d32f2f !important; }
.ann-btn:hover { background: #ffe8e8 !important; color: #b71c1c !important; }





/*--------------------------------------------------------------
# Logo Hero Visual - ERP Orbit Animasyonu
--------------------------------------------------------------*/
.logo-hero-visual {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Merkez alan */
.lhv-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Logo ikonu yuvarlak */
.lhv-logo-ring {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lhv-logo-svg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 32px rgba(211,47,47,0.35), 0 2px 8px rgba(0,0,0,0.1);
  animation: lhvFloat 3.5s ease-in-out infinite;
  object-fit: contain;
  overflow: hidden;
  box-sizing: border-box;
}

@keyframes lhvFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Pulse halkalar */
.lhv-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(211,47,47,0.35);
  animation: lhvPulse 2.4s ease-out infinite;
}

@keyframes lhvPulse {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* Marka adı */
.lhv-brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lhv-brand-logo {
  font-size: 28px;
  font-weight: 800;
  color: #d32f2f;
  font-family: var(--heading-font);
  letter-spacing: -0.5px;
  line-height: 1;
}

.lhv-brand-sub {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Yörünge */
.lhv-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Her modül kartı yörüngede konumlanır */
.lhv-module {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  background: #fff;
  border: 1.5px solid rgba(211,47,47,0.18);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(211,47,47,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: rotate(var(--ang)) translateX(175px) rotate(calc(-1 * var(--ang)));
  animation: lhvOrbit 18s linear infinite;
  animation-delay: var(--delay);
  transition: box-shadow 0.3s;
}

.lhv-module i {
  font-size: 20px;
  color: #d32f2f;
  line-height: 1;
}

.lhv-module span {
  font-size: 9.5px;
  font-weight: 700;
  color: #3b0000;
  text-align: center;
  line-height: 1.2;
}

@keyframes lhvOrbit {
  from { transform: rotate(var(--ang)) translateX(175px) rotate(calc(-1 * var(--ang))); }
  to   { transform: rotate(calc(var(--ang) + 360deg)) translateX(175px) rotate(calc(-1 * (var(--ang) + 360deg))); }
}

/* Floating badge'ler */
.lhv-badge {
  position: absolute;
  background: #fff;
  border: 1.5px solid rgba(211,47,47,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #3b0000;
  box-shadow: 0 4px 16px rgba(211,47,47,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 4;
  animation: lhvBadgeFloat 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.lhv-badge i { color: #d32f2f; font-size: 13px; }

@keyframes lhvBadgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* Arka plan ışıma */
.logo-hero-visual::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,47,47,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Yörünge çizgisi */
.logo-hero-visual::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px dashed rgba(211,47,47,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .logo-hero-visual { min-height: 300px; }
  .lhv-module { width: 58px; height: 58px; margin: -29px 0 0 -29px; transform: rotate(var(--ang)) translateX(110px) rotate(calc(-1 * var(--ang))); }
  @keyframes lhvOrbit {
    from { transform: rotate(var(--ang)) translateX(110px) rotate(calc(-1 * var(--ang))); }
    to   { transform: rotate(calc(var(--ang) + 360deg)) translateX(110px) rotate(calc(-1 * (var(--ang) + 360deg))); }
  }
  .lhv-badge { font-size: 10px; padding: 5px 10px; }
  .logo-hero-visual::after { width: 220px; height: 220px; }
  .logo-hero-visual::before { width: 240px; height: 240px; }
}


/*--------------------------------------------------------------
# WhatsApp Widget
--------------------------------------------------------------*/
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Tetikleyici buton */
.wa-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  position: relative;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, background 0.2s;
}
.wa-trigger:hover { background: #1ebe5d; transform: scale(1.08); animation: none; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* İkon geçişi */
.wa-icon-close { display: none; }
.wa-trigger--open .wa-icon-open  { display: none; }
.wa-trigger--open .wa-icon-close { display: block; }
.wa-trigger--open { animation: none; background: #555; }
.wa-trigger--open:hover { background: #333; }

/* Bildirim rozeti */
.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d32f2f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Sohbet penceresi */
.wa-chat {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: bottom right;
}
.wa-chat--open {
  display: flex;
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Header */
.wa-chat-header {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-chat-avatar { flex-shrink: 0; }
.wa-chat-info { flex: 1; }
.wa-chat-info strong { display: block; color: #fff; font-size: 14px; font-weight: 700; }
.wa-chat-info span   { color: rgba(255,255,255,0.75); font-size: 11.5px; }
.wa-chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s;
}
.wa-chat-close:hover { color: #fff; }

/* Mesaj alanı */
.wa-chat-body {
  background: #ece5dd url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 16px;
  min-height: 100px;
}
.wa-chat-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  max-width: 85%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}
.wa-chat-bubble p { margin: 0 0 4px; font-size: 13.5px; color: #333; line-height: 1.5; }
.wa-chat-bubble p:last-of-type { margin-bottom: 6px; }
.wa-time { font-size: 10.5px; color: #999; float: right; margin-top: 2px; }

/* Başlat butonu */
.wa-chat-start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-chat-start:hover { background: #1ebe5d; color: #fff; }

@media (max-width: 480px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-chat { width: calc(100vw - 32px); }
}



/* Nisan bandı header içinde, relative */
.header .announcement-bar {
  position: relative !important;
  top: auto !important;
  width: 100%;
  background: linear-gradient(90deg, #7f0000 0%, #d32f2f 50%, #ff5252 100%) !important;
  padding: 7px 16px !important;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  height: auto !important;
}

/* Logo kampanya bandı hâlâ en üstte sabit */
.logo-campaign-bar {
  position: fixed !important;
  top: 0 !important;
  z-index: 9999;
}

/* Header logo kampanya bandının altında başlar */
#header, .header {
  top: 38px !important;
}

@media (max-width: 768px) {
}



/*--------------------------------------------------------------
# Header / Bar Pozisyon - TEMİZ TANIMLAR
--------------------------------------------------------------*/

/* 1) Kırmızı kampanya bandı - en üstte sabit */
.logo-campaign-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 38px;
}

/* 2) Header - kampanya bandının hemen altında */
#header, .header {
  position: fixed !important;
  top: 38px !important;
  left: 0;
  right: 0;
  z-index: 997;
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 0 !important;
}

/* 3) Nav satırı */
.header-nav {
  padding: 10px 0;
  width: 100%;
  background: var(--background-color);
}

/* 4) Nisan bandı - header içinde, nav'ın altında, relative */
.header .announcement-bar,
#announcementBar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100%;
  background: linear-gradient(90deg, #7f0000 0%, #d32f2f 50%, #ff5252 100%) !important;
  padding: 7px 16px !important;
  height: auto !important;
  font-size: 13px;
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  z-index: auto !important;
}

/* 5) Sayfa içeriği header yüksekliği kadar aşağıda başlar
   38px (kırmızı bant) + ~62px (nav) + ~36px (nisan bandı) = ~136px */
.index-page .hero {
  padding-top: 136px !important;
}

@media (max-width: 768px) {
  .logo-campaign-bar { height: auto; min-height: 38px; }
  #header, .header   { top: 38px !important; }
  .index-page .hero  { padding-top: 160px !important; }
}


/*--------------------------------------------------------------
# Logo İş Ortağım - Header Logo
--------------------------------------------------------------*/
.logo-main-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: #ddd;
  flex-shrink: 0;
}

.logo-ortagi {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-ortagi-title {
  font-size: 12px;
  font-weight: 800;
  color: #d32f2f;
  letter-spacing: 0.8px;
  font-family: var(--heading-font);
}

.logo-ortagi-sub {
  font-size: 10px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.3px;
}


/*--------------------------------------------------------------
# Footer - Kırmızı Tema
--------------------------------------------------------------*/
.footer {
  background-color: #1a0000 !important;
  color: rgba(255,255,255,0.8) !important;
}

.footer .footer-top {
  background-color: #1a0000;
}

.footer h4 {
  color: #fff !important;
}

.footer p,
.footer .footer-contact p {
  color: rgba(255,255,255,0.7) !important;
}

.footer .footer-contact a,
.footer .footer-links ul a {
  color: rgba(255,255,255,0.7) !important;
}

.footer .footer-links ul a:hover,
.footer .footer-contact a:hover {
  color: #ff5252 !important;
}

.footer .footer-links ul i {
  color: #ff5252 !important;
}

.footer .social-links a {
  background-color: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.8) !important;
}

.footer .social-links a:hover {
  background-color: #d32f2f !important;
  color: #fff !important;
}

.footer .copyright {
  border-top-color: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.5) !important;
}

.footer .copyright p,
.footer .credits {
  color: rgba(255,255,255,0.5) !important;
}

.footer .logo-ortagi-title { color: #ff5252 !important; }
.footer .logo-ortagi-sub   { color: rgba(255,255,255,0.5) !important; }
.footer .logo-divider      { background: rgba(255,255,255,0.2) !important; }


.logo-partner-img {
  height: 10px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.logo-partner-label {
  font-size: 9px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
  margin-top: 2px;
}

.footer .logo-partner-label { color: #ff5252 !important; }


/* Footer - Siyah */
.footer {
  background-color: #0a0a0a !important;
}
.footer .footer-top,
.footer .footer-newsletter {
  background-color: #0a0a0a !important;
}


/* Trust Badges - Gri arka plan */
.trust-badges-modern {
  background-color: #f5f5f5 !important;
}


/* Trust Badge kartları - border kaldır */
.trust-badge-card {
  border: none !important;
  box-shadow: none !important;
}


/* Logo ERP Ürünleri - hover rengi kaldır */
#urunler .service-item:hover,
#urunler .service-item.item-red:hover,
#urunler .service-item.item-orange:hover {
  background: var(--surface-color) !important;
}

#urunler .service-item:hover h3,
#urunler .service-item:hover p,
#urunler .service-item:hover .read-more {
  color: inherit !important;
}

#urunler .service-item:hover .icon {
  background: inherit !important;
}


/* Trust Badge ikonları - gri arka plan */
.trust-badge-card.partner .tbm-icon,
.trust-badge-card.cert .tbm-icon,
.trust-badge-card.support .tbm-icon {
  background: #6b7280 !important;
}


/* Trust Badge şerit (glow) - gri */
.trust-badge-card.partner .tbm-glow,
.trust-badge-card.cert .tbm-glow,
.trust-badge-card.support .tbm-glow {
  background: #9ca3af !important;
}


.trust-badges-modern::before {
  background: #f5f5f5 !important;
}


/* Trust Badge kartları - çerçeve ve renk */
.trust-badge-card {
  background: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.trust-badge-card:hover {
  border-color: #d32f2f !important;
  box-shadow: 0 4px 20px rgba(211,47,47,0.15) !important;
}

.tbm-label {
  color: #6b7280 !important;
}

.tbm-title {
  color: #1a0a0a !important;
}


/* Trust Badge ikonları - gri arka plan kaldır */
.trust-badge-card.partner .tbm-icon,
.trust-badge-card.cert .tbm-icon,
.trust-badge-card.support .tbm-icon {
  background: transparent !important;
  color: #d32f2f !important;
}


.logo-partner-label { font-size: 8px !important; letter-spacing: 0.5px !important; }


/* Blog sayfaları - kampanya bandı + sticky header için padding */
.blog-details-page {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .blog-details-page {
    padding-top: 120px;
  }
}


/* Mobil menü - z-index ve konum düzeltme */
@media (max-width: 1199px) {
  .navmenu ul {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 9998 !important;
    overflow-y: auto !important;
    padding-top: 60px !important;
  }

  .mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9997 !important;
  }
}









/* FAQ Accordion */
.faq .faq-container .faq-item .faq-content { display: none; }
.faq .faq-container .faq-active .faq-content { display: block; padding-top: 8px; }
.faq .faq-container .faq-active .faq-toggle { transform: rotate(90deg); color: #d32f2f; }
.faq .faq-container .faq-active h3 { color: #d32f2f; }


/*--------------------------------------------------------------
# RaporX Mobil Bölümü
--------------------------------------------------------------*/
.raporx-section {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 60%, #fff5f5 100%);
  padding: 80px 0;
}

/* Badge */
.raporx-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f, #ff5252);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Intro */
.raporx-intro h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a0a0a;
  margin-bottom: 14px;
  line-height: 1.3;
}
.raporx-intro p { color: #555; line-height: 1.8; margin-bottom: 12px; }

.raporx-features-list { margin: 20px 0; }
.raporx-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.raporx-feat i { color: #d32f2f; font-size: 16px; flex-shrink: 0; }

/* Butonlar */
.raporx-store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.raporx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d32f2f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.raporx-btn-primary:hover { background: #b71c1c; color: #fff; }
.raporx-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #d32f2f;
  border: 2px solid #d32f2f;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.raporx-btn-secondary:hover { background: #d32f2f; color: #fff; }

/* Telefon çerçevesi */
.raporx-phone-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.raporx-phone-frame {
  width: 260px;
  height: 530px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  position: relative;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.raporx-phone-frame .raporx-phone-notch,
.raporx-phone-frame .raporx-phone-home { display: none; }

.raporx-phone-notch {
  width: 80px;
  height: 22px;
  background: #1a0a0a;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.raporx-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}

.raporx-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.raporx-phone-home {
  width: 100px;
  height: 4px;
  background: #444;
  border-radius: 4px;
  position: absolute;
  bottom: 8px;
}

.raporx-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211,47,47,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Büyük telefon (modal) */
.raporx-phone-large {
  width: 300px;
  height: 610px;
}

/* Ekran grid */
.raporx-screens-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1199px) { .raporx-screens-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .raporx-screens-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .raporx-screens-grid { grid-template-columns: repeat(2, 1fr); } }

.raporx-screen-card {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
}
.raporx-screen-card:hover { transform: translateY(-4px); }

.raporx-screen-phone {
  width: 100%;
  aspect-ratio: 9/19;
  background: #1a0a0a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: 2px solid #333;
}
.raporx-screen-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.raporx-screen-card p {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-top: 6px;
  margin-bottom: 0;
}

/* Modal */
.raporx-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.raporx-modal.open { display: flex; }
.raporx-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 20px;
}
.raporx-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d32f2f;
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.raporx-modal-desc {
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 320px;
  margin: 0;
}

.raporx-screens-title h4 { font-size: 1.1rem; font-weight: 700; color: #1a0a0a; }


/* RaporX Modal ok butonları */
.raporx-modal-content {
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  justify-content: center;
}

.raporx-modal-phones-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.raporx-modal-nav {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.raporx-modal-nav:hover { background: #d32f2f; border-color: #d32f2f; }

.raporx-modal-desc {
  width: 100%;
  text-align: center;
  margin-top: 16px !important;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 14px;
}

@media (max-width: 576px) {
  .raporx-modal-nav { width: 38px; height: 38px; font-size: 24px; }
  .raporx-phone-large { width: 220px !important; height: 450px !important; }
}


/* RaporX - 2 eğik telefon */
.raporx-phone-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raporx-phone-front,
.raporx-phone-back {
  position: absolute;
  width: 220px;
  height: 450px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.raporx-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.raporx-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.raporx-phone-notch {
  display: none;
}

.raporx-phone-home {
  display: none;
}

/* Ön telefon - sola eğik, öne çıkmış */
.raporx-phone-front {
  transform: rotate(-8deg) translateX(-60px) translateY(10px);
  z-index: 2;
  filter: drop-shadow(-20px 30px 40px rgba(0,0,0,0.5));
  animation: raporxFloatFront 4s ease-in-out infinite;
}

/* Arka telefon - sağa eğik, geride */
.raporx-phone-back {
  transform: rotate(8deg) translateX(60px) translateY(-10px);
  z-index: 1;
  filter: drop-shadow(20px 30px 40px rgba(0,0,0,0.4));
  animation: raporxFloatBack 4s ease-in-out infinite;
  animation-delay: 0.5s;
  opacity: 0.9;
}

@keyframes raporxFloatFront {
  0%, 100% { transform: rotate(-8deg) translateX(-60px) translateY(10px); }
  50%       { transform: rotate(-8deg) translateX(-60px) translateY(-10px); }
}

@keyframes raporxFloatBack {
  0%, 100% { transform: rotate(8deg) translateX(60px) translateY(-10px); }
  50%       { transform: rotate(8deg) translateX(60px) translateY(10px); }
}

/* Modal büyük telefon */
.raporx-phone-large {
  width: 280px !important;
  height: 572px !important;
}

/* Grid küçük telefonlar */
.raporx-screen-phone {
  width: 100%;
  aspect-ratio: 220/450;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.raporx-screen-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

@media (max-width: 991px) {
  .raporx-phone-hero { height: 380px; }
  .raporx-phone-front, .raporx-phone-back { width: 160px; height: 330px; }
  .raporx-phone-front { transform: rotate(-8deg) translateX(-45px) translateY(8px); animation: raporxFloatFrontSm 4s ease-in-out infinite; }
  .raporx-phone-back  { transform: rotate(8deg)  translateX(45px)  translateY(-8px); animation: raporxFloatBackSm 4s ease-in-out infinite; animation-delay: 0.5s; }
  @keyframes raporxFloatFrontSm {
    0%, 100% { transform: rotate(-8deg) translateX(-45px) translateY(8px); }
    50%       { transform: rotate(-8deg) translateX(-45px) translateY(-8px); }
  }
  @keyframes raporxFloatBackSm {
    0%, 100% { transform: rotate(8deg) translateX(45px) translateY(-8px); }
    50%       { transform: rotate(8deg) translateX(45px) translateY(8px); }
  }
}

/* ======================================================
   NASIL ÇALIŞIR
====================================================== */
.how-it-works { padding: 80px 0; }
.hiw-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid #f0e0e0;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.hiw-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(211,47,47,0.12); }
.hiw-step {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #d32f2f, #ff5252);
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(211,47,47,0.35);
}
.hiw-icon {
  font-size: 2.4rem;
  color: #d32f2f;
  margin: 10px 0 16px;
}
.hiw-card h4 { font-size: 1rem; font-weight: 700; color: #1a0a0a; margin-bottom: 10px; }
.hiw-card p  { font-size: 13.5px; color: #666; line-height: 1.7; margin: 0; }

/* ======================================================
   SEKTÖRLER
====================================================== */
.sektorler-section { padding: 80px 0; }
.sektor-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 4px solid #d32f2f;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.sektor-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(211,47,47,0.1); }
.sektor-icon { font-size: 2.2rem; color: #d32f2f; margin-bottom: 14px; }
.sektor-card h4 { font-size: 1.05rem; font-weight: 700; color: #1a0a0a; margin-bottom: 10px; }
.sektor-card p  { font-size: 13.5px; color: #666; line-height: 1.7; margin-bottom: 14px; }
.sektor-list { list-style: none; padding: 0; margin: 0; }
.sektor-list li { font-size: 13px; color: #444; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sektor-list li i { color: #d32f2f; font-size: 14px; }

/* ======================================================
   KARŞILAŞTIRMA
====================================================== */
.karsilastirma-section { padding: 80px 0; }
.karsilastirma-table-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 4px 32px rgba(0,0,0,0.09); }
.karsilastirma-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.karsilastirma-table thead tr { background: #1a0a0a; }
.karsilastirma-table thead th { padding: 18px 24px; color: #fff; font-size: 14px; font-weight: 700; text-align: center; }
.karsilastirma-table thead th:first-child { text-align: left; }
.karsilastirma-table thead th.col-raporx { background: #d32f2f; }
.karsilastirma-table tbody tr { border-bottom: 1px solid #f5e8e8; transition: background 0.15s; }
.karsilastirma-table tbody tr:hover { background: #fff5f5; }
.karsilastirma-table tbody td { padding: 16px 24px; font-size: 14px; color: #333; text-align: center; }
.karsilastirma-table tbody td:first-child { text-align: left; font-weight: 600; color: #1a0a0a; }
.karsilastirma-table .col-raporx { background: rgba(211,47,47,0.04); }
.karsilastirma-table .bi-check-circle-fill { color: #16a34a !important; font-size: 18px; }
.karsilastirma-table .bi-x-circle-fill    { color: #dc2626 !important; font-size: 18px; }
.karsilastirma-table .bi-dash-circle      { color: #d97706 !important; font-size: 18px; }

/* ======================================================
   TESTİMONİALS
====================================================== */
.testimonials-section { padding: 80px 0; }
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-left: 4px solid #d32f2f;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars i { color: #f59e0b; font-size: 15px; }
.testi-card p { font-size: 14px; color: #555; line-height: 1.8; font-style: italic; flex: 1; margin: 0; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar i { font-size: 2.6rem; color: #d32f2f; }
.testi-author strong { display: block; font-size: 14px; color: #1a0a0a; }
.testi-author span   { font-size: 12px; color: #888; }
