/*
Theme Name: Kelo
Theme URI: https://kelotech.com
Author: Kelo Team
Author URI: https://kelotech.com
Description: Професійна WordPress тема для Kelo Tech
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kelo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  /* Colors */
  --color-blue-primary: #12426A;
  --color-blue-dark: #0D2F4A;
  --color-blue-light: #1A5A8F;
  --color-orange: #FFC107;
  --color-orange-dark: #FFA000;
  --color-orange-light: #FFECB3;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #EEEEEE;
  --color-gray-300: #E0E0E0;
  --color-gray-700: #616161;
  --color-gray-900: #212121;
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Typography */
  --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --font-size-xl: 3.5rem;
  --font-size-lg: 2.5rem;
  --font-size-md: 1.75rem;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-base: all 0.3s ease;
}

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

html {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-xl);
}

h2 {
  font-size: var(--font-size-lg);
}

h3 {
  font-size: var(--font-size-md);
}

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

a:hover {
  color: var(--color-blue-light);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  background: var(--color-white);
}

/* Top Bar Styles */
.header-top-bar {
  background: #f6f6f6;
  padding: 10px 60px;
}

.header-container {
  max-width: 1330px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0px;
}

.top-bar-item span,
.top-bar-item a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #797c7f;
  text-decoration: none;
  transition: var(--transition-base);
}

.top-bar-item a:hover {
  color: var(--color-blue-primary);
}

.top-bar-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: var(--transition-base);
}

.social-link:hover {
  background: rgba(18, 66, 106, 0.1);
}

.social-link img {
  width: 16px;
  height: 16px;
}

/* Main Header Styles */
.header-main {
  padding: 25px 60px;
}

.header-main .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-branding {
  flex-shrink: 0;
}

.site-branding a {
  display: block;
}

.site-branding img {
  height: 72px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue-primary);
  text-decoration: none;
}

/* Navigation Styles */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gray-900);
  position: relative;
  transition: background 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-gray-900);
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

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

.menu-toggle-icon::after {
  bottom: -8px;
}

/* Hamburger → X animation */
.menu-toggle.active .menu-toggle-icon {
  background: transparent;
}

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

.menu-toggle.active .menu-toggle-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

#primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

#primary-menu li {
  position: relative;
}

#primary-menu>li>a {
  display: block;
  padding: 14.39px 14.4px 16.39px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1f242e;
  text-decoration: none;
  transition: var(--transition-base);
}

#primary-menu>li>a:hover,
#primary-menu>li.current-menu-item>a {
  color: var(--color-blue-primary);
}

#primary-menu>li.current-menu-item>a {
  border-bottom: 2px solid #1f242e;
  padding-bottom: 12.39px;
}

/* Desktop Dropdown Submenu */
#primary-menu>li.menu-item-has-children>a {
  padding-right: 26px;
  position: relative;
}

#primary-menu>li.menu-item-has-children>a::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}

#primary-menu>li.menu-item-has-children:hover>a::after {
  transform: translateY(-50%) rotate(180deg);
}

#primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  border: 1px solid #F0F0F0;
}

#primary-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-menu .sub-menu li {
  position: relative;
}

#primary-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #1f242e;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

#primary-menu .sub-menu li a:hover {
  background: #F5F7FA;
  color: var(--color-blue-primary);
}

#primary-menu .sub-menu li.current-menu-item>a {
  color: var(--color-blue-primary);
  background: #F5F7FA;
}

/* Level 2 items with children — arrow indicator */
#primary-menu .sub-menu li.menu-item-has-children>a {
  padding-right: 32px;
  position: relative;
}

#primary-menu .sub-menu li.menu-item-has-children>a::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

#primary-menu .sub-menu li.menu-item-has-children:hover>a::after {
  border-left-color: var(--color-blue-primary);
}

/* Nested submenu (level 3+) */
#primary-menu .sub-menu .sub-menu {
  top: -8px;
  left: 100%;
  min-width: 200px;
}

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

body.menu-open {
  overflow: hidden;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 20px;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue-primary);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.mobile-menu-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #1f242e;
  border-radius: 1px;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  flex: 1;
  padding: 20px 0;
}

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

.mobile-menu-nav ul li {
  border-bottom: 1px solid #F0F0F0;
}

.mobile-menu-nav ul li a {
  display: block;
  padding: 16px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #1f242e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-nav ul li a:hover,
.mobile-menu-nav ul li.current-menu-item a {
  color: var(--color-blue-primary);
}

.mobile-menu-nav ul li.current-menu-item a {
  position: relative;
  padding-left: 16px;
}

.mobile-menu-nav ul li.current-menu-item>a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-blue-primary);
  border-radius: 2px;
}

/* Mobile Submenu Toggle Arrow */
.mobile-menu-nav .menu-item-has-children {
  position: relative;
}

.mobile-menu-nav .menu-item-has-children>a {
  padding-right: 44px;
}

.mobile-submenu-toggle {
  position: absolute;
  top: 8px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.mobile-submenu-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-submenu-toggle.open svg {
  transform: rotate(180deg);
}

/* Mobile Submenu Items */
.mobile-menu-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
  display: none;
  border-left: 2px solid #E8E8E8;
  margin-left: 4px;
}

.mobile-menu-nav .sub-menu.open {
  display: block;
}

.mobile-menu-nav .sub-menu li {
  border-bottom: none;
}

.mobile-menu-nav .sub-menu li a {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #4A5568;
}

.mobile-menu-nav .sub-menu li a:hover {
  color: var(--color-blue-primary);
}

.mobile-menu-nav .sub-menu li.current-menu-item>a {
  color: var(--color-blue-primary);
  font-weight: 600;
}

/* Mobile 3rd level submenu */
.mobile-menu-nav .sub-menu .sub-menu {
  padding-left: 12px;
  border-left-color: #D0D0D0;
}

.mobile-menu-nav .sub-menu .sub-menu li a {
  font-size: 15px;
  color: #718096;
}

.mobile-menu-nav .sub-menu .sub-menu li a:hover {
  color: var(--color-blue-primary);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 24px 0;
  border-top: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.mobile-menu-phone svg {
  flex-shrink: 0;
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 28px;
  font-size: 16px;
}

.mobile-menu-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  transition: background 0.2s ease;
}

.mobile-menu-social a:hover {
  background: #E8E8E8;
}

.mobile-menu-social a img {
  width: 20px;
  height: 20px;
}

/* ============================================
   HEADER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
  .header-top-bar {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 0;
    padding-top: 20px;
  }

  .header-main .header-container {
    padding: 0px 20px;
  }

  .site-branding img {
    height: 50px;
  }
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
}

.hero-container {
  width: 100%;
  max-width: 1320px;
}

.hero-slide {
  position: relative;
  height: 451px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 62px 60px;
}

.hero-background {
  position: absolute !important;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
}

.hero-background .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-background .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

.hero-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 223px;
  height: 89px;
  z-index: 4;
}

.hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slider-dots {
  position: absolute !important;
  right: 35px !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 26px;
  z-index: 4;
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(247, 246, 244, 0.6);
  transition: var(--transition-base);
  cursor: pointer;
}

.hero-slider-dots .dot.active {
  background: white;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fffefe;
  max-width: 643px;
}

.hero-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 60px;
  color: #fffefe;
  max-width: 643px;
  margin: 0;
}

.hero-subheading {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #fffefe;
  margin: 0;
}

.hero-subheading p {
  margin: 0;
}

.hero-subheading strong {
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-yellow {
  background: #ffc412;
  color: #000000;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
  text-align: center;
}

.btn-yellow:hover {
  background: #ffce3a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #000000;
}

.btn-blue {
  background: #12426a;
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  padding: 0 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
  text-align: center;
}

.btn-blue:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 0 30px;
  }

  .hero-slide {
    padding: 40px 30px 30px;
    height: auto;
    min-height: 600px;
    align-items: stretch;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 600px;
  }

  .hero-buttons {
    margin-top: auto;
  }

  .hero-heading {
    font-size: 42px;
    line-height: 50px;
    margin-top: auto;
  }

  .hero-badge {
    width: 180px;
    height: 72px;
    top: 15px;
    right: 15px;
    bottom: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 20px 20px 0;
  }

  .hero-slide {
    padding: 40px 20px 30px;
    min-height: 50vh;
    align-items: stretch;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 0;
  }

  .hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 14px;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 40px;
    max-width: 100%;
  }

  .hero-subheading {
    font-size: 15px;
    line-height: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: auto;
  }

  .btn-yellow,
  .btn-blue {
    width: 100%;
    line-height: 48px;
    font-size: 15px;
    border-radius: 10px;
  }

  .hero-badge {
    width: 140px;
    height: 56px;
    top: 15px;
    right: 10px;
    bottom: auto;
  }

  .hero-slider-dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    padding: 30px 16px 24px;
    min-height: 50vh;
  }

  .hero-text {
    gap: 12px;
  }

  .hero-heading {
    font-size: 26px;
    line-height: 32px;
  }

  .hero-subheading {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-badge {
    width: 100px;
    height: 40px;
    top: 10px;
    right: 10px;
    bottom: auto;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
  position: relative;
  background-color: #100f0f;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -20px;
  width: 70%;
  height: 100%;
  background-image: url('assets/images/footer-bg.svg');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.footer-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 100px 60px 0;
}

.footer-bottom {
  margin-top: 80px;
  padding-bottom: 60px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column-contact {
  justify-content: space-between;
}

.footer-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
  color: #fffefe;
  margin: 0;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-address p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28.22px;
  color: #d2d3d5;
  margin: 0;
}

.footer-email-link,
.footer-phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28.22px;
  color: #d2d3d5;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.footer-phone {
  font-weight: 600;
  font-size: 19px;
  line-height: 19px;
}

.footer-email-link:hover,
.footer-phone:hover {
  color: #fffefe;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 20.4px;
  color: #d2d3d5;
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
}

.footer-menu a:hover {
  color: #fffefe;
}

.footer-office-info {
  display: flex;
  flex-direction: column;
}

.footer-office-address {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28.22px;
  color: #d2d3d5;
  margin: 0 0 22px 0;
}

.footer-office-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 20.4px;
  color: #d2d3d5;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-office-link+.footer-office-link {
  margin-top: 36px;
}

.footer-office-link:hover {
  color: #fffefe;
}

.footer-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 50px;
  background: #12426a;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.footer-btn-book:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.footer-badge {
  margin-top: 4px;
}

.footer-badge img {
  max-width: 170px;
  height: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: transparent;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: #d2d3d5;
  transition: fill 0.3s ease;
}

.footer-social-icon:hover svg {
  fill: #ffffff;
}

.footer-bottom-section {
  position: relative;
  padding: 0 65px;
  z-index: 2;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #3c3f47;
  margin-bottom: 20px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-copyright {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.22px;
}

.footer-copyright-brand {
  color: #d2d3d5;
}

.footer-copyright-text {
  color: #96999f;
}

.footer-legal-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-menu li {
  margin: 0;
}

.footer-legal-menu a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.22px;
  color: #96999f;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-legal-menu a:hover {
  color: #fffefe;
}

.footer-developed-by {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.22px;
  color: #96999f;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-developed-by:hover {
  color: #fffefe;
}

.footer-large-text {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  overflow: hidden;
}

.footer-large-text-svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-large-text-content {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 14vw, 324px);
  line-height: 1;
  color: #fffbf6;
  letter-spacing: -0.06em;
  margin: 0;
  white-space: nowrap;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}

@media (max-width: 768px) {
  .footer-content-wrapper {
    padding: 60px 20px 0;
  }

  .footer-content {
    padding: 0 30px;
  }

  .footer-bottom-section {
    padding: 0 30px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 15px;
  }

  .footer-bottom-section {
    padding: 0 15px;
  }

  .footer-spacer {
    height: 50px;
  }

  .footer-cta .btn-blue {
    width: 100%;
  }

  .footer-badge {
    width: 140px;
    height: auto;
  }
}

/* ============================================
   ADVANTAGES SECTION STYLES
   ============================================ */

.advantages-container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.advantage-item {
  flex: 1;
  max-width: 300px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.advantage-icon {
  flex-shrink: 0;
  width: 51px;
  height: 51px;
  background: #f6f6f6;
  border-radius: 9.107px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 32px;
  height: 32px;
}

.advantage-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.advantage-number {
  color: #FFF;
  font-family: Manrope;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.advantage-text {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.advantage-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

.advantage-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

/* Advantages Responsive Styles */
@media (max-width: 1024px) {
  .advantages-container {
    padding: 0 30px;
    flex-wrap: wrap;
  }

  .advantage-item {
    flex: 1 1 calc(50% - 15px);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 40px 0;
  }

  .advantages-container {
    padding: 0 15px;
    flex-direction: column;
    gap: 20px;
  }

  .advantage-item {
    max-width: 100%;
  }

  .advantage-number {
    line-height: 16px;
  }

  .advantage-text {
    min-height: 56px;
  }
}

/* ============================================
   SERVICES SECTION STYLES
   ============================================ */

.services-section {
  padding: 24px 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.services-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.services-container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-header {
  display: flex;
  gap: 0;
  align-items: flex-start;
  width: 100%;
}

.services-header-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.services-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  margin: 0;
  width: 630px;
  max-width: 100%;
}

.services-header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 0 0 0 100px;
}

.services-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #868080;
  margin: 0;
  padding-top: 10px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}

.service-card {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 290px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
}

.service-divider {
  position: absolute;
  right: -0.33px;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: #e4dfdf;
}

.service-icon {
  display: block;
  width: 75px;
  height: 75px;
  margin-top: 15px;
  margin-bottom: 3px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 9px;
  text-align: left;
}

.service-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #202225;
  margin: 0;
  padding-bottom: 1px;
}

.service-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-title a:hover {
  color: #12426a;
}

.service-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 17px;
  height: 13px;
}

.service-arrow svg {
  width: 17px;
  height: 13px;
}

/* Services Responsive Styles */
@media (max-width: 1024px) {
  .services-section {
    padding: 24px 30px;
  }

  .services-header {
    flex-direction: column;
    gap: 30px;
  }

  .services-header-left,
  .services-header-right {
    max-width: 100%;
    padding: 0;
  }

  .services-title {
    font-size: 48px;
    line-height: 52px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2n) .service-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 24px 15px;
  }

  .services-title {
    font-size: 36px;
    line-height: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding-right: 0;
    height: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #e4dfdf;
  }

  .service-card:not(:last-child) .service-divider {
    display: none;
  }

  .service-title {
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 28px;
    line-height: 34px;
  }

  .services-description {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ============================================
   TICKER SECTION STYLES
   ============================================ */

.ticker-section {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 120px 0;
  margin: 0;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  will-change: transform;
}

.ticker-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 110px;
  line-height: 130px;
  color: #12426A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 90px;
  padding-right: 90px;
}

.ticker-item {
  white-space: nowrap;
}

.ticker-separator {
  width: 1px;
  height: 88px;
  background: #E4DFDF;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Ticker Responsive Styles */
@media (max-width: 1024px) {
  .ticker-section {
    padding: 20px 0;
  }

  .ticker-text {
    font-size: 56px;
    line-height: 68px;
    gap: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .ticker-section {
    padding: 30px 0;
  }

  .ticker-text {
    font-size: 42px;
    line-height: 52px;
    gap: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 480px) {
  .ticker-section {
    padding: 30px 0;
  }

  .ticker-text {
    font-size: 42px;
    line-height: 52px;
    gap: 30px;
    padding-right: 30px;
  }
}

/* ============================================
   CTA 1 SECTION STYLES
   ============================================ */

.cta-1-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cta-1-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-1-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-1-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 66, 106, 0.7);
  z-index: 2;
}

.cta-1-spacing-top,
.cta-1-spacing-bottom {
  height: 100px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.cta-1-container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 60px;
}

.cta-1-content {
  max-width: 1320px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.cta-1-left {
  width: 542px;
  flex-shrink: 0;
  padding: 6px 15px 0;
}

.cta-1-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 47px;
  line-height: 56px;
  color: #fffefe;
  margin: 0 0 16px 0;
}

.cta-1-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

.cta-1-right {
  flex-shrink: 0;
  padding: 0 15px;
}

.cta-1-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-1-input {
  width: 533px;
  height: 55px;
  background: #eeeeee;
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  outline: none;
  transition: var(--transition-base);
}

.cta-1-input::placeholder {
  color: #797c7f;
}

.cta-1-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.cta-1-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-1-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.cta-1-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #e4dfdf;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  margin-top: 3px;
  flex-shrink: 0;
  appearance: none;
  position: relative;
}

.cta-1-checkbox:checked {
  background: #ffffff;
  border-color: #ffffff;
}

.cta-1-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #12426a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta-1-checkbox-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

.cta-1-privacy-link {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 2px;
  transition: var(--transition-base);
}

.cta-1-privacy-link:hover {
  opacity: 0.8;
}

.cta-1-button {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 55px;
  padding: 0 35px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 55px;
  color: #000000;
  cursor: pointer;
  transition: var(--transition-base);
  width: fit-content;
}

.cta-1-button-icon {
  transform: scaleY(-1);
  width: 17px;
  height: 17px;
}

.cta-1-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* CTA 1 Responsive Styles */
@media (max-width: 1200px) {
  .cta-1-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-1-left {
    width: 100%;
    padding: 0;
  }

  .cta-1-right {
    width: 100%;
    padding: 0;
  }

  .cta-1-input {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .cta-1-container {
    padding: 0 30px;
  }

  .cta-1-spacing-top,
  .cta-1-spacing-bottom {
    height: 80px;
  }

  .cta-1-title {
    font-size: 38px;
    line-height: 46px;
  }
}

@media (max-width: 768px) {
  .cta-1-container {
    padding: 0 15px;
  }

  .cta-1-spacing-top,
  .cta-1-spacing-bottom {
    height: 60px;
  }

  .cta-1-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-1-description {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {

  .cta-1-spacing-top,
  .cta-1-spacing-bottom {
    height: 40px;
  }

  .cta-1-title {
    font-size: 26px;
    line-height: 32px;
  }

  .cta-1-description {
    font-size: 14px;
    line-height: 22px;
  }

  .cta-1-button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   TRENDING PRODUCTS SECTION STYLES
   ============================================ */

.trending-products-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 60px;
}

.trending-products-spacing-middle {
  height: 45px;
  width: 100%;
}

.trending-products-header-container {
  max-width: 1320px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

.trending-products-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.trending-products-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  text-align: center;
  margin: 0;
}

.trending-products-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #797c7f;
  text-align: center;
  margin: 0;
  padding-bottom: 1px;
}

.trending-products-grid-container {
  max-width: 1300px;
  width: 100%;
}

.trending-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}

.trending-product-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 35px;
  text-decoration: none;
  color: inherit;
}

.trending-product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

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


.trending-product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  padding-bottom: 10px;
}

.trending-product-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 24px;
  color: #1f242e;
  margin: 0;
  flex: 1;
}

.trending-product-button {
  background: #12426a;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-base);
}

.trending-product-button:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

/* Trending Products Responsive Styles */
@media (max-width: 1024px) {
  .trending-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }

  .trending-products-title {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (max-width: 768px) {
  .trending-products-section {
    padding: 60px 20px;
  }

  .trending-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
  }

  .trending-products-title {
    font-size: 36px;
    line-height: 40px;
  }

  .trending-products-description {
    font-size: 15px;
    line-height: 24px;
  }

  .trending-product-name {
    font-size: 17px;
    line-height: 22px;
  }

  .trending-product-item {
    padding-bottom: 5px;
  }
}

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

  .trending-products-title {
    font-size: 28px;
    line-height: 34px;
  }

  .trending-products-description {
    font-size: 14px;
    line-height: 22px;
  }

  .trending-product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trending-product-button {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

.products-grid-section {
  padding: 0 60px 120px;
  width: 100%;
}

.products-grid-wrapper {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.products-grid-container {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 36px;
}

.products-page .trending-product-button {
  border: none;
  cursor: pointer;
}

.products-no-posts {
  text-align: center;
  padding: 60px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: #797c7f;
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  font-family: 'Manrope', sans-serif;
}

.products-pagination a,
.products-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1f242e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.products-pagination a:hover {
  background: #f6f6f6;
}

.products-pagination .current {
  background: #12426a;
  color: #ffffff;
}

/* Products Page Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }
}

@media (max-width: 768px) {
  .products-grid-section {
    padding: 0 30px 80px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
  }
}

@media (max-width: 480px) {
  .products-grid-section {
    padding: 0 15px 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PRODUCT MODAL POPUP STYLES
   ============================================ */

.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.product-modal.active {
  display: flex;
}

.product-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

.product-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
}

.product-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.product-modal-close:hover {
  opacity: 0.7;
}

.product-modal-inner {
  display: flex;
  background: #12426a;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
}

.product-modal-left {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.product-modal-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-modal-swiper .swiper-wrapper {
  height: 100%;
}

.product-modal-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d3555;
  height: 100% !important;
  overflow: hidden;
}

.product-modal-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-pagination {
  bottom: 15px !important;
}

.product-modal-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.product-modal-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.product-modal-nav-prev,
.product-modal-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1f242e;
}

.product-modal-nav-prev:hover,
.product-modal-nav-next:hover {
  background: #ffffff;
}

.product-modal-nav-prev {
  left: 12px;
}

.product-modal-nav-next {
  right: 12px;
}

.product-modal-right {
  flex: 0 0 50%;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
}

.product-modal-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #ffffff;
  margin: 0 0 20px;
}

.product-modal-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}

.product-modal-description p {
  margin: 0 0 15px;
}

.product-modal-description p:last-child {
  margin-bottom: 0;
}

/* Product Modal Responsive */
@media (max-width: 768px) {
  .product-modal-inner {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .product-modal-left {
    flex: none;
    height: 280px;
  }

  .product-modal-right {
    flex: none;
    height: auto;
    padding: 25px 20px;
  }

  .product-modal-title {
    font-size: 22px;
    line-height: 28px;
  }

  .product-modal-close {
    top: -45px;
    right: -5px;
  }
}

@media (max-width: 480px) {
  .product-modal-content {
    width: 95%;
  }

  .product-modal-left {
    height: 220px;
  }

  .product-modal-right {
    padding: 20px 15px;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-blue-primary, #12426A);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--color-blue-dark, #0D2F4A);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 9995;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.floating-call__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-blue-primary, #12426A);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(18, 66, 106, 0.35);
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.floating-call__toggle:hover {
  background-color: var(--color-blue-dark, #0D2F4A);
  transform: scale(1.05);
}

.floating-call__icon--close {
  display: none;
}

.floating-call.active .floating-call__icon--phone {
  display: none;
}

.floating-call.active .floating-call__icon--close {
  display: block;
}

.floating-call__actions {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-call.active .floating-call__actions {
  display: flex;
  animation: floatingCallFadeIn 0.3s ease;
}

@keyframes floatingCallFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-call__action {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-call__action:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-call__action--email {
  background-color: var(--color-blue-primary, #12426A);
}

.floating-call__action--whatsapp {
  background-color: #25D366;
}

.floating-call__action--phone {
  background-color: var(--color-orange, #FFC107);
}

.floating-call__action svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .floating-call {
    bottom: 86px;
    right: 20px;
  }

  .floating-call__toggle {
    width: 54px;
    height: 54px;
  }

  .floating-call__action {
    width: 44px;
    height: 44px;
  }

  .floating-call__action svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   PROJECTS SECTION STYLES
   ============================================ */

.projects-section {
  background: #ffffff;
  padding: 32px 0;
  width: 100%;
  overflow: hidden;
}

.projects-spacing-top {
  height: 0;
  width: 100%;
}

.projects-spacing-middle {
  height: 45px;
  width: 100%;
}

.projects-header-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.projects-header {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  padding-bottom: 45px;
}

.projects-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  text-align: center;
  margin: 0;
}

.projects-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #797c7f;
  text-align: center;
  margin: 0;
  padding-bottom: 1px;
}

.projects-slider-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.projects-grid {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

.project-card {
  width: 100%;
  height: 329px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.project-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.project-background {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90.1722deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 84.269%);
  border-radius: 10px;
}

.project-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 52px;
  gap: 19.6px;
}

.project-category {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fffefe;
  opacity: 0.9;
}

.project-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 47px;
  line-height: 47.99px;
  color: #fffefe;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.projects-swiper .swiper-pagination {
  position: static;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  margin-top: 0;
}

.project-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: 2px solid #e4dfdf;
  background: #e4dfdf;
  cursor: pointer;
  transition: var(--transition-base);
  opacity: 1;
}

.project-dot.active {
  background: #12426a;
  border-color: #12426a;
}

.project-dot:hover {
  transform: scale(1.2);
}

/* Projects Responsive Styles */
@media (max-width: 1024px) {
  .projects-title {
    font-size: 48px;
    line-height: 52px;
  }

  .project-name {
    font-size: 38px;
    line-height: 42px;
  }

  .project-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }

  .page-template-template-projects .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-title {
    font-size: 36px;
    line-height: 40px;
  }

  .projects-description {
    font-size: 15px;
    line-height: 24px;
  }

  .project-card {
    height: 280px;
  }

  .project-name {
    font-size: 32px;
    line-height: 36px;
  }

  .project-category {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .projects-title {
    font-size: 28px;
    line-height: 34px;
  }

  .projects-description {
    font-size: 14px;
    line-height: 22px;
  }

  .project-card {
    height: 240px;
  }

  .project-name {
    font-size: 26px;
    line-height: 30px;
  }

  .project-content {
    padding: 0 20px;
  }
}

/* Info Block styles moved to assets/css/sections.css */

/* ============================================
   WHY CHOOSE US SECTION STYLES
   ============================================ */

.why-choose-section {
  padding: 60px 0;
  width: 100%;
}

.why-choose-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 60px;
  align-items: start;
}

.why-choose-left {
  position: sticky;
  top: 10px;
  padding: 0 15px;
}

.why-choose-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 64px;
  color: #1f242e;
  margin: 0 0 23px 0;
  max-width: 500px;
}

.why-choose-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #797c7f;
  margin: 0;
  max-width: 500px;
}

.why-choose-description strong {
  font-weight: 600;
}

.why-choose-right {
  padding: 10px 15px 0;
  max-width: 599px;
}

.why-choose-step {
  position: relative;
  padding: 1px 0 0 140px;
  margin-bottom: 40px;
}

.why-choose-step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: #f6f6f6;
  border-radius: 9.107px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-choose-step-icon img {
  width: 22px;
  height: 22px;
}

.why-choose-step-content {
  padding: 9px 0 40px;
}

.why-choose-step-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 33px;
  color: #1f242e;
  margin: 0 0 18px 0;
}

.why-choose-step-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #797c7f;
  margin: 0;
}

.why-choose-step-divider {
  position: absolute;
  left: 28px;
  top: 76px;
  bottom: -22px;
  width: 1px;
  background: #e4dfdf;
}

/* Why Choose Us Responsive */
@media (max-width: 1024px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-left {
    position: static;
  }

  .why-choose-title {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (max-width: 768px) {
  .why-choose-title {
    font-size: 36px;
    line-height: 42px;
  }

  .why-choose-description {
    font-size: 15px;
    line-height: 24px;
  }

  .why-choose-step {
    padding-left: 80px;
  }

  .why-choose-step-icon {
    width: 48px;
    height: 48px;
  }

  .why-choose-step-icon img {
    width: 18px;
    height: 18px;
  }

  .why-choose-step-title {
    font-size: 24px;
    line-height: 30px;
  }

  .why-choose-step-description {
    font-size: 15px;
    line-height: 22px;
  }

  .why-choose-step-divider {
    left: 24px;
  }
}

/* ============================================
   REVIEWS SECTION STYLES
   ============================================ */

.reviews-section {
  background: #f6f6f6;
  padding: 60px 0;
  width: 100%;
}

.reviews-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 45px;
}

.reviews-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  margin: 0 0 23px 0;
}

.reviews-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #797c7f;
  margin: 0;
}

.reviews-widget-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Reviews Responsive */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 36px;
    line-height: 42px;
  }

  .reviews-description {
    font-size: 15px;
    line-height: 24px;
  }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq-section {
  padding: 60px 15px;
  width: 100%;
}

.faq-header {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #202225;
  margin: 0;
  text-align: center;
}

.faq-spacing {
  height: 45px;
  width: 100%;
}

.faq-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 75px;
}

.faq-item {
  border-top: 1px solid #e4dfdf;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 44px 0;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #202225;
  flex: 1;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 20px;
  color: #202225;
}

.faq-icon-minus {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-icon-plus {
  transition: opacity 0.3s ease;
}

.faq-item-open .faq-icon-minus {
  opacity: 1;
}

.faq-item-open .faq-icon-plus {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item-open .faq-answer {
  max-height: 500px;
  padding-bottom: 35px;
}

.faq-answer p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  color: #797c7f;
  margin: 0;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
  .faq-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 36px;
    line-height: 42px;
  }

  .faq-container {
    padding: 0 15px;
  }

  .faq-question {
    padding: 32px 0;
  }

  .faq-question-text {
    font-size: 20px;
    line-height: 26px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 26px;
  }
}

/* ====================================
   CTA 2 SECTION STYLES
   ==================================== */
.cta-2-section {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.cta-2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 66, 106, 0.7);
  pointer-events: none;
}

.cta-2-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.cta-2-spacer-top,
.cta-2-spacer-bottom {
  height: 100px;
  flex-shrink: 0;
  width: 100%;
}

.cta-2-section-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  padding: 0 60px;
}

.cta-2-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1320px;
  width: 100%;
  flex-shrink: 0;
  isolation: isolate;
}

.cta-2-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 542px;
  flex-shrink: 0;
  z-index: 2;
}

.cta-2-left-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 1px;
  min-height: 1px;
  padding: 0 0 6px;
}

.cta-2-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 1px;
  min-height: 1px;
  flex-shrink: 0;
}

.cta-2-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  flex-shrink: 0;
  line-height: 0;
}

.cta-2-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 47px;
  line-height: 56px;
  color: #fffefe;
  width: 100%;
  margin: 0;
}

.cta-2-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  font-size: 17px;
  line-height: 28px;
  color: #ffffff;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}

.cta-2-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.cta-2-right-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0;
  flex-shrink: 0;
}

.cta-2-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  width: 100%;
}

.cta-2-input-wrapper {
  width: 100%;
  flex-shrink: 0;
}

.cta-2-input {
  display: flex;
  align-items: center;
  width: 533px;
  height: 55px;
  background: #eeeeee;
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  overflow: hidden;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #333333;
  outline: none;
  transition: all 0.2s ease;
}

.cta-2-input::placeholder {
  color: #797c7f;
}

.cta-2-input:focus {
  background: #e4e4e4;
}

.cta-2-form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
  width: 100%;
}

.cta-2-checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  flex-shrink: 0;
}

.cta-2-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.cta-2-checkbox-border {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #e4dfdf;
  border-radius: 4px;
  background: transparent;
  pointer-events: none;
}

.cta-2-checkbox-input:checked~.cta-2-checkbox-border {
  background: #12426a;
  border-color: #12426a;
}

.cta-2-checkbox-input:checked~.cta-2-checkbox-border::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta-2-checkbox-text {
  display: inline;
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  white-space: nowrap;
}

.cta-2-privacy-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta-2-privacy-link:hover {
  color: #ffc412;
  border-bottom-color: #ffc412;
}

.cta-2-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 55px;
  width: 170px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-2-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-2-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-2-button-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  max-width: none;
}

.cta-2-button-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 55px;
  color: #202225;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

/* CTA 2 CF7 Integration */
.cta-2-right-inner .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.cta-2-right-inner .wpcf7-form br {
  display: none;
}

.cta-2-right-inner .wpcf7-form p,
.cta-2-right-inner .wpcf7-form .wpcf7-response-output {
  margin: 0 !important;
  padding: 0;
  width: 100%;
}

.cta-2-right-inner .wpcf7-form .wpcf7-response-output:empty {
  display: none;
}

.cta-2-right-inner .wpcf7-form p:empty {
  display: none;
}

.cta-2-right-inner .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.cta-2-right-inner .wpcf7-form input[type="text"],
.cta-2-right-inner .wpcf7-form input[type="tel"],
.cta-2-right-inner .wpcf7-form input[type="email"] {
  display: flex;
  align-items: center;
  width: 533px;
  max-width: 100%;
  height: 55px;
  background: #eeeeee;
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #333333;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.cta-2-right-inner .wpcf7-form input[type="text"]::placeholder,
.cta-2-right-inner .wpcf7-form input[type="tel"]::placeholder,
.cta-2-right-inner .wpcf7-form input[type="email"]::placeholder {
  color: #797c7f;
}

.cta-2-right-inner .wpcf7-form input[type="text"]:focus,
.cta-2-right-inner .wpcf7-form input[type="tel"]:focus,
.cta-2-right-inner .wpcf7-form input[type="email"]:focus {
  background: #e4e4e4;
}

.cta-2-right-inner .wpcf7-form .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 55px;
  width: 170px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #202225;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M15.9697 0.996401L0.0270001 8.96742C-0.0520491 9.01259 0.0778175 8.89402 0.0270001 8.96742C-0.0238172 9.04082 0.0326465 8.87708 0.0270001 8.96742C-0.0181709 8.88837 0.0213537 9.05776 0.0270001 8.96742C-0.0520491 8.92225 0.0721711 9.04646 0.0270001 8.96742L3.01626 11.9565V16.9384C3.01626 17.0514 3.95056 16.8537 4.01267 16.9384C3.91104 16.9046 4.07478 17.0231 4.01267 16.9384C3.90539 16.9723 4.11431 16.9723 4.01267 16.9384C3.95621 17.0288 4.11996 16.9046 4.01267 16.9384L7.00193 13.9493L12.9804 16.9384C12.8167 17.0118 13.1272 17.0288 12.9804 16.9384C12.9579 17.1078 13.1442 16.865 12.9804 16.9384L15.9697 0.996401C16.0092 1.08674 15.9923 0.906063 15.9697 0.996401C16.0431 1.05286 15.9302 0.906063 15.9697 0.996401C15.8963 0.939939 16.0657 0.00567055 15.9697 2.47955e-05C15.8737 -0.00562096 16.0487 0.951233 15.9697 0.996401ZM4.01267 10.9602L1.02342 8.96742L12.9804 2.98916L4.01267 10.9602ZM4.01267 15.9421V11.9565L12.9804 4.98191L4.01267 15.9421ZM12.9804 15.9421L7.99835 12.9529L14.9733 2.98916L12.9804 15.9421Z' fill='%23202225'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% - 45px) center;
  background-size: 16px 17px;
  padding-left: 28px;
}

.cta-2-right-inner .wpcf7-form .wpcf7-submit:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.cta-2-right-inner .wpcf7-form .cta-2-form-footer,
.cta-2-right-inner .wpcf7-form .cta-2-form-footer>p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cta-2-right-inner .wpcf7-form .cta-2-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  flex-wrap: nowrap;
}

.cta-2-right-inner .wpcf7-form .cta-2-checkbox-label .wpcf7-form-control-wrap {
  width: auto;
  display: inline-flex;
  align-items: center;
}

.cta-2-right-inner .wpcf7-form .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.cta-2-right-inner .wpcf7-form .cta-2-checkbox-border {
  display: none;
}

.cta-2-right-inner .wpcf7-form .wpcf7-list-item-label {
  display: none;
}

.cta-2-right-inner .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #e4dfdf;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative !important;
  opacity: 1 !important;
  margin: 0;
}

.cta-2-right-inner .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: #ffffff;
  border-color: #ffffff;
}

.cta-2-right-inner .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: solid #12426a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta-2-right-inner .wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.cta-2-right-inner .wpcf7-form .wpcf7-list-item-label {
  display: none;
}

.cta-2-right-inner .wpcf7-form .cta-2-checkbox-border {
  display: none;
}

.cta-2-right-inner .wpcf7-form .wpcf7-response-output {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  margin: 8px 0 0;
  padding: 8px 12px;
}

.cta-2-right-inner .wpcf7-form .wpcf7-not-valid-tip {
  color: #ff9999;
  font-size: 12px;
}

/* CTA 2 Responsive */
@media (max-width: 1200px) {
  .cta-2-container {
    padding: 0 30px;
  }

  .cta-2-input {
    width: 100%;
    max-width: 533px;
  }
}

@media (max-width: 1024px) {

  .cta-2-spacer-top,
  .cta-2-spacer-bottom {
    height: 80px;
  }

  .cta-2-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
  }

  .cta-2-left {
    width: 100%;
  }

  .cta-2-left-inner {
    padding: 0;
  }

  .cta-2-right-inner {
    padding: 0;
  }

  .cta-2-input {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .cta-2-spacer-top,
  .cta-2-spacer-bottom {
    height: 60px;
  }

  .cta-2-section-inner {
    padding: 0 20px;
  }

  .cta-2-right,
  .cta-2-right-inner,
  .cta-2-form {
    width: 100%;
    flex-shrink: 1;
  }

  .cta-2-title {
    font-size: 36px;
    line-height: 44px;
  }

  .cta-2-description {
    font-size: 15px;
    line-height: 24px;
  }

  .cta-2-input,
  .cta-2-button,
  .cta-2-right-inner .wpcf7-form input[type="text"],
  .cta-2-right-inner .wpcf7-form input[type="tel"],
  .cta-2-right-inner .wpcf7-form input[type="email"],
  .cta-2-right-inner .wpcf7-form textarea,
  .cta-2-right-inner .wpcf7-form .wpcf7-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-2-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-2-description {
    font-size: 14px;
    line-height: 22px;
  }

  .cta-2-input {
    font-size: 14px;
  }

  .cta-2-checkbox-label {
    width: 100%;
  }
}

/* ====================================
   LATEST NEWS SECTION STYLES
   ==================================== */
.latest-news-section {
  padding: 125px 60px 0 60px;
  background: #ffffff;
}

.latest-news-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.latest-news-header {
  text-align: center;
  margin-bottom: 58px;
}

.latest-news-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #202225;
  margin: 0 0 23px;
}

.latest-news-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #868080;
  margin: 0 auto;
  max-width: 968px;
}

.latest-news-swiper {
  overflow: visible;
}

.latest-news-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.latest-news-card.swiper-slide {
  width: auto !important;
  height: auto !important;
}

.latest-news-pagination {
  display: none;
}

.latest-news-card {
  position: relative;
}

.latest-news-card-link {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.latest-news-card-link:hover {
  transform: translateY(-4px);
}

.latest-news-card-image {
  position: relative;
  width: 100%;
  height: 227px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f0f0f0;
}

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

.latest-news-card-placeholder {
  background: linear-gradient(135deg, #e4dfdf 0%, #f6f6f6 100%);
}

.latest-news-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.latest-news-card-link:hover .latest-news-card-overlay {
  opacity: 1;
}

.latest-news-card-content {
  padding: 0 5px;
}

.latest-news-card-date {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #b1adad;
  margin-bottom: 10px;
}

.latest-news-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #202225;
  margin: 0;
  transition: color 0.2s ease;
}

.latest-news-card-link:hover .latest-news-card-title {
  color: #12426a;
}

.latest-news-footer {
  text-align: center;
}

.latest-news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #12426a;
  border-radius: 10px;
  padding: 0 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.latest-news-button:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

/* Latest News Responsive */
@media (max-width: 1200px) {
  .latest-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .latest-news-section {
    padding: 60px 0;
  }

  .latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .latest-news-title {
    font-size: 42px;
    line-height: 48px;
  }
}

@media (max-width: 768px) {
  .latest-news-section {
    padding: 50px 0;
  }

  .latest-news-header {
    margin-bottom: 40px;
  }

  .latest-news-title {
    font-size: 36px;
    line-height: 42px;
  }

  .latest-news-description {
    font-size: 15px;
    line-height: 24px;
  }

  .latest-news-swiper {
    overflow: hidden;
  }

  .latest-news-grid {
    display: flex !important;
    grid-template-columns: unset;
    gap: 0;
    margin-bottom: 35px;
  }

  .latest-news-card.swiper-slide {
    width: 100% !important;
    height: auto !important;
  }

  .latest-news-card-image {
    height: 200px;
  }

  .latest-news-card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .latest-news-footer {
    padding-top: 20px;
  }

  .latest-news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }

  .latest-news-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d9d9d9;
    border-radius: 50%;
    opacity: 1;
  }

  .latest-news-pagination .swiper-pagination-bullet-active {
    background: #12426a;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Page Hero Section (Blog, Projects, etc.) */
.page-hero {
  padding: 0 60px;
  width: 100%;
  background-color: #ffffff;
}

.page-hero-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero-container {
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
}

.page-hero-left {
  flex: 0 0 50%;
  padding-right: 30px;
}

.page-hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  margin: 0;
}

.page-hero-right {
  flex: 0 0 50%;
  padding-left: 30px;
}

.page-hero-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28.9px;
  color: #797c7f;
}

.page-hero-description p {
  margin: 0 0 27px;
}

.page-hero-description p:last-child {
  margin-bottom: 0;
}

/* Blog Grid Section */
.blog-grid-section {
  padding: 0 60px 120px;
  background-color: #ffffff;
}

.blog-grid-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.blog-grid-container {
  padding: 0 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
  width: 100%;
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.blog-card-link:hover {
  transform: translateY(-5px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 410 / 306;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 17px;
}

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

.blog-card-link:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4dfdf;
}

.blog-card-no-image {
  width: 80px;
  height: 80px;
  background-color: #868080;
  border-radius: 8px;
  opacity: 0.3;
}

.blog-card-content {
  padding: 0;
}

.blog-card-meta {
  margin-bottom: 12px;
}

.blog-card-date {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #a5a6aa;
}

.blog-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 33.99px;
  color: #1f242e;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-title {
  color: #12426a;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1f242e;
  background: #F6F6F6;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.blog-pagination a:hover {
  background-color: #f5f5f5;
  color: #12426a;
}

.blog-pagination .current {
  background: #12426A;
  color: #ffffff;
  font-weight: 600;
}

.blog-pagination .prev,
.blog-pagination .next {
  padding: 0;
  width: 46px;
}

.blog-pagination svg {
  width: 12px;
  height: 12px;
}

.blog-no-posts {
  text-align: center;
  padding: 100px 20px;
}

.blog-no-posts p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #868080;
}

/* Blog & Projects Page Responsive Styles */
@media (max-width: 1200px) {
  .page-hero-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .page-hero-left {
    flex: 0 0 50%;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}

@media (max-width: 1024px) {
  .page-hero {
    padding: 40px 30px 0;
  }

  .page-hero-container {
    flex-direction: column;
    gap: 20px;
  }

  .page-hero-left,
  .page-hero-right {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .page-hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .blog-grid-section {
    padding: 40px 30px 80px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 10px 20px 0;
  }

  .page-hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .page-hero-container {
    padding: 0 0 60px;
  }

  .page-hero-description {
    font-size: 15px;
    line-height: 24px;
  }

  .blog-grid-section {
    padding: 30px 20px 60px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-pagination {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .page-hero-description {
    font-size: 14px;
    line-height: 22px;
  }

  .blog-card-title {
    font-size: 20px;
    line-height: 28px;
    height: 56px;
  }

  .blog-pagination a,
  .blog-pagination span {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs-section {
  padding: 24px 60px;
  background: #ffffff;
}

.breadcrumbs-container {
  max-width: 1320px;
  margin: 0 auto;
}

.breadcrumbs {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #797c7f;
}

.breadcrumbs a {
  color: #797c7f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #1f242e;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #797c7f;
}

.breadcrumb-current {
  color: #1f242e;
}

@media (max-width: 1024px) {
  .breadcrumbs-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-container {
    padding: 0 10px;
  }
}

/* ==========================================================================
   Single Post Page
   ========================================================================== */

/* Single Hero Section */
.single-hero {
  padding-top: 20px;
  margin-bottom: 120px;
}

.single-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-hero-image {
  width: 100%;
  max-width: none;
  height: 612px;
  margin-bottom: -120px;
  border-radius: 10px;
  overflow: hidden;
}

.single-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-card {
  width: 100%;
  max-width: 1060px;
  background: #ffffff;
  border-radius: 10px;
  padding: 55px;
  position: relative;
  z-index: 2;
  margin-bottom: -120px;
}

.single-hero-card-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.single-hero-badge {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #123B71;
  color: #fffefe;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 16px;
  border-radius: 8px;
}

.single-hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  text-align: center;
  max-width: 807.5px;
  margin: 31px 0 0 0;
}

.single-hero-meta {
  display: flex;
  align-items: center;
  gap: 2.8px;
  padding-top: 4px;
}

.single-hero-author {
  display: flex;
  align-items: center;
  gap: 0;
}

.single-hero-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-hero-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-author-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24.5px;
  color: #1f242e;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-left: 11.62px;
}

.single-hero-separator {
  width: 3.09px;
  height: 14.045px;
  background: #1f242e;
  margin: 0 10.36px 0 7px;
  transform: scaleY(-1);
}

.single-hero-date {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24.5px;
  color: #a5a6aa;
  text-align: center;
}

.single-hero-reading-time {
  display: flex;
  align-items: center;
  gap: 4.19px;
}

.single-hero-reading-time svg {
  width: 16px;
  height: 16px;
  color: #a5a6aa;
  flex-shrink: 0;
}

.single-hero-reading-time span {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24.5px;
  color: #a5a6aa;
}

/* Single Article Content */
.single-article {
  padding: 2px 0 55px 0;
}

.single-article-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.single-article-content {
  max-width: 834px;
  margin: 0 auto;
}

.single-article-content p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28.9px;
  color: #797c7f;
  margin-bottom: 10px;
}

.single-article-content h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: #1f242e;
  margin: 36px 0 16px;
}

.single-article-content h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #1f242e;
  margin: 32px 0 14px;
}

.single-article-content h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #1f242e;
  margin: 24px 0 12px;
}

.single-article-content h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #1f242e;
  margin: 20px 0 10px;
}

.single-article-content h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #1f242e;
  margin: 16px 0 8px;
}

.single-article-content h2:first-child,
.single-article-content h3:first-child,
.single-article-content h4:first-child,
.single-article-content h5:first-child,
.single-article-content h6:first-child {
  margin-top: 0;
}

.single-article-content a {
  color: #12426A;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.single-article-content a:hover {
  color: #1A5A8F;
}

.single-article-content strong,
.single-article-content b {
  font-weight: 600;
  color: #1f242e;
}

.single-article-content em,
.single-article-content i {
  font-style: italic;
}

.single-article-content u {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.single-article-content s,
.single-article-content del,
.single-article-content strike {
  text-decoration: line-through;
}

.single-article-content sub {
  vertical-align: sub;
  font-size: 0.8em;
}

.single-article-content sup {
  vertical-align: super;
  font-size: 0.8em;
}

.single-article-content ul,
.single-article-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 28.9px;
  color: #797c7f;
}

.single-article-content ul {
  list-style-type: disc;
}

.single-article-content ol {
  list-style-type: decimal;
}

.single-article-content li {
  margin-bottom: 8px;
}

.single-article-content li:last-child {
  margin-bottom: 0;
}

.single-article-content ul ul,
.single-article-content ol ol,
.single-article-content ul ol,
.single-article-content ol ul {
  margin: 8px 0 0;
}

.single-article-content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid #12426A;
  background: #f8f9fa;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.single-article-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
}

.single-article-content th,
.single-article-content td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}

.single-article-content th {
  background: #f5f5f5;
  font-weight: 600;
  color: #1f242e;
}

.single-article-content tr:nth-child(even) td {
  background: #fafafa;
}

.single-article-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 24px 0;
}

.single-article-content figcaption {
  font-size: 14px;
  color: #797c7f;
  margin-top: 8px;
  text-align: center;
}

.single-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 34px 0;
}

.single-article-content figure {
  margin: 34px 0;
}

.single-article-content figure img {
  margin: 0;
  max-width: 100%;
  height: auto;
}

/* WordPress alignment classes */
.single-article-content .aligncenter,
.single-article-content figure.aligncenter,
.single-article-content .wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.single-article-content .alignleft,
.single-article-content figure.alignleft,
.single-article-content .wp-block-image.alignleft {
  float: left;
  margin: 10px 30px 20px 0;
  max-width: 50%;
}

.single-article-content .alignright,
.single-article-content figure.alignright,
.single-article-content .wp-block-image.alignright {
  float: right;
  margin: 10px 0 20px 30px;
  max-width: 50%;
}

.single-article-content .alignnone,
.single-article-content figure.alignnone,
.single-article-content .wp-block-image.alignnone {
  display: block;
  margin: 34px 0;
}

/* Clear floats before headings so they don't wrap next to aligned images */
.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
  clear: both;
}

/* Gallery: 2 columns */
.single-article-content .wp-block-gallery,
.single-article-content .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin: 34px 0;
}

.single-article-content .gallery .gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  height: 280px;
}

.single-article-content .gallery .gallery-item .gallery-icon {
  height: 100%;
}

.single-article-content .wp-block-gallery img,
.single-article-content .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin: 0;
}

.single-article-content .wp-block-gallery .wp-block-image,
.single-article-content .gallery .gallery-item figure {
  margin: 0;
  height: 100%;
}

.single-article-content .wp-block-gallery figure,
.single-article-content .gallery figure {
  margin: 0;
}

/* Single Latest News Section */
.single-latest-news {
  padding: 102px 60px 120px;
}

.single-latest-news-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.single-latest-news-header {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  margin-bottom: 53px;
}

.single-latest-news-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #202225;
  text-align: center;
  margin: 0;
}

.single-latest-news-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #868080;
  text-align: center;
  max-width: 968px;
  margin: 0;
}

.single-latest-news-swiper {
  overflow: visible;
}

.single-latest-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 27px;
  margin-bottom: 40px;
}

.single-latest-news-grid .swiper-slide {
  width: auto;
  height: auto;
}

.single-latest-news-pagination {
  display: none;
}

.single-latest-news-grid .blog-card-image {
  width: 301px;
  max-width: 100%;
  height: 225px;
  aspect-ratio: auto;
}


.single-latest-news-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-latest-news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 50px;
  background: #12426a;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-latest-news-button:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

/* Related Projects (single project page) */
.related-projects {
  padding: 80px 0;
}

.related-projects-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.related-projects-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 38px;
  color: #1f242e;
  margin: 0 0 40px 0;
}

.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-project-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-decoration: none;
}

.related-project-image {
  width: 100%;
  height: 302px;
  border-radius: 10px;
  overflow: hidden;
}

.related-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-project-card:hover .related-project-image img {
  transform: scale(1.05);
}

.related-project-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.related-project-category {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1f242e;
}

.related-project-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28.8px;
  color: #1f242e;
  margin: 0;
}

/* Responsive */

@media (max-width: 1200px) {
  .single-latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .related-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-hero {
    padding-top: 10px;
  }

.single-kelo_author .single-hero {
	margin-bottom: 0;
  }

  .single-hero-container {
    padding: 0 20px;
  }

  .single-hero-image {
    height: auto;
    width: 100%;
    margin-bottom: 0;
  }

  .single-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .single-hero-card {
    width: 100%;
    padding: 30px 20px;
    margin-top: -15px;
    margin-bottom: 0;
  }

  .single-hero-title {
    font-size: 32px;
    line-height: 38px;
  }

  .single-hero-meta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .single-article-wrapper {
    padding: 0 20px;
  }

  .single-article-content .wp-block-gallery,
  .single-article-content .gallery {
    grid-template-columns: 1fr;
  }

  .single-article-content .gallery .gallery-item {
    height: auto;
  }

  .single-article-content .gallery img {
    height: auto;
    object-fit: contain;
  }

  .related-projects-wrapper {
    padding: 0 20px;
  }

  .related-projects-grid {
    grid-template-columns: 1fr;
  }

  .single-latest-news {
    padding: 60px 20px;
  }

  .single-latest-news-wrapper {
    padding: 0;
  }

  .single-latest-news-swiper {
    overflow: hidden;
  }

  .single-latest-news-grid {
    display: flex;
    grid-template-columns: unset;
    column-gap: 0;
    margin-bottom: 35px;
  }

  .single-latest-news-grid .swiper-slide {
    width: 100% !important;
    height: auto !important;
  }

  .single-latest-news-grid .blog-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 410 / 306;
  }

  .single-latest-news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }

  .single-latest-news-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d9d9d9;
    border-radius: 50%;
    opacity: 1;
  }

  .single-latest-news-pagination .swiper-pagination-bullet-active {
    background: #12426a;
  }

  .single-latest-news-title {
    font-size: 40px;
    line-height: 44px;
  }
}

/* ===========================
   Contact Page Styles
   =========================== */

/* Contact Section */
.contact-section {
  padding: 60px 0 80px;
}

.contact-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Left Column - Contact Info */
.contact-left {
  max-width: 444px;
}

.contact-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 57px;
  line-height: 57px;
  color: #1f242e;
  margin: 0 0 24px 0;
}

.contact-description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28.9px;
  color: #797c7f;
  margin: 0 0 60px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 13.6px;
}

.contact-icon {
  width: 27.19px;
  height: 27.19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: auto;
  height: 22px;
  color: #FDBC11;
  fill: #FDBC11;
}

.contact-info-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #797c7f;
}

.contact-phone-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #797c7f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-phone-link:hover {
  color: #e76849;
}

/* Right Column - Contact Form */
.contact-right {
  max-width: 630px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: flex;
  gap: 30px;
}

.contact-form-field {
  flex: 1;
  position: relative;
}

.contact-form-field-full {
  flex: 1 1 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 0 15px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1f242e;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e4dfdf;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form textarea::placeholder {
  color: #a5a6aa;
  letter-spacing: 0.5px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-bottom-color: #12426a;
}

.contact-form textarea {
  resize: vertical;
  min-height: 99px;
  padding-bottom: 37px;
}

.contact-form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 15px;
}

.contact-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 35px;
  background: #12426a;
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  color: #fffefe;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-submit:hover {
  background: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.contact-form-submit svg {
  width: 16px;
  height: 16px;
}

.contact-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #e4dfdf;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form-checkbox label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #797c7f;
  margin: 0;
  cursor: pointer;
}

.contact-form-checkbox label a {
  color: #797c7f;
  text-decoration: none;
  border-bottom: 1px solid #797c7f;
}

.contact-form-checkbox label a:hover {
  color: #12426a;
  border-bottom-color: #12426a;
}

/* Contact Form CF7 Integration */
.contact-right .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-right .wpcf7-form br {
  display: none;
}

.contact-right .wpcf7-form p {
  margin: 0 !important;
}

.contact-right .wpcf7-form p:empty {
  display: none;
}

.contact-right .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-right .wpcf7-form input[type="text"],
.contact-right .wpcf7-form input[type="email"],
.contact-right .wpcf7-form input[type="tel"],
.contact-right .wpcf7-form textarea {
  width: 100%;
  padding: 14px 0 15px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1f242e;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e4dfdf;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-right .wpcf7-form input[type="text"]::placeholder,
.contact-right .wpcf7-form input[type="email"]::placeholder,
.contact-right .wpcf7-form input[type="tel"]::placeholder,
.contact-right .wpcf7-form textarea::placeholder {
  color: #a5a6aa;
  letter-spacing: 0.5px;
}

.contact-right .wpcf7-form input[type="text"]:focus,
.contact-right .wpcf7-form input[type="email"]:focus,
.contact-right .wpcf7-form input[type="tel"]:focus,
.contact-right .wpcf7-form textarea:focus {
  border-bottom-color: #12426a;
}

.contact-right .wpcf7-form textarea {
  resize: vertical;
  height: 99px;
  min-height: 50px;
  padding-bottom: 15px;
}

.contact-right .wpcf7-form .contact-form-footer,
.contact-right .wpcf7-form .contact-form-footer>p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 15px;
}

.contact-right .wpcf7-form .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 189px;
  padding: 17px 0;
  background: #12426a;
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  color: #fffefe;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M15.9697 0.996401L0.0270001 8.96742C-0.0520491 9.01259 0.0778175 8.89402 0.0270001 8.96742C-0.0238172 9.04082 0.0326465 8.87708 0.0270001 8.96742C-0.0181709 8.88837 0.0213537 9.05776 0.0270001 8.96742C-0.0520491 8.92225 0.0721711 9.04646 0.0270001 8.96742L3.01626 11.9565V16.9384C3.01626 17.0514 3.95056 16.8537 4.01267 16.9384C3.91104 16.9046 4.07478 17.0231 4.01267 16.9384C3.90539 16.9723 4.11431 16.9723 4.01267 16.9384C3.95621 17.0288 4.11996 16.9046 4.01267 16.9384L7.00193 13.9493L12.9804 16.9384C12.8167 17.0118 13.1272 17.0288 12.9804 16.9384C12.9579 17.1078 13.1442 16.865 12.9804 16.9384L15.9697 0.996401C16.0092 1.08674 15.9923 0.906063 15.9697 0.996401C16.0431 1.05286 15.9302 0.906063 15.9697 0.996401C15.8963 0.939939 16.0657 0.00567055 15.9697 2.47955e-05C15.8737 -0.00562096 16.0487 0.951233 15.9697 0.996401ZM4.01267 10.9602L1.02342 8.96742L12.9804 2.98916L4.01267 10.9602ZM4.01267 15.9421V11.9565L12.9804 4.98191L4.01267 15.9421ZM12.9804 15.9421L7.99835 12.9529L14.9733 2.98916L12.9804 15.9421Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% - 60px) center;
  background-size: 16px 17px;
  padding-left: 28px;
  box-sizing: border-box;
}

.contact-right .wpcf7-form .wpcf7-submit:hover {
  background-color: #1a5a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.contact-right .wpcf7-form .contact-form-checkbox,
.contact-right .wpcf7-form .contact-form-checkbox>p {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-form-control-wrap {
  width: auto;
  display: inline-flex;
  align-items: center;
}

.contact-right .wpcf7-form .contact-form-checkbox label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #797c7f;
  margin: 0;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-list-item {
  margin: 0;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-list-item-label {
  display: none;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #e4dfdf;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative !important;
  opacity: 1 !important;
  margin: 0;
  flex-shrink: 0;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-acceptance input[type="checkbox"]:checked {
  background: #12426a;
  border-color: #12426a;
}

.contact-right .wpcf7-form .contact-form-checkbox .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-right .wpcf7-form .wpcf7-response-output {
  margin: 8px 0 0 !important;
  padding: 8px 12px;
  font-size: 13px;
}

.contact-right .wpcf7-form .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 12px;
}

/* Google Map Section */
.google-map-section {
  width: 100%;
}

.google-map-wrapper {
  width: 100%;
}

.google-map-container {
  width: 100%;
  height: 590px;
  background: #e5e3df;
  overflow: hidden;
}

.google-map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-wrapper {
    padding: 0 50px;
  }

  .contact-container {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 10px 0 40px;
  }

  .contact-wrapper {
    padding: 0 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-title {
    font-size: 40px;
    line-height: 44px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 37px;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .google-map-container {
    height: 400px;
  }
}